@charset "UTF-8";
/*共通*/
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*PC・SP非表示*/
.food_deliveryservice .spNone {
  display: block;
}
.food_deliveryservice .pcNone {
  display: none;
}
/*メインビジュアル*/
.food_deliveryservice .mv {
  margin-bottom: 25px;
}
/*新規会員登録*/
/*
.food_deliveryservice .registration {
  margin-bottom: 10px;
  text-align: center;
}
.food_deliveryservice .registration a {
  display: block;
  padding: 14px 12px;
  color: #fff;
  background: #2f2f2f;
  letter-spacing: 0.15em;
  font-size: clamp(16px, 3vw, 18px);
}
.food_deliveryservice .registration a:hover {
  background: #111;
}
.food_deliveryservice .registration a span {
  text-decoration: underline;
  letter-spacing: 0.15em;
  font-size: clamp(16px, 3vw, 18px);
}*/
.food_deliveryservice .registration {
  margin-bottom: 10px;
  text-align: center;
  display: block;
  padding: 12px;
  color: #d04001;
  background: #fbf6ef;
  letter-spacing: 0.15em;
}
.food_deliveryservice .registration p {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
/*注目事項*/
.food_deliveryservice .notice {
  background: #fbe9e9;
  border-top: 1px solid #f2adad;
  border-bottom: 1px solid #f2adad;
  padding: 12px;
}
.food_deliveryservice .notice p {
  color: #b20707;
}
.food_deliveryservice .notice p a {
  color: #b20707;
  text-decoration: underline;
  padding: 2px;
}
/*アンカーリンク*/
.food_deliveryservice .anchor-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 100px;
}
.food_deliveryservice .anchor-nav li {
  transition: opacity .3s ease-in-out;
  width: calc(100% / 3);
  box-sizing: border-box;
}
.food_deliveryservice .anchor-nav li:nth-child(n+4) {
  margin-top: 10px;
}
.food_deliveryservice .anchor-nav li a {
  color: #19191a;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-image: url(/d_images/campaign/cataloggift/icon-arrow-bottom01.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  display: block;
  min-height: 25px;
  padding-left: 33px;
}
.food_deliveryservice .anchor-nav li a:hover {
  opacity: .7;
}
.food_deliveryservice .section {
  margin-bottom: 100px;
}
/*説明*/
.food_deliveryservice .explain01 {
  background-color: #fdfdfd;
  padding: 34px;
  border: #D78C6B thick double;
  border-bottom: none;
}
.food_deliveryservice .explainbody {
  position: relative;
}/*
.food_deliveryservice .explainbody::before {
  content: "";
  position: absolute;
  width: 85px;
  height: 203px;
  background: url("/d_images/campaign/food_deliveryservice/deliveryservice_bg.png") right top / contain no-repeat;
  transform: rotate(180deg);
  right: 0px;
  bottom: 0;
  background-size: contain;
}
.food_deliveryservice .explainbody::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 203px;
  background: url("/d_images/campaign/food_deliveryservice/deliveryservice_bg.png") right top / contain no-repeat;
  transform: rotate(360deg);
  left: 0px;
  top: 0;
  background-size: contain;
}*/
.food_deliveryservice .explain01 .explain01_title .h3 {
  color: #19191a;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}
.food_deliveryservice .explain01 .explain01_title + p {
  text-align: center;
  font-size: 2rem;
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  margin-top: 25px;
}
/*アコーディオン*/
/*ベース*/
.food_deliveryservice .toggle {
  display: none;
}
.food_deliveryservice .Label { /*タイトル*/
  padding: 1rem;
  display: block;
  color: #fff;
  background: #d04001;
  text-align: center;
  cursor: pointer;
  /*border: 1px solid #d04001;*/
}
.food_deliveryservice .Label span {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: bold;
}
.food_deliveryservice .Label span::after { /*タイトル横の矢印*/
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: -22px;
  transform: rotate(135deg);
}
.food_deliveryservice .Label, .content01 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.food_deliveryservice .content01 { /*本文*/
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  /*border: 1px solid #caa25f;*/
  background-color: #fbf6ef;
}
.food_deliveryservice .content01 p { /*本文*/
  padding-left: 1em;
  text-indent: -1em;
}
.food_deliveryservice .toggle:checked + .Label + .content01 { /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
}
.food_deliveryservice .toggle:checked + .Label span::after {
  transform: rotate(-45deg) !important;
}
/*配送料*/
.food_deliveryservice .shipping_cost {
  /*border: 2px solid rgb(198, 198, 198);
  padding: 40px 35px;*/
}
.food_deliveryservice .shipping_cost .scroll + p {
  margin-top: 10px;
}
.food_deliveryservice .shipping_cost h4 {
  font-size: 2rem;
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 17px;
  padding-left: 10px;
  border-left: 5px solid #e04606;
}
.food_deliveryservice .shipping_cost p {
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.food_deliveryservice .shipping_cost h4:nth-of-type(2) {
  margin-top: 34px;
}
/*テーブル*/
/*.food_deliveryservice .scroll {
  margin-top: 20px;
}*/
.food_deliveryservice .tbl th {
  background: #caa25f;
  border: solid 1px #fff;
  color: #fff;
  padding: 10px;
  width: calc(48% / 2);
  font-weight: 500;
}
.food_deliveryservice .tbl td {
  border: solid 1px #e8dcca;
  padding: 10px;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.food_deliveryservice .tbl02 th {
  background: #2f2f2f;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
  width: calc(48% / 2);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
  vertical-align: middle;
}
.food_deliveryservice .tbl02 td {
  border: solid 1px #ccc;
  padding: 10px;
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
  background-color: #fff;
  vertical-align: middle;
}
.food_deliveryservice .tbl02_p {
  margin-top: 5px;
}
/*テーブル　黒色*/
.food_deliveryservice .scroll02 {
  margin-top: 20px;
}
.food_deliveryservice .scroll02 .tbl th {
  background: #2f2f2f;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
  width: calc(48% / 2);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
  vertical-align: middle;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.food_deliveryservice .scroll02 .tbl td {
  border: solid 1px #ccc;
  padding: 10px;
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
  background-color: #fff;
  vertical-align: middle;
  font-size: clamp(1.5rem, 3vw, 1.6rem);
}
/*グリッドレイアウト*/
.food_deliveryservice .col1 {
  margin-bottom: 20px;
}
.food_deliveryservice .gridbox_col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.food_deliveryservice .gridbox_col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.food_deliveryservice .gridbox_col3 a {
  color: #fff;
  position: relative;
  font-size: clamp(12px, 3vw, 20px);
}
.food_deliveryservice .gridbox_col3 a:hover {
  opacity: 0.8;
}
.food_deliveryservice .gridbox_col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.food_deliveryservice .gridbox_col4 a {
  color: #fff;
  position: relative;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 500;
}
.food_deliveryservice .gridbox_col4 a:hover {
  opacity: 0.8;
}
.food_deliveryservice .gridbtn {
  background-color: #2f2f2f;
  position: relative;
  padding: 19px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.food_deliveryservice .gridbtn:after {
  border-style: solid;
  border-width: 0 0 15px 15px;
  bottom: 6px;
  content: "";
  height: 0;
  position: absolute;
  right: 6px;
  width: 0;
  border-color: transparent transparent #111 transparent;
}
.food_deliveryservice .gridbtn a:hover {
  opacity: .7;
}
.food_deliveryservice .gridcaption {
  margin-top: 5px;
  color: #19191a;
  text-align: left;
}
.food_deliveryservice .gridcaption_bg {
  border: 1px solid #caa25f;
}
.food_deliveryservice .gridcaption_bg p {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  line-height: 1.6;
  padding: 8px 19px;
  text-align: center;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgb(202, 162, 95);
  font-weight: 500;
}
.food_deliveryservice .gridcaption_bg p:after {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: 8px;
  content: " ";
  display: inline-block;
  height: 12px;
  position: absolute;
  right: 8px;
  width: 12px;
  background-color: #aa8445;
}
.food_deliveryservice .gridbox_col5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.food_deliveryservice .gridbox_col5 a:hover {
  opacity: 0.8;
}
/*特集見出しh4*/
.food_deliveryservice .h4_ttl {
  font-size: clamp(1.9rem, 3vw, 3.0rem);
  text-align: center;
  margin-bottom: 10px;
}
/*特集見出しh3*/
.food_deliveryservice .section_title .h3 {
  color: #19191a;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-align: center;
}
/*ブランドから探す*/
.food_deliveryservice .section .brand_body {
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.8);
  padding: 20px 30px;
}
.food_deliveryservice .section .brand_body h4 {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 17px;
  padding-left: 10px;
}
.food_deliveryservice .flex_brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0px auto 30px;
}
.food_deliveryservice .flex_brand:last-child {
  margin: 0px auto 0;
}
.food_deliveryservice .flex_brand .item_brand {
  padding-right: 40px;
  width: calc(100% / 3);
  margin-bottom: 6px;
}
.food_deliveryservice .flex_brand .item_brand a {
  background-image: none;
  position: relative;
  display: block;
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: 11px 15px;
  color: #19191a;
  font-size: clamp(13px, 3vw, 15px);
  letter-spacing: .01em;
  padding-left: 20px;
}
.food_deliveryservice .flex_brand .item_brand a::before {
  background-image: url(/d_images/campaign/20201225_valentine/icon-arrow01.png);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 11px;
}
/*ブランドから探す　タブ上　4カラム*/
.food_deliveryservice .section .brand_body {
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.8);
  padding: 20px 30px;
}
.food_deliveryservice .section .brand_body h4 {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 17px;
  padding-left: 10px;
}
.food_deliveryservice .flex_brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0px auto 30px;
}
.food_deliveryservice .flex_brand:last-child {
  margin: 0px auto 0;
}
.food_deliveryservice .flex_brand .item_brand {
  padding-right: 40px;
  width: calc(100% / 3);
  margin-bottom: 6px;
}
.food_deliveryservice .flex_brand .item_brand a {
  background-image: none;
  position: relative;
  display: block;
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: 11px 15px;
  color: #19191a;
  font-size: clamp(13px, 3vw, 15px);
  letter-spacing: .01em;
  padding-left: 20px;
}
.food_deliveryservice .flex_brand .item_brand a:hover {
  opacity: 0.7;
}
.food_deliveryservice .flex_brand .item_brand a::before {
  background-image: url(/d_images/campaign/20201225_valentine/icon-arrow01.png);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 11px;
}
/*ブランドから探す タブ切り替え*/
.food_deliveryservice .brand_fourColumn_flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 60px;
}
.food_deliveryservice .brand_fourColumn_flex a:hover {
  opacity: 0.8;
}
.food_deliveryservice .brandgridcap_bg p {
  color: #19191a;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 10px 0 0;
  text-align: center;
}
.food_deliveryservice .brandgridcap_bg a img {
  box-shadow: rgb(201, 201, 201) 5px 5px 9px -3px;
}
.food_deliveryservice .section_brand .tab_flex {
  justify-content: flex-start;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}
.food_deliveryservice .section_brand .tab_flex .item {
  padding-right: 20px;
  text-align: left;
  vertical-align: top;
}
.food_deliveryservice .section_brand .tab_flex .item:nth-child(2n) {
  padding-right: 20px;
}
.food_deliveryservice .section_brand .tab_flex .item a {
  background-image: none;
  position: relative;
  display: block;
  padding-left: 20px;
  color: #2f2f2f;
}
.food_deliveryservice .section_brand .tab_flex .item a:hover {
  opacity: 0.7;
}
.food_deliveryservice .section_brand .tab_flex .item a::before {
  background-image: url(/d_images/parts_a/top/icon-arrow01.png);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
}
.food_deliveryservice .input {
  position: absolute;
  opacity: 0;
}
.food_deliveryservice .brand_tab .tab {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border: 1px solid #dbcfb3;
  justify-content: space-between;
}
.food_deliveryservice .name_head {
  width: calc(100% / 9);
  background: #caa25f;
  border-right: 1px solid #fff;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0px;
  transition: background 0.1s ease 0s, color 0.1s ease 0s;
  border-top: 1px solid #caa25f;
  padding: 4px 20px;
}
.food_deliveryservice .last_name_head {
  border-right: none;
}
.food_deliveryservice .name_head:hover {
  opacity: 0.7;
}
.food_deliveryservice .input:checked + .name_head {
  background: #fff;
  color: #e04606;
  text-align: center;
  border-top: 2px solid #caa25f;
}
.food_deliveryservice .tab-content {
  display: none;
  order: 99;
  padding: 30px;
  background: #fff;
}
.food_deliveryservice .input:checked + .name_head + .tab-content {
  display: block;
  width: 100%;
}
/*キーワードから探す*/
.food_deliveryservice .section .keywords_body {
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.8);
  padding: 20px 30px;
}
.food_deliveryservice .section .keywords_body h4 {
  font-size: clamp(15px, 3vw, 18px);
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 17px;
  padding-left: 10px;
  margin-top: 30px;
}
.food_deliveryservice .flex_keywords {
  justify-content: flex-start;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.food_deliveryservice .flex_keywords .item_keywords {
  padding-right: 40px;
  margin-bottom: 6px;
}
.food_deliveryservice .flex_keywords .item_keywords a {
  background-image: none;
  position: relative;
  display: block;
  background-position: left 10px;
  background-repeat: no-repeat;
  background-size: 11px 15px;
  color: #19191a;
  font-size: clamp(13px, 3vw, 15px);
  letter-spacing: .01em;
  padding-left: 20px;
}
.food_deliveryservice .flex_keywords .item_keywords a:hover {
  opacity: 0.7
}
.food_deliveryservice .flex_keywords .item_keywords a::before {
  background-image: url(/d_images/campaign/20201225_valentine/icon-arrow01.png);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  left: 0;
  top: 7.5px;
  width: 11px;
}
/*人気キーワード*/
.food_deliveryservice .popularKeywords {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(204, 204, 204, .8);
  padding: 20px 0 20px 22px;
}
.food_deliveryservice .popularKeywords a {
  color: #19191a;
}
.food_deliveryservice .popularKeywords a:hover {
  opacity: 0.7;
}
.food_deliveryservice .popularKeywords h3 {
  background: url(/ec/shop/images/header/search.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 20px;
  margin-bottom: 12px;
  padding-left: 30px;
}
.food_deliveryservice .popularKeywords ul li {
  background-image: url(/d_images/campaign/seibo/icon-arrow02.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 11px 15px;
  float: left;
  font-size: 16px;
  letter-spacing: .01em;
  line-height: 16px;
  margin-bottom: 6px;
  padding-right: 20px;
}
.food_deliveryservice .popularKeywords ul li:not(:last-child) {
  margin-right: 54px;
}
.food_deliveryservice .clearfix::after {
  clear: both;
  content: "";
  display: block;
}
/*価格から探す*/
.food_deliveryservice .price_body {
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.8);
  padding: 30px 40px;
}
.food_deliveryservice .price_body .flex_price {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.food_deliveryservice .price_body .flex_price .item_price {
  margin-bottom: 6px;
  width: calc(99.999% / 3);
  text-align: right;
  padding-right: 30px;
}
.food_deliveryservice .price_body .flex_price .item_price a {
  background-image: url(/d_images/campaign/cataloggift/icon-arrow01.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 11px 15px;
  color: #19191a;
  font-size: clamp(15px, 3vw, 18px);
  letter-spacing: .01em;
  margin-bottom: 2px;
  padding-right: 20px;
}
.food_deliveryservice .price_body .flex_price .item_price a:hover {
  opacity: .7;
}
.food_deliveryservice .section_price:not(:last-child) {
  margin-bottom: 100px;
}
/*もっと見るボタン*/
.food_deliveryservice .section_foot {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.food_deliveryservice .section_foot .read_more {
  color: #19191a;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  align-items: center;
  background: #fff;
  border: 2px solid #19191a;
  height: 45px;
  margin: 0 auto;
  padding: 5px 30px;
  text-align: center;
}
.food_deliveryservice .section_foot .read_more:hover {
  background: #19191a;
  color: #fff;
}
/*全商品をもっと見る　大*/
.food_deliveryservice .all_list_btn {
  margin-bottom: 100px;
}
.food_deliveryservice .all_list_btn a:hover {
  opacity: .8;
}
.food_deliveryservice .all_list_btn a {
  border: solid 1px #f8f5ef;
  border-radius: 2px;
  box-sizing: border-box;
  color: #191919;
  background-color: #f8f5ef;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  padding: 1rem 3rem;
  width: calc(100% - 10%);
  height: 70px;
  margin: 0 auto;
  position: relative;
}
.food_deliveryservice .all_list_btn a::after {
  content: "";
  display: inline-block;
  font-family: "Material Icons";
  background-image: url(/d_images/campaign/201105_seibo_restaurant/icon_arrow02.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: contain;
  right: 2rem;
  top: 2.7rem;
  letter-spacing: 0.15em;
  color: #191919;
}
/*お買い物ガイド*/
.food_deliveryservice .content_guide {
  background-color: #f6f6f8;
  margin-bottom: 50px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.food_deliveryservice .content_guide .guide_inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 0 55px;
}
.food_deliveryservice .content_guide .guide_inner .content_ttl {
  color: #19191a;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
}
.food_deliveryservice .content_guide .guide_inner .flex {
  display: flex;
  flex-wrap: wrap;
}
.food_deliveryservice .content_guide .section {
  margin-bottom: 0;
}
.food_deliveryservice .content_guide .row .colomun:first-child {
  padding-right: 80px;
  width: calc((408 / 1000) * 100%);
}
.food_deliveryservice .content_guide .row .colomun:nth-child(2) {
  padding-right: 80px;
  width: calc((408 / 1000) * 100%);
}
.food_deliveryservice .content_guide .row .colomun:last-child {
  width: calc((183 / 1000) * 100%);
}
.food_deliveryservice .content_guide .row .colomun .section {
  margin-bottom: 0;
}
.food_deliveryservice .content_guide .row .colomun .section:not(:last-child) {
  margin-bottom: 35px;
}
.food_deliveryservice .content_guide .row .colomun .section h3 {
  border-left: 3px solid #19191a;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 17px;
  padding-left: 10px;
}
.food_deliveryservice .content_guide .row .colomun .section .register {
  display: inline-block;
}
.food_deliveryservice .content_guide .row .colomun .section p {
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
}
.food_deliveryservice .content_guide .row .colomun .section dl dt, .food_deliveryservice .content_guide .row .colomun .section dl dd {
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
}
.food_deliveryservice .content_guide .row .colomun .section ul, .food_deliveryservice .content_guide .row .colomun .section ol {
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1.5;
}
.food_deliveryservice .content_guide .row .colomun .section dl ol {
  font-size: 10px;
  letter-spacing: .01em;
}
.food_deliveryservice .content_guide .row .colomun .section dl ol li {
  line-height: 1.5;
}
.food_deliveryservice .content_guide .row .colomun .section p:not(:last-child), .food_deliveryservice .content_guide .row .colomun .section dl:not(:last-child), .food_deliveryservice .content_guide .row .colomun .section ul:not(:last-child), .food_deliveryservice .content_guide .row .colomun .section ol:not(:last-child) {
  margin-bottom: 15px;
}
.food_deliveryservice .content_guide .row .colomun:first-child .section p:first-of-type {
  margin-bottom: 24px;
}
.food_deliveryservice .content_guide .row .colomun .section p.mrb0, .food_deliveryservice .content_guide .row .colomun .section dl.mrb0 {
  margin-bottom: 0;
}
.food_deliveryservice .content_guide .row .colomun .section .attention li {
  font-size: 12px;
  letter-spacing: .01em;
  padding-left: 1em;
  text-indent: -1em;
}
.food_deliveryservice .content_guide .row .colomun .section .delivery li {
  font-size: 12px;
  line-height: 1.8;
  padding-left: 1.35em;
  position: relative;
  text-indent: -1.35em;
}
.food_deliveryservice .content_guide .row .colomun .section .brackets li {
  line-height: 1.8;
  padding-left: 1.35em;
  position: relative;
  text-indent: -1.35em;
}
.food_deliveryservice .content_guide .row .colomun .section .attention li::before {
  content: "※";
}
.food_deliveryservice .content_guide .row .colomun .section .brackets li::before {
  content: "＞";
  font-size: 11px;
}
.food_deliveryservice .content_guide .row .colomun .section .brackets a {
  border-bottom: 1px solid #19191a;
  color: #19191a;
  font-size: 12px;
  letter-spacing: .01em;
}
.food_deliveryservice .content_guide .row .colomun .section .flow li {
  counter-increment: number;
  font-size: 12px;
  letter-spacing: .01em;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.food_deliveryservice .content_guide .row .colomun .section .flow li::before {
  content: counter(number) ")";
  margin-right: 4px;
}
.food_deliveryservice .content_guide .register .submitBtn {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .01em;
  margin-bottom: auto;
}
.food_deliveryservice .content_guide .submitBtn, .food_deliveryservice .content_guide input[type="submit"].submitBtn {
  background: #fff;
  color: #19191a;
  width: 250px;
}
.food_deliveryservice .content_guide .submitBtn:hover, .food_deliveryservice .content_guide input[type="submit"].submitBtn:hover {
  background: #19191a;
  color: #fff;
}
.food_deliveryservice .content_guide .row .colomun .section .inquiry h4 {
  font-weight: 500;
}
.food_deliveryservice .content_guide .row .colomun .section .postage a, .food_deliveryservice .content_guide .row .colomun .section .inquiry a {
  font-size: 12px;
  background: #dfdfdf;
  padding: 2px 8px 5px;
  margin: 0 2px;
  line-height: 220%;
}
/*-------------tb-------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .food_deliveryservice .content_guide .guide_inner {
    padding: 50px 10px 55px;
  }
  .food_deliveryservice .gridcaption_bg p {
    line-height: 1.2;
  }
  /*.food_deliveryservice .explainbody::before {
    top: 0;
    bottom: 0px;
  }
  .food_deliveryservice .explainbody::after {
    top: 0;
    bottom: 0;
  }*/
}
/*-------------sp-------------*/
@media screen and (max-width: 767px) {
  .food_deliveryservice .spNone {
    display: none;
  }
  .food_deliveryservice .pcNone {
    display: block;
  }
  /*メインビジュアル*/
  .food_deliveryservice .mv {
    margin: 0px calc(50% - 50vw) 20px;
    width: 100vw;
  }
  /*新規会員登録*/ /*
  .food_deliveryservice .registration a {
    letter-spacing: 1px;
    line-height: 1.6;
  }
  .food_deliveryservice .registration a span {
    display: block;
    color: rgb(255, 255, 255);
    background: rgb(17, 17, 17);
    text-decoration: none;
    letter-spacing: 1.5px;
    padding: 6px 0px 8px;
    margin-top: 3px;
  }*/
  .food_deliveryservice .registration {
    letter-spacing: 1px;
    line-height: 1.6;
  }
  .food_deliveryservice .registration span {
    display: block;
    color: rgb(255, 255, 255);
    background: rgb(17, 17, 17);
    text-decoration: none;
    letter-spacing: 1.5px;
    padding: 6px 0px 8px;
    margin-top: 3px;
  }
  /*注目事項*/
  .food_deliveryservice .notice p {
    font-size: 100%;
    color: #b20707;
  }
  /*アンカーリンク*/
  .food_deliveryservice .anchor-nav {
    margin-bottom: 60px;
  }
  .food_deliveryservice .anchor-nav li {
    width: calc(100% / 2);
  }
  .food_deliveryservice .anchor-nav li:nth-child(n+4) {
    margin-top: 0;
  }
  .food_deliveryservice .anchor-nav li:nth-child(n+3) {
    margin-top: 20px;
  }
  .food_deliveryservice .anchor-nav li:nth-child(2n-1) {
    padding-right: 5px;
  }
  .food_deliveryservice .anchor-nav li a {
    line-height: 1.33;
    letter-spacing: 0.1px;
    background-size: contain;
    font-feature-settings: "palt";
    min-height: 22px;
    padding-left: 30px;
    background-size: 22px;
  }
  /*テーブル*/
  .food_deliveryservice .scroll {
    overflow-x: auto;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) right/20px 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-right: 1px solid rgb(232, 220, 202);
  }
  .food_deliveryservice .tbl {
    min-width: 640px;
    background: linear-gradient(to left, hsla(0, 0%, 100%, 0), white 15px) 0 0 / 50px 100%, linear-gradient(to right, hsla(0, 0%, 100%, 0), white 15px) right / 50px 100%;
    background-repeat: no-repeat;
    background-attachment: local;
    border-bottom: 1px solid #CCC;
    border-collapse: collapse;
  }
  .food_deliveryservice .tbl td {
    border-top: 1px solid rgb(232, 220, 202);
    border-bottom: 1px solid rgb(232, 220, 202);
  }
  .food_deliveryservice .tbl02 td {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
  }
  /*テーブル 黒*/
  .food_deliveryservice .scroll02 {
    overflow-x: auto;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) right/20px 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-right: 1px solid rgb(232, 220, 202);
    background-color: #fff;
  }
  .food_deliveryservice .scroll02 .tbl {
    min-width: 400px;
    background: linear-gradient(to left, hsla(0, 0%, 100%, 0), white 15px) 0 0 / 50px 100%, linear-gradient(to right, hsla(0, 0%, 100%, 0), white 15px) right / 50px 100%;
    background-repeat: no-repeat;
    background-attachment: local;
    border-bottom: 1px solid #ccc;
    border-collapse: collapse;
  }
  .food_deliveryservice .scroll02 .tbl td {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    background-color: transparent;
  }
  /*配送料*/
  .food_deliveryservice .shipping_cost {
    /*padding: 23px 21px;*/
  }
  /*特集見出しh3*/
  .food_deliveryservice .section_title .h3 {
    margin-bottom: 30px;
  }
  .food_deliveryservice .section {
    margin-bottom: 60px;
  }
  /*
  .food_deliveryservice .explainbody::before {
    content: "";
    position: absolute;
    width: 61px;
    height: 261px;
    transform: rotate(180deg);
    background: url("/d_images/campaign/food_deliveryservice/deliveryservice_bgsp.png") right top / contain no-repeat;
    right: 0;
    top: 0;
  }
  .food_deliveryservice .explainbody::after {
    content: "";
    position: absolute;
    width: 61px;
    height: 261px;
    transform: rotate(360deg);
    background: url("/d_images/campaign/food_deliveryservice/deliveryservice_bgsp.png") right top / contain no-repeat;
    left: 0;
    bottom: 0;
  }*/
  .food_deliveryservice .explain01 .explain01_title + p {
    text-align: left;
  }
  /*グリッドレイアウト*/
  .food_deliveryservice .col1 {
    margin-bottom: 15px;
  }
  .food_deliveryservice .gridbox_col2 {
    gap: 15px;
  }
  .food_deliveryservice .gridbox_col3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .food_deliveryservice .gridbox_col4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .food_deliveryservice .gridbox_col5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .food_deliveryservice .gridcaption_bg p {
    padding: 22px 10px;
  }
  .food_deliveryservice .gridbtn {
    padding: 12px;
  }
  /*もっと見るボタン*/
  .food_deliveryservice .section_foot .read_more {
    height: 40px;
  }
  /*全商品をもっと見る　大*/
  .food_deliveryservice .all_list_btn {
    margin-bottom: 60px;
  }
  /*もっと見るボタン*/
  .food_deliveryservice .section_foot {
    margin-bottom: 0;
  }
  /*お買い物ガイド*/
  .food_deliveryservice .content_guide {
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding: 30px 0 20px;
    margin-top: 60px;
  }
  .food_deliveryservice .content_guide .guide_inner {
    padding: 0 18px;
  }
  .food_deliveryservice .content_guide .guide_inner .content_ttl {
    font-size: 19px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
  .food_deliveryservice .content_guide .row .colomun {
    width: 100% !important;
  }
  .food_deliveryservice .content_guide .row .colomun:first-child {
    padding-right: 0;
  }
  .food_deliveryservice .content_guide .row .colomun:nth-child(2) {
    padding-right: 0;
  }
  .food_deliveryservice .content_guide .row .colomun:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .food_deliveryservice .content_guide .row .colomun .section {
    margin-bottom: 20px;
  }
  .food_deliveryservice .content_guide .row .colomun .section:not(:last-child) {
    margin-bottom: 30px;
  }
  .food_deliveryservice .content_guide .row .colomun .section h3 {
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 17px;
    margin-bottom: 15px;
  }
  .food_deliveryservice .content_guide .row .colomun .section .register {
    display: block;
    margin-bottom: 24px;
  }
  .food_deliveryservice .content_guide .row .colomun .section p {
    font-size: 12px;
    line-height: 17px;
  }
  .food_deliveryservice .content_guide .row .colomun .section dl dt, .food_deliveryservice .content_guide .row .colomun .section dl dd {
    font-size: 12px;
    line-height: 17px;
  }
  .food_deliveryservice .content_guide .row .colomun .section ul, .food_deliveryservice .content_guide .row .colomun .section ol {
    font-size: 12px;
    line-height: 17px;
  }
  .food_deliveryservice .content_guide .row .colomun .section .brackets li {
    line-height: 1.5;
  }
  .food_deliveryservice .content_guide .register .submitBtn {
    font-size: 13px;
    padding: .5em .5em;
  }
  /*価格から探す*/
  .food_deliveryservice .price_body {
    border-top: 1px solid #ececec;
    padding: 18px 5px 12px 13px;
  }
  .food_deliveryservice .price_body .flex_price .item_price {
    text-align: right;
    width: calc(100% / 2);
    padding-right: 5px;
  }
  .food_deliveryservice .price_body .flex_price .item_price a {
    padding-right: 15px;
  }
  .food_deliveryservice .section_price:not(:last-child) {
    margin-bottom: 60px;
  }
  /*ブランドから探す*/
  .food_deliveryservice .section .brand_body {
    border-top: 1px solid #ececec;
    padding: 18px 20px !important;
  }
  .food_deliveryservice .flex_brand {
    justify-content: space-between;
  }
  .food_deliveryservice .flex_brand .item_brand {
    width: 50%;
    padding-right: 10px;
  }
  .food_deliveryservice .flex_brand .item_odd {
    padding-right: 0;
  }
  /*ブランドから探す　タブ上　4カラム*/
  .food_deliveryservice .section .brand_body {
    border-top: 1px solid #ececec;
    padding: 18px 20px !important;
  }
  .food_deliveryservice .flex_brand {
    justify-content: space-between;
  }
  .food_deliveryservice .flex_brand .item_brand {
    width: 50%;
    padding-right: 10px;
  }
  .food_deliveryservice .flex_brand .item_odd {
    padding-right: 0;
  }
  /*ブランドから探す タブ切り替え*/
  .food_deliveryservice .brand_fourColumn_flex {
    grid-template-columns: repeat(2, 1fr);
  }
  .food_deliveryservice .brandgridcap_bg p {
    font-size: 1.4rem;
  }
  .food_deliveryservice .brandgridcap_bg a img {
    box-shadow: rgb(201, 201, 201) 4px 4px 8px -3px;
  }
  .food_deliveryservice .section_brand .tab_flex {
    display: flex;
    flex-direction: column;
  }
  .food_deliveryservice .brand_tab .tab {
    border: none;
    border-bottom: 1px solid #caa25f;
  }
  .food_deliveryservice .name_head {
    width: 100%;
    padding: 4px 20px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.8rem;
    color: #e04606;
    margin-bottom: 0;
    transition: background 0.1s, color 0.1s;
    text-align: left;
    border-top: 1px solid #caa25f;
  }
  /*ブランドから探す　SP　閉じた状態の矢印描画*/
  .food_deliveryservice .name_head {
    position: relative;
  }
  .food_deliveryservice .name_head:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #caa25f 2px solid;
    border-right: #caa25f 2px solid;
    transform: rotate(135deg);
    position: absolute;
    right: 6%;
    top: 0;
    bottom: 15%;
    margin: auto;
  }
  .food_deliveryservice .input:checked + .name_head {
    background: #caa25f;
    color: #fff;
    border-top: 2px solid #caa25f;
    text-align: left;
  }
  /*ブランドから探す　SP　開いた状態の矢印描画*/
  .food_deliveryservice input[type=radio]:checked + .name_head:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    right: 6%;
    top: 7%;
    bottom: 0px;
    margin: auto;
  }
  .food_deliveryservice .tab-content {
    order: 0;
    padding: 25px 20px;
  }
  /*キーワードから探す*/
  .food_deliveryservice .section .keywords_body {
    border-top: 1px solid #ececec;
    padding: 18px 20px !important;
  }
  .food_deliveryservice .flex_keywords {
    justify-content: space-between;
  }
  .food_deliveryservice .flex_keywords .item_keywords {
    width: 50%;
    padding-right: 0;
  }
  .food_deliveryservice .flex_keywords .item_keywords:nth-child(odd) {
    padding-right: 5px;
  }
  .food_deliveryservice .flex_keywords .item_odd {
    padding-left: 0;
    width: 50%;
  }
  /*人気キーワード*/
  .food_deliveryservice .popularKeywords {
    border-top: 1px solid #ececec;
    padding: 18px 0 11px 18px;
    text-align: center;
  }
  .food_deliveryservice .popularKeywords h3 {
    display: inline-block;
    letter-spacing: .01em;
    line-height: 24px;
    margin-bottom: 18px;
    padding: 0 30px 0 30px;
  }
  .food_deliveryservice .popularKeywords ul li {
    background-image: url(/d_images/campaign/seibo/sp/icon-arrow02.png);
    background-size: 10px 13px;
  }
  .food_deliveryservice .popularKeywords ul li a {
    font-size: 13px;
  }
  .food_deliveryservice .popularKeywords ul li:not(:last-child) {
    margin-right: 21px;
  }
}
/*@media screen and (max-width: 375px) {
  .food_deliveryservice .explain01 {
    padding: 34px 52px;
  }
}*/