@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
html {
  scroll-behavior: smooth;
}
html body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #f5f5f5;
  height: 100%;
  background: #0f0f0f;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-weight: bold;
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  line-height: clamp(1.1rem, 1.064rem + 0.18vw, 1.2rem);
  overflow-y: scroll;
  overflow-x: hidden;
}

h2 {
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
  font-weight: bold;
  padding: 0 0 1rem 0;
}

section {
  background: #0f0f0f;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 2.5%;
  bottom: 2.5%;
  color: #fff;
  padding: 2rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  z-index: 9999999999999;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #333;
  border-radius: 50%;
  z-index: -1;
}

a {
  text-decoration: none !important;
}

#header {
  width: 100%;
  height: 80px;
  position: relative;
  background: #0f0f0f;
  z-index: 9999999;
  transition: 1s;
}
#header .header__wrap {
  width: 100%;
  position: relative;
}
#header .header__wrap h1 {
  width: 240px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 10px;
}
#header .header__wrap h1 a {
  font-size: clamp(0.6rem, 0.309rem + 1.45vw, 1.4rem);
}
#header .header__wrap__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  width: 110px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 999999;
}
#header .header__wrap__link--logo {
  width: 110px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 480px) {
  #header {
    height: 70px;
    transition: 1s;
  }
  #header .header__wrap h1 {
    width: 240px;
    height: 80px;
    margin: 0 0 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #header .header__wrap__link {
    width: 90px;
  }
  #header .header__wrap__link--logo {
    width: 90px;
    transition: 1s;
  }
}
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
  height: 100vh;
}

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

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

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999999;
  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: 999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
  display: flex;
  flex-flow: column;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
}

#g-nav li a {
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  display: flex;
  position: relative;
  transition: 0.5s;
}
#g-nav li a:hover {
  transition: 0.5s;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 80px;
  height: 80px;
}

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

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 27px;
}

.openbtn1 span:nth-of-type(3) {
  top: 40px;
}

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

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

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

@media screen and (max-width: 480px) {
  .openbtn1 {
    right: 0px;
  }
}
.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 999999999;
  transition: 1s;
}

#heading {
  width: 100%;
  background-image: url("../../img/common/hedding/headding_shop.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0 0 4rem 0;
}
#heading .heading__warp {
  width: 1024px;
  margin: 0 auto;
  padding: 10rem 0;
  transition: 1s;
}
#heading .heading__warp h1 {
  width: 100%;
  font-size: clamp(2.2rem, 1.836rem + 1.82vw, 3.2rem);
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4), 2px 3px 3px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 1024px) {
  #heading {
    margin: 0 0 3rem 0;
  }
  #heading .heading__warp {
    width: 100%;
    padding: 8rem 4rem;
    transition: 1s;
  }
}
@media screen and (max-width: 768px) {
  #heading {
    margin: 0 0 2rem 0;
  }
  #heading .heading__warp {
    width: 100%;
    padding: 6rem 2rem;
    transition: 1s;
  }
}
@media screen and (max-width: 480px) {
  #heading {
    margin: 0 0 1rem 0;
  }
  #heading .heading__warp {
    width: 100%;
    padding: 4rem 1rem;
    transition: 1s;
  }
}
#info .info__container {
  background-repeat: no-repeat;
  background-size: 60%;
  margin: 0 0 5rem 0;
  transition: 1s;
}
#info .info__container__wrapper {
  width: 1024px;
  min-height: 80vh;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#info .info__container__wrapper h2 {
  position: relative;
  border-bottom: none;
}
#info .info__container__wrapper h2::after {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0px;
  background-image: url("../../img/order/item/underline_10.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  transform: rotate(-1.5deg);
}
#info .info__container__wrapper--rightbox {
  width: 60%;
  background-color: #0f0f0f;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  transition: 1s;
}
#info .info__container__wrapper--rightbox::before {
  content: "";
  width: 200px;
  height: 200px;
  display: block;
  background-image: url("../../img/order/item/bg_logo.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 50%;
}
#info .info__container__wrapper--rightbox table {
  width: 100%;
  margin: 1rem 0;
}
#info .info__container__wrapper--rightbox table tbody tr th {
  width: 100px;
  padding: 0.5rem;
}
#info .info__container__wrapper--rightbox table tbody tr td {
  width: calc(100% - 100px);
  padding: 0.5rem;
}
#info .info__container__wrapper--rightbox table tbody tr td span {
  font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
}
#info .info__container__wrapper--rightbox--map {
  width: 100%;
}
#info .info__container__wrapper--rightbox--map iframe {
  width: 100%;
  aspect-ratio: 1/0.5;
}
#info .info__container__wrapper--leftbox {
  width: 60%;
  background-color: #0f0f0f;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  transition: 1s;
}
#info .info__container__wrapper--leftbox::before {
  content: "";
  width: 200px;
  height: 200px;
  display: block;
  background-image: url("../../img/pre_order/item/bg_logo.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 50%;
}
#info .info__container__wrapper--leftbox table {
  width: 100%;
  margin: 1rem 0;
}
#info .info__container__wrapper--leftbox table tbody tr th {
  width: 100px;
  padding: 0.5rem;
}
#info .info__container__wrapper--leftbox table tbody tr td {
  width: calc(100% - 100px);
  padding: 0.5rem;
}
#info .info__container__wrapper--leftbox--map {
  width: 100%;
}
#info .info__container__wrapper--leftbox--map iframe {
  width: 100%;
  aspect-ratio: 1/0.5;
}
#info .info__container__wrapper--leftbox--info {
  position: relative;
  display: flex;
  justify-content: right;
}
#info .info__container__wrapper--leftbox--info--fukidashi {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
  position: absolute;
  right: -2rem;
  top: -130%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
#info .info__container__wrapper--leftbox--info--fukidashi p {
  width: 100%;
  text-align: center;
  color: #0f0f0f;
  font-weight: bold;
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
}
#info .info__container__wrapper--leftbox--info--fukidashi span {
  width: 100%;
  text-align: center;
  color: #0f0f0f;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 2.2rem;
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
}
#info .info__container__wrapper--leftbox--info--fukidashi::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#info .info__container .left {
  flex-direction: row-reverse;
}
#info .kumamoto {
  background-image: url("../../img/shop_info/shop_kumamoto.jpg");
  background-position: right;
}
#info .kikuchi {
  background-image: url("../../img/shop_info/shop_kikuchi.jpg");
  background-position: left;
}
#info .kitchen {
  background-image: url("../../img/shop_info/kitchen_car.jpg");
  background-position: left;
}
#info .kitchen .left {
  min-height: 40vh;
}

.instagram {
  background: linear-gradient(45deg, rgb(254, 212, 117) 0%, rgb(229, 61, 93) 50%, rgb(194, 49, 134) 70%, rgb(156, 56, 187) 100%);
  border-radius: 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  font-weight: 800;
  padding: 1.6rem 4rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s linear;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
  border: solid 5px #ffffff;
}
.instagram:hover {
  box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
@media screen and (max-width: 1280px) {
  #info .info__container {
    background-size: auto 100%;
    transition: 1s;
  }
  .kitchen {
    background-size: 60% auto !important;
  }
}
@media screen and (max-width: 1024px) {
  #info .info__container {
    background-repeat: no-repeat;
    background-size: auto 100%;
    margin: 0 0 5rem 0;
    transition: 1s;
  }
  #info .info__container__wrapper {
    width: 100%;
    min-height: 80vh;
  }
  #info .info__container__wrapper--rightbox {
    width: 70%;
    transition: 1s;
  }
  #info .info__container__wrapper--leftbox {
    width: 70%;
    transition: 1s;
  }
  .kitchen {
    background-size: 60% auto !important;
  }
}
@media screen and (max-width: 768px) {
  #info .info__container {
    background-repeat: no-repeat;
    background-size: auto 100%;
    margin: 0 0 5rem 0;
    transition: 1s;
  }
  #info .info__container__wrapper--rightbox {
    width: 90%;
    margin: 0 5% 0;
    transition: 1s;
    background-color: rgba(15, 15, 15, 0.6);
  }
  #info .info__container__wrapper--leftbox {
    width: 90%;
    margin: 0 5% 0;
    transition: 1s;
    background-color: rgba(15, 15, 15, 0.6);
  }
  #info .info__container__wrapper--leftbox--info {
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    position: absolute;
    right: -2rem;
    top: -92%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi p {
    width: 100%;
    text-align: center;
    color: #0f0f0f;
    font-weight: bold;
    font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  }
  #info .info__container__wrapper--leftbox--info--fukidashi span {
    width: 100%;
    text-align: center;
    color: #0f0f0f;
    font-weight: bold;
    line-height: 1.2rem;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .kitchen {
    background-size: 100% auto !important;
  }
  .kitchen .left {
    min-height: 40vh;
  }
}
@media screen and (max-width: 480px) {
  #info .info__container__wrapper--rightbox {
    width: 90%;
    margin: 2rem 5%;
    padding: 2rem;
    transition: 1s;
  }
  #info .info__container__wrapper--rightbox::before {
    width: 120px;
    height: 120px;
    bottom: 0%;
  }
  #info .info__container__wrapper--rightbox table {
    width: 100%;
    margin: 1rem 0;
    display: block;
  }
  #info .info__container__wrapper--rightbox table tbody {
    display: flex;
    flex-flow: column;
  }
  #info .info__container__wrapper--rightbox table tbody tr {
    display: flex;
    flex-flow: column;
  }
  #info .info__container__wrapper--rightbox table tbody tr th {
    width: 100%;
    padding: 0.5rem;
  }
  #info .info__container__wrapper--rightbox table tbody tr td {
    width: 100%;
    padding: 0.5rem;
  }
  #info .info__container__wrapper--rightbox table tbody tr td span {
    width: 100%;
    font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
  }
  #info .info__container__wrapper--leftbox {
    width: 90%;
    margin: 2rem 5%;
    padding: 2rem;
    transition: 1s;
  }
  #info .info__container__wrapper--leftbox table {
    width: 100%;
    margin: 1rem 0;
    display: block;
  }
  #info .info__container__wrapper--leftbox table tbody {
    display: flex;
    flex-flow: column;
  }
  #info .info__container__wrapper--leftbox table tbody tr {
    display: flex;
    flex-flow: column;
  }
  #info .info__container__wrapper--leftbox table tbody tr th {
    width: 100%;
    padding: 0.5rem;
  }
  #info .info__container__wrapper--leftbox table tbody tr td {
    width: 100%;
    padding: 0.5rem;
  }
  #info .info__container__wrapper--leftbox table tbody tr td span {
    width: 100%;
    font-size: clamp(0.6rem, 0.527rem + 0.36vw, 0.8rem);
  }
  #info .info__container__wrapper--leftbox--info--fukidashi {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
    position: absolute;
    right: -2rem;
    top: -140%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi p {
    width: 100%;
    text-align: center;
    color: #0f0f0f;
    font-weight: bold;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi span {
    width: 100%;
    text-align: center;
    color: #0f0f0f;
    font-weight: bold;
    line-height: 1.2rem;
  }
  #info .info__container__wrapper--leftbox--info--fukidashi::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #info .info__container .left {
    flex-direction: row-reverse;
  }
  .instagram {
    background: linear-gradient(45deg, rgb(254, 212, 117) 0%, rgb(229, 61, 93) 50%, rgb(194, 49, 134) 70%, rgb(156, 56, 187) 100%);
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
    display: block;
    font-weight: 800;
    padding: 1.6rem 2rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s linear;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
    border: solid 3px #ffffff;
  }
  .instagram:hover {
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
  }
}
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.js-fadeRightIn {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(30px);
  /* 右に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeRightIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.js-fadeLeftIn {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-30px);
  /* 右に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeLeftIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

#footer {
  width: 100%;
}
#footer .footer__wrap {
  width: 100%;
  position: relative;
}
#footer .footer__wrap--snsbox {
  width: 13vw;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #0f0f0f;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
#footer .footer__wrap--snsbox img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .footer__wrap--slider {
  width: 100%;
  overflow: hidden;
}
#footer .footer__wrap--slider .swiper-wrapper {
  transition-timing-function: linear;
}
#footer .footer__wrap--slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .footer__wrapper {
  width: 1024px;
  margin: 0 auto;
  padding: 4rem 0;
}
#footer .footer__wrapper--shop {
  display: flex;
  justify-content: space-around;
}
#footer .footer__wrapper--shop--info h3 {
  position: relative;
  padding: 0 0 0.5rem 0;
  margin: 0 0 1rem 0;
}
#footer .footer__wrapper--shop--info h3::after {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0px;
  background-image: url("../../img/order/item/underline_10.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  transform: rotate(-1.5deg);
}
#footer .footer__wrapper--shop--info address a {
  text-decoration: none;
}
#footer .footer__copy {
  width: 100%;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  padding: 1rem 0;
}
#footer nav {
  width: 1024px;
  margin: 0 auto;
  padding: 2rem 0;
}
#footer nav ul {
  width: 80%;
  margin: 0 10%;
  display: flex;
  justify-content: space-around;
}
#footer nav ul li a {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0 0 0 30px;
}
#footer nav ul li a p {
  display: none;
}
#footer nav ul li a span {
  text-transform: uppercase;
}

@media screen and (max-width: 1600px) {
  #footer .footer__wrap--snsbox {
    width: 15vw;
  }
  #footer nav {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  #footer .footer__wrap--snsbox {
    width: 17vw;
  }
}
@media screen and (max-width: 1024px) {
  #footer .footer__wrap--snsbox {
    width: 20vw;
  }
  #footer .footer__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer__wrap--snsbox {
    width: 25vw;
  }
  #footer .footer__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 5rem 0rem;
  }
  #footer .footer__wrapper--shop {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
  }
  #footer .footer__wrapper--shop--info {
    margin: 0 0 2rem;
  }
  #footer .footer__wrapper--shop--info h3::after {
    width: 80%;
  }
  #footer nav ul {
    width: 80%;
    margin: 0 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer nav ul li {
    padding: 0 1rem;
    margin: 0 0 1rem 0;
  }
  #footer nav ul li a p {
    display: none;
  }
  #footer nav ul li a span {
    text-transform: uppercase;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer__wrap--snsbox {
    width: 35vw;
  }
  #footer .footer__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem 0rem;
  }
  #footer .footer__wrapper--shop {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
  }
  #footer .footer__wrapper--shop--info {
    margin: 0 0 2rem;
  }
  #footer .footer__wrapper--shop--info h3::after {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */