@charset "utf-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2.34vw, 18px);
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.03em;
  -webkit-text-size-adjust: 100%;
  /*font-feature-settings: "palt";*/
  overflow-x: clip;
}
body.fixed {
  overflow: hidden;
}
/* ページ遷移 */
body.fl::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: transparent; */
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
body.fl.fade::after {
  opacity: 1;
}
/* ======================
font
========================= */
.fgo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  /* R400 M500 B700 */
  font-style: normal;
}
.chango {
  font-family: "Chango", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ttsans {
  font-family: "TikTok Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  /* R400 M500 B700 */
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100;
}

.fw_4 {
  font-weight: 400;
}
.fw_5 {
  font-weight: 500;
}
.fw_7 {
  font-weight: 700;
}

/* ======================
common
========================= */
main {
  overflow-x: clip;
}
article {
  min-height: 65vh;
}
a {
  color: #000;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
a.no_link {
  pointer-events: none;
  opacity: 0.5;
}
a.sptel {
  pointer-events: none;
}
a.hv_opacity {
  transition: 0.2s;
}
a.hv_opacity:hover {
  opacity: 0.7;
}
.cl_wh {
  color: #fff;
}
.cl_or {
  color: #eb6120;
}
.cl_pk {
  color: #f0336f;
}
.cl_bl {
  color: #00bdcc;
}
.cl_gn {
  color: #009f42;
}
.txt_c {
  text-align: center;
}
.txt_c span {
  display: inline-block;
}
.inner-1260,
.inner-1200 {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
  padding: 0 min(6.98vw, 33px);
}
img {
  width: 100%;
  height: auto;
  display: block;
}
.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
.nolink {
  pointer-events: none;
  cursor: default;
}
.sp {
  display: none;
}
img[src*="_sp"] {
  display: none;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ilbk {
  display: inline-block;
}
.p_rltv {
  position: relative;
}
.p_sticky {
  position: sticky;
}

.sttl .chango {
  font-size: clamp(35px, 6.51vw, 50px);
  line-height: 1;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.2em;
}
.sttl.ttl .chango {
  font-size: clamp(40px, 6.51vw, 50px);
}
.sttl .ja {
  font-size: clamp(17px, 2.6vw, 20px);
  letter-spacing: 0.1em;
  display: block;
}

.bdr_dash {
  position: relative;
}
.bdr_dash::after {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #fff, #fff 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.bg_or {
  background-color: #eb6120;
}
/* --------------
morebtn
----------------- */
.btnbk {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 550px;
}
.morebtn {
  font-size: clamp(15px, 4.65vw, 20px);
  display: flex;
  align-items: center;
  gap: 9px;
  height: 80px;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 10px;
  padding: 0 min(4.65vw, 20px);
  transition: 0.2s;
}
.morebtn > span {
  display: block;
  width: 100%;
  padding-right: 33px;
  position: relative;
}
.morebtn::before {
  content: "";
  width: 51px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s;
}
.morebtn > span::after {
  content: "";
  width: 14px;
  height: 12px;
  background-image: url(../imgs/common/arrow_or.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.morebtn > span span {
  display: inline-block;
}

#calendar .morebtn.btn1::before {
  background-image: url(../imgs/index/calendar_btn1.png);
}
#gourmet .morebtn.btn1::before {
  background-image: url(../imgs/index/gourmet_btn1.png);
}
#gourmet .morebtn.btn2::before {
  background-image: url(../imgs/index/gourmet_btn2.png);
}
#active .morebtn.btn1::before {
  background-image: url(../imgs/index/active_btn1.png);
}
#shopping .morebtn.btn1::before {
  background-image: url(../imgs/index/shopping_btn1.png);
}
#shopping .morebtn.btn2::before {
  background-image: url(../imgs/index/shopping_btn2.png);
}
#access .morebtn.btn1::before {
  background-image: url(../imgs/index/access_btn1.png);
}
#gourmet .morebtn > span::after {
  background-image: url(../imgs/common/arrow_pk.svg);
}
#active .morebtn > span::after {
  background-image: url(../imgs/common/arrow_bl.svg);
}
#shopping .morebtn > span::after {
  background-image: url(../imgs/common/arrow_gn.svg);
}

/* hover */
.morebtn:hover {
  color: #fff;
  background-color: #eb6120;
}
.morebtn:hover > span::after {
  background-image: url(../imgs/common/arrow_wh.svg) !important;
  right: 8px;
}
#gourmet .morebtn:hover {
  background-color: #f0336f;
}
#active .morebtn:hover {
  background-color: #00bdcc;
}
#shopping .morebtn:hover {
  background-color: #009f42;
}
#calendar .morebtn.btn1:hover::before {
  background-image: url(../imgs/index/calendar_btn1_hv.png);
}
#gourmet .morebtn.btn1:hover::before {
  background-image: url(../imgs/index/gourmet_btn1_hv.png);
}
#gourmet .morebtn.btn2:hover::before {
  background-image: url(../imgs/index/gourmet_btn2_hv.png);
}
#active .morebtn.btn1:hover::before {
  background-image: url(../imgs/index/active_btn1_hv.png);
}
#shopping .morebtn.btn1:hover::before {
  background-image: url(../imgs/index/shopping_btn1_hv.png);
}
#shopping .morebtn.btn2:hover::before {
  background-image: url(../imgs/index/shopping_btn2_hv.png);
}
#access .morebtn.btn1:hover::before {
  background-image: url(../imgs/index/access_btn1_hv.png);
}

/* ======================
header
========================= */
header {
  background: #fff;
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(10px, 1.3vw, 25px) 20px;
  box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.15);
  z-index: 3;
}
header .h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  min-width: 1400px;
  margin: 0 auto;
}
header .h_logo {
  width: 22.94vw;
  max-width: 367px;
  min-width: 286px;
}
/* header-PC  */
.header-PC {
  display: flex;
  align-items: center;
  gap: min(3.47vw, 50px);
}
.header-PC .h_aside {
  display: flex;
  align-items: center;
  gap: min(3.47vw, 50px);
}

.header-PC .gnav .gnav_list {
  display: flex;
  align-items: center;
  gap: min(3.82vw, 55px);
}
.header-PC .gnav .gnav_list .gnav_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  height: 70px;
}
.header-PC .gnav .gnav_list .gnav_item a span {
  font-size: clamp(12px, 1.04vw, 15px);
  line-height: 1.47;
  letter-spacing: 0.05em;
  margin-left: 0.2em;
}
.header-PC .gnav .gnav_list .gnav_item a::before {
  content: "";
  width: 2.57vw;
  max-width: 37px;
  min-width: 26px;
  height: 2.5vw;
  max-height: 36px;
  min-height: 24.5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s;
}
/* item-top */
.header-PC .gnav .gnav_list .gnav_item.item-top a::before {
  background-image: url(../imgs/common//ic_top.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-top a:hover::before {
  background-image: url(../imgs/common//ic_top_hv.png);
}
/* item-gourmet */
.header-PC .gnav .gnav_list .gnav_item.item-gourmet a::before {
  background-image: url(../imgs/common//ic_gourmet.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-gourmet a:hover::before {
  background-image: url(../imgs/common//ic_gourmet_hv.png);
}
/* item-active */
.header-PC .gnav .gnav_list .gnav_item.item-active a::before {
  width: 4.24vw;
  max-width: 61px;
  min-width: 41.6px;
  background-image: url(../imgs/common/ic_active.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-active a:hover::before {
  background-image: url(../imgs/common/ic_active_hv.png);
}
/* item-shopping */
.header-PC .gnav .gnav_list .gnav_item.item-shopping a::before {
  background-image: url(../imgs/common//ic_shopping.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-shopping a:hover::before {
  background-image: url(../imgs/common//ic_shopping_hv.png);
}
/* item-information */
.header-PC .gnav .gnav_list .gnav_item.item-information a::before {
  background-image: url(../imgs/common//ic_information.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-information a:hover::before {
  background-image: url(../imgs/common//ic_information_hv.png);
}
/* item-access */
.header-PC .gnav .gnav_list .gnav_item.item-access a::before {
  background-image: url(../imgs/common//ic_access.png);
}
.header-PC .gnav .gnav_list .gnav_item.item-access a:hover::before {
  background-image: url(../imgs/common//ic_access_hv.png);
}

.header-PC .h_aside .h_aside-sns {
  display: flex;
  align-items: center;
  gap: min(2.08vw, 30px);
}
.header-PC .h_aside-sns li {
  width: 2.43vw;
  max-width: 35px;
  min-width: 24px;
}
.header-PC .h_aside-sns li:last-child {
  width: 2.78vw;
  max-width: 40px;
  min-width: 28px;
}
.header-PC .h_aside .olshop {
  width: 10.42vw;
  max-width: 150px;
  min-width: 102px;
}
/* ======================
ハンバーガーメニュー
========================= */
.openbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 90px;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.2s;
}
/*ボタン内側*/
.openbtn .openbtn_area {
  position: relative;
  width: 23px;
  height: 19px;
}

.openbtn span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}

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

.openbtn span:nth-of-type(2) {
  top: 10px;
}

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

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
.openbtn.active {
  background: transparent;
}
.openbtn.active .openbtn-area {
  transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translateY(9px) rotate(-146deg);
  width: 100%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 0;
  left: 0;
  transform: translateY(9px) rotate(146deg);
  width: 100%;
}
.openbtn {
  display: none;
}
.header-SP {
  display: none;
}
/* ======================
footer
========================= */
footer {
  color: #fff;
  background: #eb6120;
  padding: 63px 0 40px;
  position: relative;
}
footer a {
  color: #fff;
}

footer .f_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1466px;
  margin: 0 auto 50px;
  padding: 0 min(6.98vw, 33px);
}
footer .flex_l {
  width: 500px;
  flex-shrink: 0;
}
footer .flex_l .f_logo {
  width: 100%;
  max-width: 487px;
  margin-bottom: 15px;
}
footer .flex_l .address {
  width: 280px;
}
footer .flex_l .address li {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 25px;
  position: relative;
}
footer .flex_l .address li.tel {
  font-size: min(8.75vw, 35px);
  line-height: 1;
  letter-spacing: 0.07em;
  height: 60px;
}
footer .flex_l .address li.fax {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.07em;
}
footer .flex_l .address li.mail {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
}

footer .flex_l .address li::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translate(-100%, -50%);
}
footer .flex_l .address li.tel::before {
  width: 21px;
  height: 29px;
  background-image: url(../imgs/common/f_ic_tel.png);
}
footer .flex_l .address li.fax::before {
  width: 18px;
  height: 20px;
  background-image: url(../imgs/common/f_ic_fax.png);
}
footer .flex_l .address li.mail::before {
  width: 18px;
  height: 20px;
  background-image: url(../imgs/common/f_ic_mail.png);
}

footer .flex_r {
  width: calc(100% - 500px);
  max-width: 800px;
}
footer .flex_r .f_nav {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  width: 100%;
  margin-bottom: 30px;
}
footer .flex_r .f_nav .f_navList {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  /* width: 25%; */
  min-width: 180px;
  padding: 0 1em 20px min(1.88vw, 30px);
  border-left: 1px solid #fff;
}

footer .flex_r .f_nav .f_navList-sp {
  display: none;
}
/* footer .flex_r .f_nav .f_navList-last {
  width: 16.83%;
  padding-right: 0;
} */
footer .flex_r .f_nav .f_navList li {
  font-size: min(3.72vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
footer .flex_r .f_nav .f_navList li.item_l {
  font-size: clamp(16px, 4.65vw, 20px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
footer .flex_r .f_nav .f_navList li a {
  position: relative;
}
/* 下線つき*/
footer .flex_r .f_nav .f_navList li.item_l a span {
  position: relative;
}
footer .flex_r .f_nav .f_navList li.item_l a span::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.2s;
}
footer .flex_r .f_nav .f_navList li.item_l a:hover span::after {
  width: 100%;
}

/* 矢印つき */
footer .flex_r .f_nav .f_navList li:not(.item_l) a::before {
  content: "";
  width: 14px;
  height: 1.5em;
  position: absolute;
  top: 2px;
  left: 0;
  opacity: 0;
  transition: 0.2s;
  background: url(../imgs/common/arrow_wh.svg) no-repeat center left;
}
footer .flex_r .f_nav .f_navList li:not(.item_l) a:hover::before {
  opacity: 1;
}
footer .flex_r .f_nav .f_navList li:not(.item_l) a span {
  display: inline-block;
  transition: transform 0.3s ease;
}
footer .flex_r .f_nav .f_navList li:not(.item_l) a:hover span {
  transform: translateX(18px);
}

footer .flex_r .f_aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-bottom: 15px;
}
footer .flex_r .f_aside .olshop {
  width: 36%;
  max-width: 210px;
}
footer .flex_r .f_aside .f_aside-sns {
  display: flex;
  justify-content: space-between;
  gap: 5.88%;
}
footer .flex_r .f_aside .f_aside-sns li {
  width: 21%;
  max-width: 70px;
}
footer .flex_r .f_otherlinks {
  font-size: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 1em;
}
footer .copy {
  font-size: 12px;
  text-align: center;
}
/* #totop {
  width: 11%;
  max-width: 68px;
  min-width: 30px;
  position: fixed;
  bottom: 40px;
  right: 2vw;
  z-index: 3;
  display: none;
}
#totop a:hover {
  animation: scaleOnce 0.4s ease-out;
} */

/* ===========
inview
============== */
.inv_mov {
  opacity: 0;
  transition:
    opacity 1s,
    transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}
.tl_xt {
  transform: rotateX(180deg);
}
/*.tl_yt {
  transform: rotateY(180deg);
}*/

.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition:
    opacity 1s,
    transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}

/* アニメーション */
.jump img {
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.7s;
}
.jump img.jump-in {
  opacity: 1;
  animation: boing 0.7s ease-out;
}

@keyframes boing {
  0% {
    transform: translateY(60px);
  }
  50% {
    transform: translateY(-40px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 150px 0;
}

.notfound .ttl {
  font-size: clamp(26px, 4.17vw, 32px);
  text-align: center;
  margin-bottom: 30px;
}

.notfound p {
  line-height: 1.75;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  /* ======================
	header
	========================= */
  header .h_inner {
    width: 100%;
    min-width: initial;
  }
}
@media screen and (max-width: 1320px) {
  footer .flex_l {
    width: calc(99% - 754px);
    max-width: 487px;
  }
  footer .flex_r {
    width: 754px;
  }
}
@media screen and (max-width: 1220px) {
  /* ======================
	footer
	========================= */
  footer .f_inner {
    max-width: 1120px;
  }
  footer .flex_l {
    width: 46%;
    max-width: 390px;
  }
  footer .flex_r {
    width: 52%;
    max-width: 500px;
  }
  footer .flex_r .f_nav {
    flex-wrap: wrap;
    gap: 30px 0;
  }
  footer .flex_r .f_nav .f_navList {
    width: 48%;
  }
}
@media screen and (max-width: 1090px) {
  /* ======================
	header
	========================= */
  .header-PC .gnav .gnav_list {
    gap: max(25px, 3.26vw);
  }
  .header-PC .h_aside {
    gap: 5px;
    flex-direction: column;
  }

  .header-PC .h_aside .h_aside-sns {
    gap: 15px;
  }
  .header-PC .h_aside .olshop {
    width: 100%;
    height: 34px;
    background-color: #009f42;
    border-radius: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  /* ======================
	footer
	========================= */

  footer .flex_r .f_nav .f_navList li {
    font-size: 1.63vw;
  }
  footer .flex_r .f_nav .f_navList li.item_l {
    font-size: 2.04vw;
  }
  footer .flex_r .f_aside {
    gap: min(3.06vw, 30px);
  }
  footer .flex_r .f_aside .f_aside-sns {
    gap: min(2.04vw, 20px);
  }
}
@media screen and (max-width: 860px) {
  header .h_logo {
    width: calc(100% - 520px);
    max-width: 286px;
    min-width: 230px;
  }
}
@media screen and (max-width: 768px) {
  a.sptel {
    pointer-events: initial;
  }
  img[src*="_sp"] {
    display: block;
  }
  img[src*="_pc"] {
    display: none;
  }

  .btnbk {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 550px;
  }
  .morebtn {
    padding: 0 min(4.65vw, 20px) 0 min(2.33vw, 10px);
  }
  .morebtn > span {
    padding-right: 20px;
  }
  .morebtn > span::after {
    right: 0;
  }
  .morebtn > span .pc {
    display: none;
  }
  /* ======================
	header
	========================= */
  header {
    height: 70px;
  }
  header .h_inner {
    display: block;
  }
  header .h_logo {
    width: calc(100% - 80px);
    min-width: initial;
  }
  .header-PC {
    display: none;
  }
  .header-SP {
    display: block;
  }
  #g-nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9000;
    top: -120%;
    left: 0;
    transition: all 0.6s;
    border: none;
    background: #eb6120;
  }
  #g-nav.panelactive {
    top: 0;
    left: 0;
  }
  #g-nav a {
    color: #fff;
  }
  .g-nav_logo {
    width: 84%;
    max-width: 400px;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
  }
  #g-nav .g-nav_inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: calc(100vh - 112px);
    padding: 30px 8.37vw 70px;
    position: absolute;
    top: 169px;
    left: 50%;
    transform: translate(-50%);
    overflow-y: scroll;
    overflow-x: clip;
  }

  #g-nav .gnav {
    margin-bottom: min(10.7vw, 46px);
  }
  #g-nav .gnav_list {
    font-size: min(5.35vw, 23px);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-top: 0;
    height: auto;
  }
  #g-nav .gnav_list .gnav_item a {
    display: flex;
    align-items: center;
    gap: min(2.33vw, 10px);
  }
  #g-nav .gnav_list .gnav_item a img {
    width: 11.86vw;
    max-width: 51px;
  }
  .sp_aside {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(6.98vw, 30px);
  }
  .sp_aside .sp_aside-sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(4.65vw, 20px);
    width: 94%;
    max-width: 340px;
  }
  .sp_aside .sp_aside-sns li {
    width: 16.28vw;
    max-width: 70px;
  }

  .openbtn {
    height: 70px;
    display: flex !important;
    z-index: 9999;
  }
  /* ======================
	footer
	========================= */
  footer {
    padding: 40px 0;
  }
  footer .f_inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 440px;
    margin-bottom: 10px;
  }
  footer .flex_l {
    width: 100%;
    max-width: 360px;
  }
  footer .flex_l .address {
    width: 100%;
  }
  footer .flex_l .address li {
    padding-left: 35px;
  }
  footer .flex_l .address li::before {
    left: 22px;
  }
  footer .flex_r {
    width: 100%;
  }
  footer .flex_r .f_nav {
    gap: 26px 0;
    margin-bottom: 50px;
  }
  footer .flex_r .f_nav .f_navList {
    gap: 10px;
    width: 49%;
    max-width: initial;
    min-width: initial;
    padding: 0;
    border: none;
  }
  footer .flex_r .f_nav .f_navList-pc {
    display: none;
  }
  footer .flex_r .f_nav .f_navList-sp {
    display: block;
  }
  footer .flex_r .f_nav .f_navList.list_gourmet {
    order: 2;
  }
  footer .flex_r .f_nav .f_navList.list_shopping {
    order: 4;
  }
  footer .flex_r .f_nav .f_navList.list_information {
    order: 3;
  }
  footer .flex_r .f_nav .f_navList.list_access {
    order: 5;
  }
  /* 下線とる */
  footer .flex_r .f_nav .f_navList li.item_l a span::after {
    content: none;
  }

  /* 矢印とる */
  footer .flex_r .f_nav .f_navList li:not(.item_l) a {
    padding-left: 1em;
  }
  footer .flex_r .f_nav .f_navList li:not(.item_l) a::before {
    width: 10px;
    height: 1px;
    background: #fff;
    opacity: 1;
    position: absolute;
    top: 0.75em;
    left: 0;
  }
  footer .flex_r .f_nav .f_navList li:not(.item_l) a span {
    transition: initial;
  }
  footer .flex_r .f_nav .f_navList li:not(.item_l) a:hover span {
    transform: initial;
  }
  footer .flex_r .f_nav .f_navList li:not(.item_l) a span br {
    display: none;
  }
  footer .flex_r .f_aside {
    flex-direction: column;
  }
  footer .flex_r .f_aside .olshop {
    width: 100%;
  }
}

@media screen and (max-width: 430px) {
  body {
    font-size: clamp(15px, 3.95vw, 17px);
  }

  .sttl .chango {
    font-size: clamp(30px, 8.14vw, 35px);
  }
  .sttl.ttl .chango {
    font-size: clamp(30px, 9.3vw, 40px);
  }

  .sttl.ttl .ja,
  .sttl .ja {
    font-size: clamp(15px, 3.95vw, 17px);
  }
  /* ======================
	header
	========================= */
  #g-nav .g-nav_inner {
    top: calc(90px + 16vw);
  }
}
