@charset "utf-8";
/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", Helvetica, Arial, "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  background-color: #fff;
  /* min-width: 1150px; */
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}
main {
  display: block;
}

/* == utility ============================================== */
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.u-sp-only {
  display: none !important;
}
.u-black {
  font-weight: 900 !important;
}
.u-bold {
  font-weight: 700 !important;
}
.u-no-post {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 40px 0;
}

/*** wave animation *********************************/
.u-wave {
  position: relative;
  overflow: hidden;
}
.u-wave::after {
  content: "";
  display: block;
  width: 160%;
  height: 160%;
  background: url(../img/bg/btn_bg02.png) no-repeat left top;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: all 0.65s ease-out;
}
a:hover .u-wave::after,
.u-wave:hover::after {
  top: -30px;
  left: -60%;
}

/*** background color *********************************/
.u-bg {
  position: relative;
}
.u-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f0eb;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
/* ------ */
.u-bg-fill {
  background-color: #f4f0eb;
}

/* == parts ============================================== */
/*** inner *********************************/
.l-inner {
  width: 90%;
  max-width: 1088px;
  margin: 0 auto;
}
/* .inner {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
} */

/*** button *********************************/
.c-btn {
  width: 100%;
  max-width: 270px;
  border-radius: 4px;
  background: #333;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  margin: 0 auto;
  transition: background-color 0.3s ease-in;
}
.c-btn a,
.c-btn button {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 20px;
  position: relative;
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  height: 60px;
}
.c-btn a span,
.c-btn button span {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 24px;
  transition: background-position 0.3s ease-in;
}
.c-btn a::after,
.c-btn button::after {
  content: "";
  display: block;
  width: 850px;
  height: 100%;
  background: url(../img/bg/btn_bg01.png) no-repeat left bottom -28px;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease-in;
}
/* --- next --- */
.c-btn--next a span,
.c-btn--next button span {
  background: url(../img/arrow/arrow_right05.png) no-repeat right 10px center;
  background-size: 12px 12px;
}
/* --- prev --- */
.c-btn--prev a span,
.c-btn--prev button span {
  background: url(../img/arrow/arrow_left02.png) no-repeat left 10px center;
  background-size: 12px 12px;
}
/* --- online shop --- */
.c-online-btn {
  text-align: center;
}
.c-online-btn a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  background: url(../img/icon/icon_store.svg) no-repeat left 16px center #533c32;
  background-size: 16px 18px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 9px 18px 9px 40px;
  transition: opacity 0.3s;
}
/* --- hover --- */
.c-btn:hover {
  background: #5c4d3a;
}
.c-btn a:hover::after,
.c-btn button:hover::after {
  left: -580px;
}
.c-btn a:hover span::after,
.c-btn button:hover span::after {
  right: -30px;
}
.c-btn--next a:hover span,
.c-btn--next button:hover span {
  background-position: right 0 center;
}
.c-btn--prev a:hover span,
.c-btn--prev button:hover span {
  background-position: left 0 center;
}
.c-online-btn a:hover {
  opacity: 0.8;
}

/*** headline *********************************/
.c-heading {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  color: #533c32;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.c-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fcc82e;
  margin: 0.4em auto 20px;
  position: relative;
  z-index: 1;
}
/* --- サブタイトル --- */
.c-heading .sub {
  display: block;
  font-size: 2.4rem;
  -webkit-transform: translateY(14px);
  -ms-transform: translateY(14px);
  transform: translateY(14px);
}
/* --- 左揃え --- */
.c-heading--left {
  text-align: left;
}
.c-heading--left::after {
  margin-left: 0;
}
/* --- 白文字 --- */
.c-heading--white {
  color: #fff;
}
/* --- アイコン付き --- */
.c-heading--icon::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background-image: url(../img/icon/icon01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fcc82e;
  background-size: contain;
}
.c-heading--icon.c-heading--left::before {
  margin-left: 0;
}
.p-about-title .c-heading--icon::before {
  background-image: url(../img/icon/icon02.png);
}
.p-factory-title .c-heading--icon::before {
  background-image: url(../img/icon/icon04.png);
}

/*** category *********************************/
.c-cat {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #666;
}
/* --- アイコン付き --- */
.c-cat—-icon {
  padding-left: 34px;
  position: relative;
}
.c-cat—-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon/icon_attention.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 0;
}
/* --- 背景色付き --- */
.c-cat-bg {
  display: inline-block;
  min-width: 120px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  background: #6f5246;
  padding: 2px 14px 3px;
}
.c-cat-bg--red {
  background: #d03939;
}
.c-cat-bg--green {
  background: #528e4d;
}

/*** news list *********************************/
.c-list-news {
  background: #fff;
  position: relative;
  z-index: 1;
}
.c-list-news li + li {
  border-top: 1px solid #eaeaea;
}
.c-list-news li a {
  display: block;
  padding: 10px 56px 14px 44px;
}
.c-list-news li .date {
  width: 120px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  color: #333;
  position: relative;
  margin-right: 12px;
}
.c-list-news li .date::after {
  content: "‖";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.c-list-news li .c-cat,
.c-list-news li .c-cat-bg {
  display: inline-block;
  vertical-align: middle;
}
.c-list-news li .title {
  font-weight: 700;
  color: #333;
  margin-top: 13px;
  transition: color 0.3s;
}
.c-list-news li a:hover .title {
  text-decoration: underline;
  color: #fcc82e;
}

/*** product card *********************************/
.c-product {
  width: 22.942%;
}
.c-product a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s;
}
.c-product__thum {
  width: 100%;
  padding-top: 66.4%;
  /* padding-top: 109.1%; */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}
.c-product__thum img {
  width: auto;
  height: auto;
  max-width: 100%;
  /* max-height: none; */
  border-radius: 8px;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
/* @supports (object-fit: cover) {
  .c-product__thum img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
} */
.c-product .c-cat {
  display: block;
  margin: 0 0 4px;
}
.c-product .c-cat-bg {
  margin: 6px 0 8px;
}
.c-product__title {
  width: 100%;
  height: 50px;
  min-height: 50px;
  overflow: hidden;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
}
.c-product__excerpt {
  /* min-height: 84px; */
  color: #666;
  margin-top: 15px;
}
.c-product__price {
  color: #333;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  margin-top: 16px;
  /* font-size: 20px; */
}
.c-product__price span {
  font-size: 1.6rem;
}
/* --- hover --- */
.c-product a:hover {
  opacity: 0.6;
}

/*** product list *********************************/
.c-list-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.025%;
}
.c-list-products .c-product {
  margin: 0 1.025% 5.6%;
}
/* --- 3column --- */
.c-list-product—3col {
  margin: 0 -1%;
}
.c-list-product—3col .c-product {
  width: 30.9%;
  margin: 0 1.216% 7.9%;
}
/* --- magazine --- */
.p-list-magazine .c-product__thum {
  /* padding-top: 109.1%; */
  padding-top: 140.46%;
}

/*** slider prev / next /dots *********************************/
.p-slide-prev,
.p-slide-next {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(83, 60, 50, 0.8);
  cursor: pointer;
  border: none;
  outline: none;
  background-repeat: no-repeat;
  background-size: 6px 12px;
  background-position: center;
  position: absolute;
  top: 50%;
  z-index: 5;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: opacity 0.3s;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.p-slide-prev {
  background-image: url(../img/arrow/arrow_left01.png);
  /* left: calc(50% - 498px); */
}
.p-slide-next {
  background-image: url(../img/arrow/arrow_right01.png);
  /* right: calc(50% - 498px); */
}
.p-slide-prev:hover,
.p-slide-next:hover {
  opacity: 0.8;
}
.p-slide-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  text-align: center;
}
.p-slide-dots li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 14px;
  padding: 0;
  cursor: pointer;
}
.p-slide-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #eaeaea;
  transition: all 0.3s;
}
.p-slide-dots li button:hover,
.p-slide-dots li button:focus {
  outline: none;
  background: #fcc82e;
}
.p-slide-dots li.slick-active button {
  background: #fcc82e;
}

/*** product list slider *********************************/
.p-list-slide {
  display: block;
  margin: 0 -2%;
}
.p-list-slide .c-product {
  width: 242px;
  margin: 0;
}
.p-list-slide .c-product a {
  width: 90%;
  max-width: 242px;
  margin: 0 auto;
}
.p-list-slide .c-product__thum {
  padding-top: 82.65%;
  margin-bottom: 20px;
}
.p-list-slide .p-slide-prev {
  left: -10px;
  top: 166px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.p-list-slide .p-slide-next {
  right: -10px;
  top: 166px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  .p-list-slide .c-product a {
    max-width: none;
  }
}

/*** tab btn *********************************/
.c-tab-select {
  /* max-width: 1088px; */
  margin: 40px auto 28px;
}
/* .block_front-products .c-tab-item {
  width: 100%;
  max-width: 1128px;
  min-height: 440px;
  margin: 0 auto;
} */

.c-tab-btn {
  display: table;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 4px;
  padding: 14px 50px;
  cursor: pointer;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 36px 36px;
  position: relative;
  transition: all 0.3s;
}
.c-tab-btn.is-active {
  background-color: #fcc82e;
  color: #533c32;
}
.c-tab-btn span {
  display: table-cell;
  vertical-align: middle;
}
.c-tab-filter--link .c-tab-btn {
  display: block;
  padding: 0;
}
.c-tab-filter--link .c-tab-btn a {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 14px 50px;
}
/* --- hover --- */
.c-tab-btn:hover {
  opacity: 0.6;
}
.c-tab-btn.is-active:hover {
  opacity: 1;
}
/* -=-=- icon type -=-=- */
.c-tab-btn--icon01 {
  background-image: url(../img/icon/product/icon01_off.png);
  padding: 14px 5px 14px 6.2%;
  text-align: left;
}
.c-tab-btn--icon01.is-active {
  background-image: url(../img/icon/product/icon01_on.png);
}
/* --- gift --- */
.c-tab-btn--icon02 {
  background-image: url(../img/icon/product/icon02_off.png);
}
.c-tab-btn--icon02.is-active {
  background-image: url(../img/icon/product/icon02_on.png);
}
/* --- coffee --- */
.c-tab-btn--icon03 {
  background-image: url(../img/icon/product/icon03_off.png);
}
.c-tab-btn--icon03.is-active {
  background-image: url(../img/icon/product/icon03_on.png);
}
/* --- cheese --- */
.c-tab-btn--icon04 {
  background-image: url(../img/icon/product/icon04_off.png);
}
.c-tab-btn--icon04.is-active {
  background-image: url(../img/icon/product/icon04_on.png);
}
/* --- sweets --- */
.c-tab-btn--icon05 {
  background-image: url(../img/icon/product/icon05_off.png);
}
.c-tab-btn--icon05.is-active {
  background-image: url(../img/icon/product/icon05_on.png);
}
/* --- drink --- */
.c-tab-btn--icon06 {
  background-image: url(../img/icon/product/icon06_off.png);
}
.c-tab-btn--icon06.is-active {
  background-image: url(../img/icon/product/icon06_on.png);
}
/* --- frozen --- */
.c-tab-btn--icon07 {
  background-image: url(../img/icon/product/icon07_off.png);
}
.c-tab-btn--icon07.is-active {
  background-image: url(../img/icon/product/icon07_on.png);
}
/* --- room temperature --- */
.c-tab-btn--icon08 {
  background-image: url(../img/icon/product/icon08_off.png);
}
.c-tab-btn--icon08.is-active {
  background-image: url(../img/icon/product/icon08_on.png);
}

/*** tab filter *********************************/
.c-tab-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.15%;
}
.c-tab-filter .c-tab-btn {
  width: 24.7%;
  margin: 0.15%;
}
/* --- news --- */
.p-filter-news .c-tab-btn {
  padding: 14px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.p-filter-news .c-tab-btn.is-active {
  filter: none;
}
.c-tab-filter--link .c-tab-btn {
  padding: 0;
}
.c-tab-filter--link .c-tab-btn a {
  padding: 14px;
}
/* --- about --- */
.p-filter-about .c-tab-btn {
  width: 49.7%;
}

/*** tab item *********************************/
.p-tab-item {
  width: 100%;
  min-height: 440px;
  margin: 0 auto;
}

/*** more *********************************/
.c-more {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.c-more span {
  position: relative;
}
.c-more span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  background: url(../img/arrow/arrow_right01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: right 0.5s ease-out;
}
a:hover .c-more {
  opacity: 1;
  visibility: visible;
  letter-spacing: 0.1em;
  top: 50%;
}
a:hover .c-more span::after {
  right: -36px;
}

/*** breadcrumb *********************************/
.c-breadcrumb {
  margin: 80px 0 60px;
}
.c-breadcrumb .list_bread {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 20px 20px 160px;
}
.c-breadcrumb .list_bread li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #533c32;
}
.c-breadcrumb .list_bread li + li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background: url(../img/arrow/arrow_right03.png) no-repeat center top;
  background-size: 6px 8px;
  margin: 0 0.8em;
}
.c-breadcrumb .list_bread li a {
  display: inline-block;
  text-decoration: underline;
}
.c-breadcrumb .list_bread li a:hover {
  opacity: 0.6;
}

/*** under title *********************************/
.c-under-title {
  width: 100%;
  position: relative;
}
.c-under-title .l-inner {
  display: table;
  height: 100%;
  min-height: 310px;
  padding: 100px 0 80px;
}
.c-under-title .text_box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #fff;
}
.c-under-title .bg_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.c-under-title .bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: none;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@supports (object-fit: cover) {
  .c-under-title .bg_box img {
    position: static;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.c-under-title .bg_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(47, 33, 27, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

/*** pagenation *********************************/
.c-pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 80px;
}
.c-pagenation ul li {
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 30px;
  text-align: center;
  color: #333;
  background: #fff;
  border-radius: 50%;
  margin: 0 8px;
}
.c-pagenation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-pagenation ul li.now a {
  color: #fff;
}
.c-pagenation ul li.now,
.c-pagenation ul li.active {
  color: #fff;
  background: #533c32;
}
.c-pagenation ul li.active a {
  color: #fff;
}
.c-pagenation .prev,
.c-pagenation .next,
.c-pagenation .pagenation__item-next,
.c-pagenation .pagenation__item-previous {
  background: transparent;
}
.c-pagenation .prev a,
.c-pagenation .pagenation__item-previous a,
.c-pagenation .no-prev {
  background: url(../img/arrow/arrow_prev.png) no-repeat center;
  background-size: 16px 16px;
}
.c-pagenation .next a,
.c-pagenation .pagenation__item-next a,
.c-pagenation .no-next {
  background: url(../img/arrow/arrow_next.png) no-repeat center;
  background-size: 16px 16px;
}
.c-pagenation .pagenation__item-next a span,
.c-pagenation .pagenation__item-previous a span {
  display: none;
}
.c-pagenation .no-prev,
.c-pagenation .no-next {
  opacity: 0.2;
}
/* --- hover --- */
.c-pagenation ul li a:hover {
  opacity: 0.4;
}

/*** read more *********************************/
.p-more-list li {
  transition: all 0.6s ease;
}
.p-more-list li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  visibility: hidden;
}
/* ------ */
.c-more-btn {
  transition: height 0.3s;
}
.c-more-btn button {
  display: block;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #533c32;
  letter-spacing: 0.1em;
  text-align: center;
  background: transparent;
  margin: 0 auto;
}
.c-more-btn button::after {
  content: "+";
  display: block;
  width: 24px;
  height: 24px;
  background: #533c32;
  font-size: 2rem;
  font-weight: 900;
  line-height: 24px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  letter-spacing: 0;
  margin: 8px auto 0;
  transition: transform 0.3s;
}
/* --- hover --- */
.c-more-btn button:hover::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*** card list *********************************/
.c-list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-card li {
  width: 48.2%;
  background: #2b251a;
}
.c-list-card li:nth-of-type(n + 3) {
  margin-top: 3.8%;
}
.block_store .c-list-card .pop-set li:nth-of-type(n + 3) {
  margin-top: 0;
}
.c-list-card li .img_box {
  width: 100%;
  padding-top: 38.3%;
  position: relative;
  overflow: hidden;
}
.c-list-card li .img_box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all 0.4s;
}
.c-list-card li .text_box {
  min-height: 240px;
  color: #fff;
  padding: 16px 30px 30px;
}
.c-list-card li .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
/* --- pop up --- */
.c-list-card--pop li {
  border-radius: 8px;
  position: relative;
}
.c-list-card--pop .front-contents {
  transition: opacity 0.4s;
  cursor: pointer;
}
.c-list-card--pop .front-contents .title {
  font-weight: 700;
  font-size: 1.6rem;
}
.c-list-card--pop .front-contents .img_box {
  padding-top: 62%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.c-list-card--pop .front-contents .text_box {
  padding: 30px;
  margin-bottom: 30px;
}
.c-list-card--pop .front-contents .more {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: right;
  background: url(../img/arrow/arrow_right01.png) no-repeat center right;
  background-size: 6px 12px;
  padding-right: 20px;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
/* --- hover --- */
.c-list-card--pop li .front-contents:hover {
  opacity: 0.7;
}
.c-list-card--pop li .front-contents:hover .img_box img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

/*** office list *********************************/
.c-office-set {
  margin-top: 40px;
}
.c-office-set .heading {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: #533c32;
  padding: 8px 30px 9px;
}
.c-list-office li {
  color: #6f5246;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 35px 40px;
  margin-top: 20px;
}
.c-list-office li .text_box {
  width: 57%;
  padding-left: 14px;
}
.c-list-office li .name {
  font-weight: 700;
  color: #6f5246;
  border-bottom: 1px dashed rgba(111, 82, 70, 0.2);
  padding: 0 0 8px 14px;
  margin: 0 0px 8px -14px;
}
.c-list-office li .text_box .address {
  margin-bottom: 4px;
}
.c-list-office li .img_box {
  width: 38%;
  padding-top: 31.7%;
  position: relative;
  overflow: hidden;
}
.c-list-office li .img_box img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.c-list-office li .more {
  display: inline-block;
  font-weight: 500;
  color: #fe8c44;
  text-decoration: underline;
  background: url(../img/arrow/arrow_right06.png) no-repeat center right;
  background-size: 4px 8px;
  padding-right: 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.c-list-office .c-pop-contents .pop-text .info {
  margin-bottom: 0;
}
.c-list-office .c-pop-contents .pop-map {
  width: 100%;
  margin: 40px 0;
}
/* --- hover --- */
.c-list-office li .more:hover {
  opacity: 0.6;
}

/*** pop up contents *********************************/
.c-pop-contents {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.c-pop-contents .pop-bg {
  width: 100%;
  height: 100%;
  background: rgba(83, 60, 50, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-pop-contents .pop-inner {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #f4f0eb;
  border-radius: 8px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1100;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: auto;
  padding: 40px 40px 20px;
}
/* ------ */
.c-pop-contents .pop-img {
  width: 50%;
  float: right;
  margin-top: 45px;
}
/* ------ */
.c-pop-contents .pop-map {
  width: 50%;
  height: 320px;
  float: right;
  overflow: hidden;
  margin-top: 50px;
}
.c-pop-contents .pop-map iframe {
  width: 100%;
  height: 100%;
}
/* ------ */
.c-pop-contents .pop-text {
  width: 47%;
  float: left;
}
.c-pop-contents .pop-text .name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6f5246;
  border-bottom: 1px dashed rgba(111, 82, 70, 0.2);
  padding: 0;
  margin: 0 0 10px;
}
.c-pop-contents .pop-text .info {
  color: #6f5246;
  margin-bottom: 40px;
}
.c-pop-contents .pop-text .pop-dl dt {
  width: 90px;
  float: left;
  clear: left;
}
.c-pop-contents .pop-text .pop-dl dd {
  padding-left: 90px;
}
.c-pop-contents .pop-set {
  font-size: 1.4rem;
  color: #666;
  margin-top: 20px;
}
.c-pop-contents .pop-set .title {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6f5246;
  padding: 0 0 4px;
  margin: 0 0 4px;
  border-bottom: 1px solid #6f5246;
}
.c-pop-contents .pop-set li {
  width: 100%;
  background: transparent;
}
.c-pop-contents .pop-set a {
  text-decoration: underline;
  word-break: break-all;
}
.c-pop-contents .c-btn {
  margin: 40px auto;
}
/* --- hover --- */
.c-pop-contents .pop-set a:hover {
  text-decoration: none;
}
/* --- open --- */
.c-pop-contents.is-open {
  opacity: 1;
  visibility: visible;
}

/*** about nav *********************************/
.p-about-nav {
  margin: 60px 0 60px;
}
.p-about-nav .c-btn {
  margin-top: 60px;
}
.c-about-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2%;
}
.c-about-nav li {
  width: 21.2%;
  border-radius: 4px;
  margin: 1.9%;
}
.c-about-nav li a {
  display: table;
  width: 100%;
  height: 100%;
  padding: 25px 20px;
  background: #fcc82e;
  transition: opacity 0.3s;
}
.c-about-nav li .title {
  display: table-cell;
  vertical-align: middle;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #533c32;
}
.c-about-nav li .title::before {
  content: "";
  display: block;
  width: 60px;
  height: 50px;
  background-image: url(../img/icon/nav_icon01.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  margin: 0 auto 4px;
}
.c-about-nav li.company .title::before {
  background-image: url(../img/icon/nav_icon01.png);
}
.c-about-nav li.factory .title::before {
  background-image: url(../img/icon/nav_icon02.png);
}
.c-about-nav li.office .title::before {
  background-image: url(../img/icon/nav_icon03.png);
}
.c-about-nav li.store .title::before {
  background-image: url(../img/icon/nav_icon04.png);
}
/* --- current --- */
.c-about-nav li.current a {
  background: #edebea;
  pointer-events: none;
}
.c-about-nav li.current .title {
  opacity: 0.2;
}
/* --- hover --- */
.c-about-nav li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 991px) {
  .c-about-nav li {
    width: 46%;
  }
}

/*** sns share *********************************/
.c-sns-share {
  border: 4px solid #fcc82e;
  background: #fff;
  padding: 70px 20px;
}
.c-sns-share .heading {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #6f5246;
  margin-bottom: 40px;
}
.c-sns-share .share_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-sns-share .c-btn {
  margin: 0 20px;
}
.c-sns-share .c-btn a::after {
  content: none;
}
.c-sns-share .c-btn.facebook,
.c-sns-share .c-btn.facebook:hover {
  background: #375a9b;
}
.c-sns-share .c-btn.twitter,
.c-sns-share .c-btn.twitter:hover {
  background: #1c99de;
}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 80px;
  min-width: 1150px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: transparent;
}
#page_front .l-header {
  transition: all 0.3s;
}
#page_front .l-header.header_style,
body.under .l-header {
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.l-header .inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.l-header .logo {
  width: 130px;
  height: 130px;
  background: url(../img/logo.svg) no-repeat center #fcc82e;
  background-size: 79%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
}
.l-header .header_nav {
  padding: 26px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 130px;
}
.l-header .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2%;
  margin-bottom: 14px;
}
.l-header .nav_list li {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #533c32;
  cursor: pointer;
  background: url(../img/arrow/arrow_right03.png) no-repeat center right;
  background-size: 6px 8px;
}
.l-header .nav_list li + li {
  margin-left: 34px;
}
.l-header .nav_list li a {
  display: block;
  padding-right: 10px;
  transition: opacity 0.3s;
  position: relative;
}
.l-header .nav_list li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #533c32;
  position: absolute;
  bottom: -2px;
  left: -1px;
  transition: width 0.3s;
}
.l-header .nav_list li a:hover::after,
.l-header .nav_list li.current a::after {
  width: 100%;
}
.l-header .nav_list.nav_btn li {
  color: #fff;
  background-image: none;
}
.l-header .nav_list.nav_btn li + li {
  margin: 0;
}
.l-header .nav_list.nav_btn li.online {
  margin-left: 10px;
}
.l-header .nav_list.nav_btn li a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-image: url(../img/icon/icon_login.svg);
  background-color: #ff8c44;
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 16px 18px;
  padding: 9px 18px 9px 40px;
}
.l-header .nav_list.nav_btn li a::after {
  content: none;
}
.l-header .nav_list.nav_btn li.online a {
  background-color: #533c32;
  background-image: url(../img/icon/icon_store.svg);
}
.l-header .nav_list.nav_btn li a:hover {
  opacity: 0.8;
}
/* --- drop item --- */
.l-header .nav_list .drop_item {
  position: relative;
  padding-right: 10px;
  background: none;
}
.l-header .nav_list .drop_item .drop_trigger {
  display: block;
  transition: all 0.3s;
}
.l-header .nav_list .drop_item .drop_trigger::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #533c32;
  position: absolute;
  bottom: -2px;
  left: -1px;
  transition: width 0.3s;
}
.l-header .nav_list .drop_item .drop_trigger:hover::before,
.l-header .nav_list .drop_item.current .drop_trigger::before,
.l-header .nav_list .drop_item .drop_trigger.is-active::before {
  width: 100%;
}
.l-header .nav_list .drop_item .drop_trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background: url(../img/arrow/arrow_right03.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.l-header .nav_list .drop_item .drop_trigger.is-active::after {
  -webkit-transform: translateY(-50%) rotate(270deg);
  -ms-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
}
.l-header .nav_list .menu_contents {
  display: none;
  position: absolute;
  top: 45px;
  left: -9%;
  width: 120%;
  padding: 16px;
  background: #533c32;
}
.l-header .nav_list .menu_contents li {
  margin: 0;
  color: #fff;
  background: url(../img/arrow/arrow_right04.png) no-repeat center right;
  background-size: 6px 8px;
}
.l-header .nav_list .menu_contents li + li {
  margin-top: 0.8em;
}
.l-header .nav_list .menu_contents li a {
  display: block;
  position: relative;
}
.l-header .nav_list .menu_contents li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: -1px;
  transition: width 0.3s;
}
.l-header .nav_list .menu_contents li a:hover::after,
.l-header .nav_list .menu_contents li.current a::after {
  width: 100%;
}
/* --- side btn --- */
.l-header .side_btn {
  width: 76px;
  height: 240px;
  border-radius: 4px 0px 0px 4px;
  background: #533c32;
  border: 1px solid #fcc82e;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  position: fixed;
  top: 23%;
  right: 0;
  z-index: 10;
  transition: all 0.4s;
}
.l-header .side_btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.l-header .side_btn a span {
  position: absolute;
  top: 48px;
  left: 14px;
  white-space: nowrap;
  background: url(../img/icon/icon_mail.svg) no-repeat top center;
  background-size: 20px 16px;
  padding-top: 28px;
}
.l-header .side_btn:hover {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 1080px) {
  .l-header {
    min-width: 900px;
  }
  .l-header .nav_list.nav_btn li a {
    width: 40px;
    height: 40px;
    overflow: hidden;
    background-position: center center;
    padding: 0;
    text-indent: 110%;
    white-space: nowrap;
  }
}
/* == footer ============================================== */
.l-footer {
  background: #533c32;
  color: #fff;
  padding-top: 40px;
}
.l-footer .inner {
  width: 90%;
  max-width: 1088px;
  margin: 0 auto;
}
.l-footer .f_logo {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-footer .f_logo img {
  margin: 0 auto;
}
.l-footer .address {
  text-align: center;
  margin-top: 3px;
}
.l-footer .address span + span {
  margin-left: 1em;
}
.l-footer .sns_list {
  text-align: center;
  margin-top: 28px;
}
.l-footer .sns_list li {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 6px;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.l-footer .sns_list li a {
  display: block;
  transition: opacity 0.4s;
}
.l-footer .sns_list li a:hover {
  opacity: 0.6;
}
.l-footer .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 37px;
}
.l-footer .footer_nav .nav_list {
  min-width: 248px;
}
.l-footer .footer_nav .nav_list li {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
  background: url(../img/icon/icon_beans.png) no-repeat left center;
  background-size: 18px 18px;
}
.l-footer .footer_nav .nav_list li + li {
  margin-top: 15px;
}
.l-footer .footer_nav .nav_list li::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  background: url(../img/arrow/arrow_right01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l-footer .footer_nav .nav_list li a {
  display: block;
  padding: 0 28px 0 22px;
  transition: opacity 0.4s;
}
.l-footer .footer_nav .nav_list li a:hover {
  opacity: 0.5;
}
.l-footer .copyright {
  background: #fcc82e;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #533c32;
  margin-top: 50px;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .l-footer .footer_nav .nav_list {
    min-width: 0;
  }
}

/*** truck anime *********************************/
.c-driving-truck {
  width: 100%;
  height: 100px;
  background-image: url(../img/bg/bg_town.png);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: auto 60px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.u-bg-fill + .c-driving-truck,
.u-bg-next + .c-driving-truck {
  background-color: #f4f0eb;
}
.c-driving-truck .truck {
  /* --- アニメーションありの場合 --- */
  /* width: 180px;
  height: 98px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation: drive-anime 12s linear infinite normal;
  animation: drive-anime 12s linear infinite normal; */
  /* --- アニメーションなしの場合 --- */
  width: 90%;
  max-width: 1088px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  /* --- 共通部分 --- */
  display: block;
  z-index: 1;
}
/* --- アニメーションなしの場合に必要 --- */
.c-driving-truck .truck .exterior {
  width: 180px;
  height: 98px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@-webkit-keyframes drive-anime {
  0% {
    left: -15%;
  }
  100% {
    left: 100%;
  }
}
@keyframes drive-anime {
  0% {
    left: -15%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes shake-anime {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes shake-anime {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(2deg);
  }
  40% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}

/*** pagetop *********************************/
.c-pagetop {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 60px;
  z-index: 20;
}
.c-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pagetop.png) no-repeat center;
  background-size: contain;
  transition: opacity 0.4s;
}
/* --- hover --- */
.c-pagetop a:hover {
  opacity: 0.8;
}

/* == frontpage ============================================== */
.block_front-top {
  width: 100%;
  height: 664px;
  background: #fcc82e;
  position: relative;
}
.block_front-top .l-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.block_front-top .mv_box {
  width: 90%;
  max-width: 834px;
  height: 350px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: translateY(142px);
  -ms-transform: translateY(142px);
  transform: translateY(142px);
}
.block_front-top .mv_box .mv_text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.block_front-top .copy_box {
  width: 100%;
  position: absolute;
  bottom: 46px;
  left: 0;
  text-align: center;
}
.block_front-top .copy_box .txt .para {
  display: inline-block;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #533c32;
  white-space: nowrap;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(60%, #fff)
  );
  background: -o-linear-gradient(transparent 60%, #fff 60%);
  background: linear-gradient(transparent 60%, #fff 60%);
}
.block_front-top .copy_box .txt--1 .para {
  padding: 0 10px 0 16px;
}
.block_front-top .scroll_down {
  width: 72px;
  position: absolute;
  bottom: -84px;
  left: 8%;
}
.block_front-top .scroll_down img {
  width: 72px;
}

/*** key visual ************************/
.loading-on.flag {
  overflow: hidden;
}
.loading-on .l-header {
  top: -120px;
}
.loading-on .block_front-top {
  height: 100vh;
}
.loading-on .block_front-top .mv_box {
  opacity: 0;
  visibility: hidden;
}
.loading-on .block_front-top .scroll_down {
  bottom: -200px;
  opacity: 0;
  visibility: hidden;
}
.loading-on .block_front-top .copy_box {
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.loading-on .block_front-top .copy_box .txt {
  position: relative;
}
.loading-on .block_front-top .copy_box .txt--1 {
  z-index: 3;
}
.loading-on .block_front-top .copy_box .txt--2 {
  z-index: 1;
}
.loading-on .block_front-top .copy_box .track {
  display: block;
  width: 240px;
  height: 130px;
  background: url(../img/track.svg) no-repeat bottom left;
  background-size: 240px 130px;
  position: absolute;
  left: -250px;
  transition: left 3s linear;
}
.loading-on .block_front-top .copy_box .track--1 {
  bottom: 42px;
  z-index: 6;
}
.loading-on .block_front-top .copy_box .track--2 {
  bottom: 0px;
  z-index: 4;
}
.loading-on .block_front-top .copy_box .track__bg {
  display: block;
  width: 114%;
  height: 130px;
  background: #fcc82e;
  position: absolute;
  left: -6%;
  transition: left 3s linear;
}
.loading-on .block_front-top .copy_box .track__bg--1 {
  bottom: 42px;
  z-index: 5;
}
.loading-on .block_front-top .copy_box .track__bg--2 {
  bottom: -1px;
  z-index: 2;
}
.loading-on .block_front-top {
  transition: height 0.6s;
}
.loading-on .block_front-top .copy_box {
  transition: all 0.6s;
}
.loading-on .block_front-top .mv_box {
  transition: all 1.6s;
}
#page_front.loading-on .l-header {
  transition: all 0.8s;
}
.loading-on .block_front-top .scroll_down {
  transition: all 0.6s;
}
.loading-on .l-header .side_btn {
  right: -76px;
}
/* --- active --- */
.loading-on .block_front-top .copy_box .track__bg.is-active {
  left: 114%;
}
.loading-on .block_front-top .copy_box .track.is-active {
  left: 100%;
}
.loading-on .block_front-top.is-active {
  height: 664px;
}
.loading-on .block_front-top .copy_box.is-active {
  bottom: 46px;
  transform: none;
}
.loading-on .block_front-top .mv_box.is-active {
  opacity: 1;
  visibility: visible;
}
.loading-on .l-header.is-active {
  top: 0;
}
.loading-on .block_front-top .scroll_down.is-active {
  bottom: -84px;
  opacity: 1;
  visibility: visible;
}
.loading-on .l-header.is-active .side_btn {
  right: 0;
}

/* ---------- block_front-important ---------- */
.block_front-important {
  position: relative;
  z-index: 1;
}
.block_front-important .important_box {
  width: 600px;
  border-radius: 4px;
  background: #533c32;
  border: 2px solid #533c32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 16px 0 0 auto;
}
.block_front-important .important_box .head_title {
  display: table;
  width: 118px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 22px;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 3px 0 0 0;
}
.block_front-important .important_box .head_title::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/icon/icon_attention.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -12px;
  left: -13px;
  -webkit-animation: scale-anime 1.2s linear infinite normal;
  animation: scale-anime 1.2s linear infinite normal;
}
.block_front-important .important_box .head_title span {
  display: table-cell;
  vertical-align: middle;
}
@-webkit-keyframes scale-anime {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-anime {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.block_front-important .list_important {
  width: 476px;
  background: #fff;
  padding: 14px 16px 13px 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.block_front-important .list_important li {
  font-size: 1.4rem;
  color: #512509;
  background: url(../img/arrow/arrow_right02.png) no-repeat right center;
  background-size: 6px 12px;
}
.block_front-important .list_important li .title {
  display: inline;
}
.block_front-important .list_important li a {
  text-decoration: underline;
  display: block;
  transition: color 0.3s;
}
.block_front-important .list_important li a:hover {
  color: #fcc82e;
}

/* ---------- block_front-bnr ---------- */
.block_front-bnr {
  margin-top: 112px;
  overflow: hidden;
}
.block_front-bnr .l-inner {
  width: 100%;
  max-width: 100%;
}
.block_front-bnr .bnr_slide .bnr_box {
  width: 818px;
  height: 348px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.block_front-bnr .bnr_slide .bnr_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.block_front-bnr .bnr_slide .bnr_box a {
  display: block;
  width: 100%;
  height: 100%;
  background: #eaeaea;
  transition: opacity 0.4s;
}
.block_front-bnr .bnr_slide .bnr_box a:hover {
  opacity: 0.7;
}
.block_front-bnr .p-slide-prev {
  left: calc(50% - 498px);
}
.block_front-bnr .p-slide-next {
  right: calc(50% - 498px);
}

/* ---------- block_front-products ---------- */
.block_front-products {
  background: url(../img/bg/bg_paper.png) repeat-y;
  background-size: 100%;
  margin-top: 130px;
  padding-bottom: 85px;
}
.block_front-products .l-inner {
  padding-top: 10px;
}
.block_front-products .c-heading {
  margin-top: -82px;
}
.block_front-products .c-tab-select {
  margin: 40px auto 28px;
}
.block_front-products .c-btn {
  margin-top: 64px;
}
.block_front-products .c-online-btn {
  margin-top: 64px;
}

/* ---------- block_front-recipe ---------- */
.block_front-recipe {
  margin-top: 116px;
  position: relative;
}
.block_front-recipe::before {
  content: "";
  display: block;
  width: 56%;
  height: calc(100% - 72px);
  position: absolute;
  top: 72px;
  left: 0;
  z-index: -1;
  background: rgba(234, 234, 234, 0.4);
}
.block_front-recipe .l-inner {
  max-width: 1190px;
  padding: 0 33px 0 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block_front-recipe .heading_box {
  width: 48%;
  max-width: 530px;
  position: relative;
}
.block_front-recipe .heading_box::after {
  content: "";
  display: block;
  width: 156px;
  height: 150px;
  background: url(../img/beans/beans01_pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  right: 30px;
}
.block_front-recipe .heading_box .heading-img {
  margin-bottom: 20px;
}
.block_front-recipe .heading_box .c-heading {
  padding-left: 30px;
}
.block_front-recipe .slide_box {
  width: 48%;
  max-width: 562px;
}
.block_front-recipe .p-slide-prev {
  left: -30px;
}
.block_front-recipe .p-slide-next {
  right: -30px;
}
.block_front-recipe .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .block_front-recipe .heading_box {
    width: 100%;
    max-width: 100%;
  }
  .block_front-recipe .slide_box {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}

/* ---------- block_front-catalog ---------- */
.block_front-catalog {
  margin-top: 90px;
}
.block_front-catalog .l-inner {
  width: 100%;
  max-width: 1366px;
}
/* --- list catalog --- */
.block_front-catalog .list-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.block_front-catalog .list-catalog li {
  width: 50%;
  height: 400px;
  background: #533c32;
  overflow: hidden;
  position: relative;
}
.block_front-catalog .list-catalog li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/catalog01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* opacity: 0.4; */
}
.block_front-catalog .list-catalog li:nth-of-type(2):before {
  background-image: url(../img/top/catalog02.jpg);
}
.block_front-catalog .list-catalog li a {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.block_front-catalog .list-catalog .u-wave::after {
  z-index: -1;
}
.block_front-catalog .list-catalog .text_box {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  transition: transform 0.6s;
}
.block_front-catalog .list-catalog .c-heading::after {
  background: #fff;
  margin: 14px auto 30px;
}
.block_front-catalog .list-catalog .desc {
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
}
.block_front-catalog .list-catalog .c-more {
  position: static;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  margin-top: 30px;
}
/* --- hover --- */
.block_front-catalog .list-catalog a:hover .text_box {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* ---------- block_front-about ---------- */
.block_front-about {
  margin-top: 80px;
  padding-top: 90px;
  overflow: hidden;
}
.block_front-about .heading_box {
  background: url(../img/bg/bg_paper.png) repeat-y;
  background-size: 100%;
  text-align: center;
  padding: 40px 40px 30px;
}
.block_front-about .heading_box .heading-img {
  margin: -124px 0 0;
}
.block_front-about .heading_box .text_box {
  width: 600px;
  margin: 10px auto 0;
  position: relative;
}
.block_front-about .heading_box .text_box::before {
  content: "";
  display: block;
  width: 196px;
  height: 234px;
  background: url(../img/beans/beans02_pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -210px;
}
.block_front-about .heading_box .text_box::after {
  content: "";
  display: block;
  width: 190px;
  height: 176px;
  background: url(../img/beans/beans03_pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 40px;
  right: -180px;
}
/* --- list about --- */
.block_front-about .list-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 80px;
}
.block_front-about .list-about li {
  width: 50%;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 1px solid #eaeaea;
}
.block_front-about .list-about li:first-of-type {
  width: 100%;
  border-left: 0;
}
.block_front-about .list-about li:nth-of-type(2n) {
  border-left: 0;
}
.block_front-about .list-about li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 20px 20px;
  position: relative;
}
.block_front-about .list-about .title {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #533c32;
  padding-left: 60px;
  margin-bottom: 18px;
  position: relative;
}
.block_front-about .list-about .title::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eaeaea;
  background-image: url(../img/icon/icon01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s;
}
.block_front-about .list-about .img_box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  margin-top: 28px;
}
.block_front-about .list-about .img_box img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
/* -=-=- icon type -=-=- */
.block_front-about .list-about .title.icon02::before {
  background-image: url(../img/icon/icon02.png);
}
.block_front-about .list-about .title.icon03::before {
  background-image: url(../img/icon/icon03.png);
}
.block_front-about .list-about .title.icon04::before {
  background-image: url(../img/icon/icon04.png);
}
.block_front-about .list-about .title.icon05::before {
  background-image: url(../img/icon/icon05.png);
}
/* --- hover --- */
.block_front-about .list-about a:hover .title::before {
  background-color: #fcc800;
}
.block_front-about .list-about a:hover .img_box img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ---------- block_front-news ---------- */
.block_front-news {
  padding: 110px 0 150px;
  overflow: hidden;
}
.block_front-news .l-inner {
  max-width: 980px;
}
.block_front-news .heading_box .l-inner {
  position: relative;
  z-index: 3;
}
.block_front-news .heading_box .heading-img {
  position: relative;
  z-index: 1;
}
.block_front-news .heading_box .heading-img::before {
  content: "";
  display: block;
  width: 306px;
  height: 250px;
  background: url(../img/beans/beans04_pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -16px;
  right: -40px;
}
.block_front-news .contents_box {
  padding: 176px 0 80px;
  margin: -177px 0 0;
  position: relative;
  z-index: 1;
}
.block_front-news .contents_box::before {
  content: "";
  display: block;
  width: 458px;
  height: 368px;
  background: url(../img/bg/bg_dots01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -170px;
  right: -9%;
}
.block_front-news .contents_box::after {
  content: "";
  display: block;
  width: 590px;
  height: 550px;
  background: url(../img/bg/bg_dots02.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -138px;
  left: -9%;
}
.block_front-news .c-btn {
  margin-top: 80px;
}
/* ---------- block_news-detail ---------- */
.recommend-bnr-area {
  margin-top: 40px;
}
.block_detail_news .l-inner {
  max-width: 980px;
}
.recommend-bnr-area .l-inner {
  max-width: 980px;
  /* margin-bottom: 80px; */
}

.recommend-bnr-area.u-bg::before {
  top: 50%;
}
.recommend-content {
  padding-bottom: 80px;
}
.recommend-content .title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding-bottom: 4px;
  padding-top: 40px;
}
.recommend-content .goods-wrap {
  display: flex;
  gap: 4.44%;
  align-items: flex-start;
}
.recommend-content .btn-area ul {
  width: 90%;
  max-width: 900px;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}
.recommend-content .btn-area ul li {
  width: 48.9%;
}
.recommend-content .btn-area ul li a {
  transition: 0.3s;
}
.recommend-content .btn-area ul li a:hover {
  opacity: 0.7;
}
.high-recommend-area {
  /* display: flex; */
  /* justify-content: space-between; */
  width: 41.78%;
}
.high-recommend-img {
  margin: 0 0 40px;
}
.high-recommend-img a {
  transition: 0.3s;
}
.high-recommend-img a:hover {
  opacity: 0.7;
}
.high-recommend-txt .c-heading {
  font-size: 2.4rem;
  letter-spacing: 0;
}
.unit {
  font-size: 1.6rem;
}
.high-recommend-price {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.product-details {
  font-size: 1.4rem;
  color: #533c32;
  text-align: right;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
}
.product-details::after {
  content: "";
  display: inline-block;
  /* vertical-align: middle; */
  width: 6px;
  height: 11px;
  background: url(../img/arrow/arrow_right02.png) no-repeat center top;
  background-size: 6px 11px;
  margin-left: 24px;
}
.product-details a {
  transition: 0.5s;
}
.product-details a:hover {
  opacity: 0.7;
}

/* stuff */
.stuff-comment {
  background-color: #e3ded8;
  padding: 40px;
  border-radius: 24px;
  margin: 0 auto;
  position: relative;
  width: 53.78%;
}
.stuff-comment::before {
  content: "";
  display: block;
  background-image: url(../img/news-details/stuff_comment.svg);
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 320px;
  height: 40px;
}
.stuff-affiliation {
  font-weight: 700;
}
.stuff-illust-block {
  margin-left: 20px;
  margin-bottom: 40px;
  display: flex;
  gap: 10px;
  align-items: end;
}
.stuff-illust {
  max-width: 147px;
}

/* movie */
.recommend-movie-area {
  background-color: #f4f0eb;
  padding: 10px 0 80px;
}
.recommend-movie-block {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.recommend-movie-block .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.recommend-movie-block .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* other-contents */
.other-recommend.u-bg::before {
  height: calc(100% + 252px);
}
.other-recommend .l-inner {
  max-width: 980px;
}
.other-recommend .heading {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  background-color: #fff;
  padding: 8px 30px 9px;
}
.other-block {
  margin-top: 40px;
  min-height: inherit;
}
.recipe-recommend {
  padding: 40px 0px 80px;
}
.other-products-list {
  padding: 0 10px;
  display: flex;
}
.c-product.recommend {
  width: 22.45%;
  margin: 0 1.4% 15px;
}
.c-product.recommend:nth-child(4n) {
  margin-right: 0px;
}
.c-product.recommend:last-child {
  margin-right: 0px;
}
.c-product__title.detail {
  height: auto;
}
.other-contents {
  margin-top: 12px;
}
.c-product__title.detail_recipe {
  height: auto;
  min-height: inherit;
  margin-bottom: 12px;
}
@media screen and (max-width: 870px) {
  .c-product__title.detail_recipe {
    min-height: 50px;
  }
}
/* truck bg */
.u-bg-fill + .c-driving-truck,
.u-bg-next + .news-details-bg {
  background-color: #fff;
}
/* ---------- block_front-insta ---------- */
.block_front-insta {
  margin: 0 auto 80px;
}
.block_front-insta .list_insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 28px;
}
.block_front-insta .list_insta li {
  width: 22.06%;
  margin: 0 3.92% 3.92% 0;
}
.block_front-insta .list_insta li:nth-of-type(4n) {
  margin-right: 0;
}
.block_front-insta .list_insta li a {
  display: block;
  transition: opacity 0.3s;
}
.block_front-insta .list_insta .img_box {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}
.block_front-insta .list_insta .img_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
/* --- hover --- */
.block_front-insta .list_insta li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 991px) {
  .block_front-insta .list_insta li {
    width: 48.593%;
    margin: 0 2.81% 4% 0;
  }
  .block_front-insta .list_insta li:nth-of-type(2n) {
    margin-right: 0;
  }
}

/* == underpage ============================================== */
/* ======
page-name #活用レシピ
======*/
/* ---------- block_recipe ---------- */
.block_recipe {
  padding-bottom: 100px;
}
.block_recipe .c-tab-select {
  margin: 0 auto;
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}
.block_recipe .p-tab-item {
  max-width: 960px;
}

/* ======
page-name #お知らせ
======*/
/* ---------- block_news ---------- */
.block_news {
  padding-bottom: 40px;
}
.block_news .c-heading {
  margin-bottom: 60px;
}
.block_news .c-list-news {
  max-width: 980px;
  margin: 40px auto;
}
.block_news.u-bg::before {
  top: 160px;
}
.block_news .c-btn {
  margin-top: 40px;
}

/* ======
page-name #服部コーヒーフーズとは
======*/
/* ---------- block_about-greeting ---------- */
.block_about-greeting {
  padding-top: 100px;
}
.block_about-greeting.u-bg::before {
  height: 80%;
}
.block_about-greeting::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url(../img/bg/bg_wave.png) no-repeat bottom center;
  background-size: cover;
  position: absolute;
  top: 80%;
  left: 0;
  z-index: -1;
}
.block_about-greeting .title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #533c32;
  margin-top: 40px;
}
.block_about-greeting .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
/* ------ */
.block_about-greeting .text_box {
  max-width: 620px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 40px;
  line-height: 1.75;
}
.block_about-greeting .text_box p + p {
  margin-top: 2em;
}
/* ------ */
.block_about-greeting .img_box {
  width: 346px;
}
.block_about-greeting .img_box img {
  box-shadow: 25px 25px 0 #fcc82e;
  margin: 30px 0;
}
.block_about-greeting .img_box .person {
  font-size: 1.2rem;
  color: #333;
}
.block_about-greeting .img_box .person span {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 0.8em;
}

/* ---------- block_about-hcf ---------- */
.block_about-hcf {
  margin-top: 120px;
}
.block_about-hcf .c-heading {
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

/* ======
page-name #会社概要
======*/
/* ---------- block_company ---------- */
.block_company {
  padding: 80px 0;
}
.block_company .l-inner {
  max-width: 900px;
}
.block_company .c-tab-filter {
  margin-bottom: 40px;
}
/* --- about --- */
.block_company .dl_style {
  max-width: 792px;
  margin: 0 auto;
  border-top: 1px solid #6f5246;
  border-bottom: 1px solid #6f5246;
  padding: 10px 0;
}
.block_company .dl_style dt {
  width: 170px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #533c32;
  padding: 12px 0px 12px 40px;
  float: left;
  clear: left;
}
.block_company .dl_style dd {
  padding: 12px 12px 12px 190px;
  border-bottom: 1px dashed #6f5246;
}
.block_company .dl_style dd:last-of-type {
  border: 0;
}
.block_company .dl_style .position {
  display: inline-block;
  width: 300px;
}
.block_company .dl_style .name {
  display: inline-block;
}
/* --- history --- */
.block_company .history {
  max-width: 806px;
  padding-left: 94px;
  margin: 90px auto 0;
  position: relative;
}
.block_company .history::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #fcc82e;
  position: absolute;
  top: 0px;
  left: 32px;
}
.block_company .history .period {
  padding: 20px 40px 30px 0;
  margin: 30px 0;
  position: relative;
}
.block_company .history .period::before {
  content: "昭和";
  display: block;
  width: 68px;
  height: 68px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #6f5246;
  line-height: 68px;
  text-align: center;
  background: #fcc82e;
  border-radius: 50%;
  position: absolute;
  top: -32px;
  left: -94px;
}
.block_company .history .period.heisei::before {
  content: "平成";
}
.block_company .history .period + .period {
  margin-top: 100px;
}
.block_company .history .period:first-of-type {
  border-top: 1px solid #6f5246;
}
.block_company .history .period:last-of-type {
  border-bottom: 1px solid #6f5246;
}
.block_company .history .year {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #533c32;
  margin: 20px 0 6px;
  position: relative;
  overflow: hidden;
}
.block_company .history .year::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #6f5246;
  position: absolute;
  top: 14px;
  left: 90px;
}
.block_company .dl_history dt {
  width: 80px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #533c32;
  padding: 6px 0;
  text-align: center;
  float: left;
  clear: left;
}
.block_company .dl_history dd {
  padding: 6px 0 6px 90px;
}

/* ======
page-name #事業所紹介
======*/
/* ---------- block_office-top ---------- */
.block_office-top .l-inner {
  max-width: 1030px;
}
.block_office-top .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 40px;
}
.block_office-top .text_box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 3% 0 6%;
}
.block_office-top .text_box .title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6f5246;
  margin-bottom: 20px;
}
.block_office-top .img_box {
  width: 260px;
}

/* ---------- block_office ---------- */
.block_office {
  margin-top: 80px;
  padding-bottom: 80px;
}
.block_office.u-bg::before {
  top: 134px;
}
.block_office .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* ------ */
.block_office .search_area {
  width: 30.9%;
  margin: -40px 0 0;
}
.block_office .search_box {
  background: #fcc82e;
  color: #6f5246;
  letter-spacing: 0.1em;
}
.block_office .search_box .search_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #533c32;
  padding: 6px 10px;
}
.block_office .search_box .list_search .heading {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  border-left: 4px solid #6f5246;
  padding-left: 20px;
  margin: 32px 0 16px;
}
.block_office .search_box .list_anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block_office .search_box .list_anchor li {
  font-size: 1.4rem;
  font-weight: 500;
}
.block_office .search_box .list_anchor li a {
  transition: opacity 0.3s;
}
.block_office .search_box .list_anchor li span {
  background: url(../img/arrow/arrow_right03.png) no-repeat center left;
  background-size: 6px 8px;
  padding-left: 12px;
}
.block_office .search_box.local {
  padding: 0px 0 40px;
  margin-bottom: 20px;
}
.block_office .search_box.local .list_anchor li {
  width: 33.3%;
  padding: 0px 10px 0 20px;
}
.block_office .search_box.logistics .list_anchor {
  padding: 24px;
}
@media screen and (max-width: 991px) {
  .block_office .search_box.local .list_anchor li {
    width: 50%;
  }
}
.block_office .contents_area {
  width: 65.5%;
}
.block_office .title {
  width: 65.5%;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding-bottom: 4px;
  margin: 0 0 0 auto;
}
/* --- hover --- */
.block_office .search_box .list_anchor li a:hover {
  opacity: 0.6;
}

/* ---------- block_logistics ---------- */
.block_logistics {
  background: #fff;
  padding: 80px 0;
}
.block_logistics .heading {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #743920;
  border-bottom: 2px solid #533c32;
  padding-bottom: 4px;
  margin-bottom: 24px;
}
/* ------ */
.block_logistics .logistics_system {
  margin-top: 50px;
}
.block_logistics .logistics_system p {
  color: #333;
  padding: 0 8px;
}
.block_logistics .logistics_system img {
  display: block;
  margin: 56px auto 0;
}
/* ------ */
.block_logistics .logistics_merit {
  margin-top: 80px;
}
.block_logistics .logistics_merit .merit_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_logistics .logistics_merit .merit_set {
  width: 31%;
}
.block_logistics .logistics_merit .merit_set .title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #533c32;
  border-radius: 20px;
  background: #fcc82e;
  padding: 6px 10px;
  margin-bottom: 16px;
}
.block_logistics .logistics_merit .merit_set ul {
  padding: 0 10px;
}
.block_logistics .logistics_merit .merit_set ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.block_logistics .logistics_merit .merit_set ul li::before {
  content: "・";
}
.block_logistics .logistics_merit .c-btn {
  margin-top: 80px;
}

/* ======
page-name #自社工場
======*/
/* ---------- block_factory ---------- */
.block_factory.u-bg::before {
  height: 90%;
}
.block_factory::after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url(../img/bg/bg_wave.png) no-repeat bottom center;
  background-size: cover;
  position: absolute;
  top: 90%;
  left: 0;
  z-index: -1;
}
.block_factory {
  padding-top: 80px;
}
.block_factory .factory_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #333;
}
.block_factory .factory_set + .factory_set {
  margin-top: 80px;
}
.block_factory .factory_set .text_box {
  width: 52%;
}
.block_factory .factory_set .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.block_factory .factory_set .sub_title {
  font-weight: 500;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding-bottom: 4px;
  margin: 24px 0 10px;
}
.block_factory .factory_set .video_box,
.block_factory .factory_set .img_box {
  width: 43.2%;
}
.block_factory .factory_set .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.block_factory .factory_set .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ======
page-name #直営店一覧
======*/
/* ---------- block_store ---------- */
.block_store {
  padding-bottom: 70px;
}
.block_store .l-inner {
  max-width: 960px;
}
.block_store.u-bg::before {
  top: 200px;
}
.block_store .c-list-card {
  margin: 40px auto 80px;
}

/* ======
page-name #採用情報
======*/
/* ---------- block_recruit ---------- */
.block_recruit {
  padding: 80px 0;
}
.block_recruit.u-bg::before {
  height: 60%;
}
.block_recruit.u-bg .l-inner {
  max-width: 1048px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_recruit .recruit_set {
  width: 48%;
  max-width: 504px;
  background: #fcc82e;
  color: #533c32;
  text-align: center;
  position: relative;
}
.block_recruit .recruit_set a {
  display: block;
  padding: 40px 20px 30px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}
.block_recruit .recruit_set::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/recruit/beans01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 16%;
  right: 14%;
  transition: opacity 0.3s;
}
.block_recruit .recruit_set::after {
  content: "";
  display: block;
  width: 64px;
  height: 50px;
  background-image: url(../img/recruit/beans02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 8%;
  left: 6%;
  transition: opacity 0.3s;
}
.block_recruit .recruit_set .title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.block_recruit .recruit_set .more {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 26px;
}
.block_recruit .recruit_set.midway {
  color: #fff;
  background: #6f5246;
}
.block_recruit .recruit_set.midway::before {
  background-image: url(../img/recruit/beans03.png);
}
.block_recruit .recruit_set.midway::after {
  background-image: url(../img/recruit/beans04.png);
}
/* --- hover --- */
.block_recruit .recruit_set a:hover {
  opacity: 0.6;
}
.block_recruit .recruit_set:hover::before,
.block_recruit .recruit_set:hover::after {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .block_recruit.u-bg .l-inner {
    display: block;
  }
  .block_recruit .recruit_set {
    width: 100%;
    margin: 0 auto;
  }
  .block_recruit .recruit_set + .recruit_set {
    margin-top: 40px;
  }
}

/* ======
page-name #Eat-ing
======*/
/* ---------- block_eating ---------- */
.block_eating {
  padding: 100px 0;
}
.block_eating .l-inner {
  max-width: 960px;
}

/* ======
page-name #HATTORI通信
======*/
/* ---------- block_eating ---------- */
.block_magazine {
  padding: 100px 0;
}
.block_magazine .l-inner {
  max-width: 960px;
}

/* ======
page-name #お問い合わせ
======*/
/* ---------- block_contact-top ---------- */
.block_contact-top {
  text-align: center;
  padding-bottom: 80px;
}

/* ---------- block_contact ---------- */
.block_contact {
  padding: 80px 0;
}
.block_contact .l-inner {
  max-width: 752px;
}
.contact-form .form_set {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #c1b8ad;
}
.contact-form .form_set dt {
  width: 30%;
  font-weight: 700;
  padding-left: 50px;
  position: relative;
}
.contact-form .form_set dt label {
  font-weight: 700;
}
.contact-form .form_set dt .required::before {
  content: "必須";
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 4px;
  background: #db2525;
  padding: 4px 6px 5px;
  position: absolute;
  top: 3px;
  left: 0;
}
.contact-form .form_set dd {
  width: 68%;
  font-size: 1.4rem;
}
.contact-form .form_set input,
.contact-form .form_set textarea {
  width: 100%;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #c1b8ad;
  padding: 6px 10px;
}
/* --- お名前 / お名前カナ --- */
.contact-form .form_name input,
.contact-form .form_kana input,
.contact-form .form_name .wpcf7-form-control-wrap,
.contact-form .form_kana .wpcf7-form-control-wrap {
  width: 120px;
}
.contact-form .form_set .name_input {
  display: inline-block;
  vertical-align: top;
}
.contact-form .form_set .name_input + .name_input {
  margin-left: 20px;
}
.contact-form .form_set .name_input span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.contact-form .form_set .name_input .wpcf7-form-control-wrap {
  display: inline;
  margin: 0;
}
.contact-form .form_set .name_input::after {
  content: "例）服部";
  display: block;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 4px 0 0 18px;
}
.contact-form .form_kana .name_input::after {
  margin: 4px 0 0 32px;
}
.contact-form .form_name .lastname::after {
  content: "例）太郎";
}
.contact-form .form_kana .fastname::after {
  content: "例）ハットリ";
}
.contact-form .form_kana .lastname::after {
  content: "例）タロウ";
}
/* --- ラジオボタン --- */
.contact-form .form_type .list_radio {
  margin: -5px 0;
}
.contact-form .form_type .list_radio li,
.contact-form .wpcf7-radio .wpcf7-list-item {
  width: 200px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 40px 10px 0;
}
.contact-form .form_type .list_radio li:nth-of-type(2n) {
  margin-left: 0;
}
.contact-form .form_type input[type="radio"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.contact-form .form_type .radio-label,
.contact-form .wpcf7-radio .wpcf7-list-item-label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.contact-form .form_type .radio-label::before,
.contact-form .wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #c1b8ad;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
}
.contact-form .form_type .radio-label::after,
.contact-form .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fcc82e;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 4px;
  opacity: 0;
  -webkit-transform: scale3d(0.3, 0.3, 1);
  -ms-transform: scale3d(0.3, 0.3, 1);
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.contact-form .form_type input[type="radio"]:checked + .radio-label::after,
.contact-form
  .form_type
  input[type="radio"]:checked
  + .wpcf7-list-item-label:after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/* --- チェックボックス  --- */
.contact-form .form_check input[type="checkbox"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.contact-form .form_check .check-label,
.contact-form .wpcf7-checkbox .wpcf7-list-item-label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.contact-form .form_check .check-label::before,
.contact-form .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #c1b8ad;
  position: absolute;
  top: -0px;
  left: 0;
}
.contact-form .form_check .check-label::after,
.contact-form .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border-right: 3px solid #fcc82e;
  border-bottom: 3px solid #fcc82e;
  position: absolute;
  top: 4px;
  left: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}
.contact-form .form_check input[type="checkbox"]:checked + .check-label::after,
.contact-form
  .form_check
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label:after {
  opacity: 1;
}
/* --- メールアドレス --- */
.contact-form .form_mail dd::after {
  content: "例）sample@hattori.com";
  display: block;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 4px 0 0;
}
/* --- 電話番号 --- */
.contact-form .form_tel input {
  width: 80px;
}
.contact-form .form_tel dd span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
}
.contact-form .form_tel dd::after {
  content: "例）012-3456-7890";
  display: block;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 4px 0 0;
}
/* --- お問い合わせ内容 --- */
.contact-form .form_text p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-form .form_text p span {
  display: block;
  font-size: 10px;
}
/* --- 承認同意 --- */
.contact-form .from_agree {
  font-weight: 500;
  padding: 12px 0;
}
.contact-form .from_agree a {
  font-weight: 700;
  color: #ff8c44;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact-form .from_agree a:hover {
  opacity: 0.6;
  text-decoration: none;
}
/* --- 送信ボタン --- */
.contact-form .c-btn {
  margin-top: 80px;
}
.contact-form .submit_btn {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  background: transparent;
}
.contact-form .submit_btn::after {
  content: "";
  display: block;
  width: 850px;
  height: 100%;
  background: url(../img/bg/btn_bg01.png) no-repeat left bottom -28px;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease-in;
}
.contact-form .submit_btn .wpcf7-submit {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 20px;
  border: none;
  outline: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.c-btn .submit_btn:hover::after {
  left: -580px;
}
/* --- 入力中 --- */
.contact-form dd input:focus,
.contact-form dd textarea:focus {
  border: 1px solid #a1d8e6;
}
/* --- 入力後 --- */
.contact-form dd input.is-done,
.contact-form dd textarea.is-done {
  border: 1px solid #c1b8ad;
}
/* --- validation error --- */
.contact-form .c-error-txt {
  font-size: 1.2rem;
  font-weight: 400;
  color: #c90014;
}
.contact-form .c-error-txt .is-error:nth-of-type(n + 2) {
  display: none !important;
}
.contact-form .c-error-txt span {
  margin: 0 !important;
}
.contact-form dd input.is-error,
.contact-form dd textarea.is-error {
  border: 1px solid #c90014;
  background: url(../img/icon-error.svg) no-repeat center right 10px #fff5f0;
  background-size: 16px 16px;
}
.contact-form .form_name .name_input .c-error-txt {
  padding: 0 0 0 18px;
}
.contact-form .form_kana .name_input .c-error-txt {
  padding: 0 0 0 32px;
}
.contact-form .form_tel .c-error-txt span {
  font-size: 1.2rem;
}
/* --- wpcf7のメッセージ、ローディング非表示 --- */
.contact-form .wpcf7-not-valid-tip,
.contact-form .wpcf7-response-output,
.contact-form .wpcf7-spinner {
  display: none !important;
}

/* ======
page-name #送信完了
======*/
/* ---------- block_sendcompete ---------- */
.block_sendcompete {
  text-align: center;
  padding-bottom: 80px;
}
.block_sendcompete .c-btn {
  margin-top: 80px;
}

/* ======
page-name #詳細ページ
======*/
/* ---------- block_detail ---------- */
.block_detail .l-inner {
  max-width: 900px;
}
.block_detail .entry-header + .entry-content {
  margin-top: 60px;
  padding-top: 60px;
}
.block_detail .entry-content {
  padding: 0 0 90px;
}
.block_detail .entry-content .c-btn {
  margin-top: 80px;
}
.block_detail .entry-mv.u-bg::before {
  top: 50%;
}
.block_detail .entry-mv {
  padding: 40px 0;
}
.block_detail .entry-mv .img_box {
  width: 52%;
  max-width: 720px;
  padding-top: 26%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.block_detail .entry-mv .img_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.block_detail .entry-mv .video_box {
  width: 48%;
  max-width: 660px;
  margin: 0 auto;
  /* background-color: #000; */
}
.block_detail .entry-mv .video_box .video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.block_detail .entry-mv .video_box .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.block_detail .entry-mv .video_box .video video,
.block_detail .entry-mv .video_box .video img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.block_detail .p-article-products .l-inner {
  max-width: 806px;
}

/* ---------- block_detail--recipe ---------- */
.block_detail--recipe .title_style {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  text-align: center;
  background: #fff;
  border-radius: 20.5px;
  padding: 6px;
  margin: 0 0 24px;
}
/* --- 調理時間 --- */
.block_detail--recipe .cooking-time {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #6f5246;
  background: url(../img/icon/icon_timer.png) no-repeat center left;
  background-size: 48px 48px;
  padding: 1em 0 1em 64px;
  margin: 20px 0;
}
/* --- 使っている商品 --- */
.block_detail--recipe .recipe_product {
  margin: 40px 0 0;
}
.block_detail--recipe .recipe_product .list_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.1%;
}
.block_detail--recipe .recipe_product .list_product li {
  width: 17.8%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  margin: 1.1%;
}
.block_detail--recipe .recipe_product .list_product a {
  display: block;
  text-decoration: underline;
  color: #fe8c44;
  transition: opacity 0.3s;
}
.block_detail--recipe .recipe_product .list_product .img_box {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.block_detail--recipe .recipe_product .list_product .img_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
/* --- hover --- */
.block_detail--recipe .recipe_product .list_product a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* --- 材料 --- */
.block_detail--recipe .recipe_material {
  background: #fff;
  margin: 40px 0 0;
}
.block_detail--recipe .recipe_material .title {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  background: #533c32;
  padding: 6px;
}
.block_detail--recipe .recipe_material .dl_material {
  padding: 10px 30px;
  font-weight: 500;
  line-height: 1.75;
  color: #6f5246;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_detail--recipe .recipe_material .dl_material a {
  text-decoration: underline;
  color: #fe8c44;
}
.block_detail--recipe .recipe_material .dl_material dt {
  width: 76%;
  padding: 10px 0 10px 20px;
  border-bottom: 1px dashed rgba(111, 82, 70, 0.2);
}
.block_detail--recipe .recipe_material .dl_material dd {
  width: 24%;
  padding: 10px 20px 10px 0;
  text-align: right;
  border-bottom: 1px dashed rgba(111, 82, 70, 0.2);
}
.block_detail--recipe .recipe_material .dl_material dt:last-of-type,
.block_detail--recipe .recipe_material .dl_material dd:last-of-type {
  border: 0;
}
/* --- hover --- */
.block_detail--recipe .recipe_material .dl_material a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* --- 作り方 --- */
.block_detail--recipe .recipe_make {
  margin: 64px 0 0;
}
.block_detail--recipe .recipe_make .u-h2-style {
  margin: 0 0 10px;
}
.block_detail--recipe .recipe_make .list_make {
  counter-reset: num;
}
.block_detail--recipe .recipe_make .list_make li {
  line-height: 1.5;
  padding: 12px 0 12px 38px;
  border-bottom: 1px dashed rgba(111, 82, 70, 0.2);
  position: relative;
}
.block_detail--recipe .recipe_make .list_make li::before {
  counter-increment: num;
  content: counter(num) ".";
  font-weight: 700;
  color: #533c32;
  padding: 0 6px;
  position: absolute;
  top: 12px;
  left: 0;
}
/* --- コツ・ポイント --- */
.block_detail--recipe .recipe_points {
  margin: 40px 0 0;
}
/* --- 関連レシピ --- */
.p-connection-recipe {
  margin-top: 80px;
}
.p-connection-recipe .l-inner {
  max-width: 900px;
}
.p-connection-recipe .u-h2-style {
  margin: 0 0 64px;
}

/* ---------- block_recipe-share ---------- */
.block_recipe-share .l-inner {
  max-width: 900px;
}
.block_recipe-share.u-bg::before {
  height: 50%;
}

/* ---------- block_recipe-btn ---------- */
.block_recipe-btn {
  margin: 60px 0;
}

/* == editor base style ============================================== */
.c-mainText {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.78;
  color: #666;
}
.c-mainText > * {
  margin: 24px 0;
}
.c-mainText > :first-child {
  margin-top: 0;
}
.c-mainText::after {
  content: "";
  display: block;
  clear: both;
}
/* --- 見出し --- */
.c-mainText h1,
.u-h1-style {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  color: #533c32;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 2em;
}
.c-mainText h1::after,
.u-h1-style::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fcc82e;
  margin: 0.4em 0 20px;
  position: relative;
  z-index: 1;
}
.c-mainText h2,
.u-h2-style {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding: 0 0 0.7em;
  margin-top: 3em;
}
.c-mainText h3,
.u-h3-style {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  background: #fff;
  padding: 0.5em 1.2em;
  margin-top: 3em;
}
.c-mainText h4,
.u-h4-style {
  font-weight: 700;
  color: #6f5246;
  border-left: 6px solid #6f5246;
  padding-left: 1.2em;
  position: relative;
}
.c-mainText h5,
.u-h5-style {
  font-weight: 700;
  color: #6f5246;
}
.c-mainText h6,
.u-h6-style {
  font-weight: 500;
  color: #6f5246;
}
.u-h1-style,
.u-h2-style,
.u-h3-style,
.u-h4-style,
.u-h5-style,
.u-h6-style {
  margin: 40px 0;
}
/* --- 段落 --- */
.c-mainText p {
  word-wrap: break-word;
  margin: 1.5em 0;
}
/* --- 引用 --- */
.c-mainText blockquote {
  background: #fff;
  padding: 2.2em 3.3em;
}
.c-mainText blockquote p {
  font-size: 1.6rem;
  line-height: 2;
}
.c-mainText blockquote > :first-child {
  margin-top: 0;
}
.c-mainText blockquote > :last-child {
  margin-bottom: 0;
}
/* --- テーブル --- */
.c-mainText .tableScroll {
  width: 100%;
  max-width: none;
  min-height: 0.01%;
  overflow: auto;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.c-mainText .tableScroll::-webkit-scrollbar {
  height: 5px;
}
.c-mainText .tableScroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText .tableScroll::-webkit-scrollbar-thumb {
  background: rgba(111, 82, 79, 0.2);
}
.c-mainText table {
  /* width: 100%; */
  /* table-layout: fixed; */
}
.c-mainText table,
.c-mainText table tr,
.c-mainText table th,
.c-mainText table td {
  border: 1px solid #6f5246;
  background: #fff;
}
.c-mainText table th {
  color: #fff;
  font-weight: 700;
  background: #6f5246;
  padding: 0.5em 1em;
  border-color: #fff;
}
.c-mainText table td {
  padding: 0.5em 1em;
}
.c-mainText caption {
  font-weight: 500;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}
/* --- 定義リスト --- */
.c-mainText dt {
  font-weight: 700;
}
.c-mainText dd {
  padding-left: 2em;
}
/* --- 非順序リスト --- */
.c-mainText ul {
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.c-mainText ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 1.5em 0 1.2em;
}
.c-mainText ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #533c32;
  margin: 0 0.8em 0 0.1em;
}
/* --- 順序リスト --- */
.c-mainText ol {
  counter-reset: num;
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.c-mainText ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  margin: 1.5em 0 1.2em;
}
.c-mainText ol li::before {
  counter-increment: num;
  content: counter(num) ".";
  font-weight: 700;
  color: #533c32;
  margin: 0 0.4em 0 0;
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr {
  margin: 20px 0;
}
/* [強調] */
.c-mainText strong {
  font-weight: 700;
}
/* [強調] ( 斜体 ) */
.c-mainText em {
  font-style: italic;
}
/* [打ち消し] */
.c-mainText del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a {
  color: #fe8c44;
  text-decoration: underline;
}
.c-mainText a:hover {
  text-decoration: none;
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [追加、挿入] */
.c-mainText ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [コードブロック] */
.c-mainText pre {
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  /* white-space: pre-wrap; */
  overflow: auto;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.c-mainText pre::-webkit-scrollbar {
  height: 5px;
}
.c-mainText pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before {
  content: open-quote;
}
.c-mainText q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub {
  bottom: -0.25em;
}
.c-mainText sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText var {
  font-style: italic;
}
/* --- 画像 --- */
.c-mainText img {
  max-width: 100%;
}
.c-mainText figcaption,
.c-mainText .wp-caption,
.c-mainText .wp-caption-text,
.c-mainText .wp-block-embed figcaption {
  text-align: center;
  max-width: 100%;
}
/* --- 配置 --- */
.c-mainText img.alignright {
  display: inline;
  margin: 0 auto 30px 25px;
}
.c-mainText img.alignleft {
  display: inline;
  margin: 0 25px 30px auto;
}
.c-mainText img.aligncenter {
  display: block;
  margin: 15px auto;
}
.c-mainText .alignright {
  float: right;
  margin: 0 auto 30px 25px;
}
.c-mainText .alignleft {
  float: left;
  margin: 0 25px 30px auto;
}

/*************************************************************
 * EC-CUBE
 *************************************************************/
/* ---------- setting ---------- */
.text-primary {
  color: #ff0000;
}
.theme_main_only a {
  color: #fe8c44;
  text-decoration: underline;
  transition: all 0.3s;
}
.theme_main_only .btn {
  transition: all 0.3s;
}
.theme_main_only a:hover,
.theme_main_only .btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
a.btn,
a.btn-primary,
.theme_main_only .c-btn a {
  color: #fff;
  text-decoration: none;
}
.page-heading {
  border: 0;
  margin: 0;
}
.page-heading {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  color: #533c32;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
  border: 0;
  margin: 0;
}
.page-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fcc82e;
  margin: 0.4em auto 20px 0;
  position: relative;
  z-index: 1;
}
.btn-default,
a.btn-default {
  min-width: 160px;
  border-radius: 4px;
  background: #484858;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  transition: all 0.3s;
}
.dl_table dt,
.dl_table dd {
  border-bottom: 1px dashed #c1b8ad;
}

/* ======
page-name #商品一覧
======*/
/* ---------- block_important ---------- */
.block_important {
  margin: -58px auto 0;
}
.block_important.u-bg::before {
  top: 58px;
}
.block_important .l-inner {
  max-width: 980px;
}
.block_important .c-list-news li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 40px;
}
.c-list-news li .c-cat {
  margin: 0 14px 0 0;
}
.block_important .c-list-news li .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* ---------- block_products ---------- */
.block_products {
  padding: 50px 0 100px;
}
.block_products .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_products .search_area {
  width: 30.9%;
}
.block_products .contents_area {
  width: 65.5%;
}
/* --- 商品検索 --- */
.block_products .search_box {
  background: #fcc82e;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6f5246;
  padding: 24px 24px 40px 24px;
}
.search-form .heading {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-left: 4px solid #6f5246;
  padding-left: 20px;
  margin: 0 0 10px -24px;
}
.search-form .search_dl input {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 0;
  padding: 6px 10px;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.search-form .search_dl select {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 0;
  padding: 10px 10px;
  font-size: 14px;
}
.search-form .search_dl dd {
  padding: 0 18px 0 0;
}
.search-form .search_dl dd + dt {
  margin: 40px 0 0;
}
.search-form .search_check {
  margin: 26px 0;
}
.search-form .search_check input {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
}
.search-form .search_check .check_label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
/* --- 件数・並び替え --- */
.block_products .sort_list {
  text-align: right;
  margin: 0 0 30px;
}
.block_products .sort_list li {
  width: 160px;
  display: inline-block;
  vertical-align: top;
}
.block_products .sort_list li + li {
  margin: 0 0 0 10px;
}
.sort_select select {
  width: 100%;
  height: 40px;
  color: #fff;
  background: #484858;
  border: 0;
  border-radius: 4px;
  padding: 6px 10px;
}
/* --- 商品一覧 --- */
.block_products .title {
  width: 65.5%;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding-bottom: 4px;
  margin: 0 0 0 auto;
}

/* ======
page-name #商品詳細
======*/
#page_product_detail .container-fluid.inner {
  width: 90%;
}
/* --- 商品画像 --- */
@supports (position: sticky) {
  #item_photo_area {
    position: -webkit-sticky;
    position: sticky;
    top: 160px;
  }
}
#item_photo_area .slick-dots {
  margin: 0;
}
#item_photo_area .slick-dots li {
  width: 20%;
  padding: 10px;
}
/* --- 商品名 --- */
#item_detail_area .item_name {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 32px;
  text-align: left;
  color: #533c32;
}
/* --- 商品タグ --- */
.item_detail_area__head {
  margin-bottom: 24px;
}
.item_detail_area__head .c-cat-bg {
  margin: 0 10px 10px 0;
}
#product_tag_box {
  display: inline-block;
}
.product_tag_list {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff0000;
  border: 1px solid #ff0000;
  border-radius: 0;
  background-color: #fff;
  padding: 0 14px;
  margin: 0 0 4px 0;
}
/* --- 商品コード --- */
#item_detail_area .item_detail .item_code {
  font-weight: 500;
  color: #533c32;
  padding: 0;
  border: 0;
}
#item_detail_area .item_detail .item_code::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fcc82e;
  margin: 20px 0;
}
/* --- 数量 --- */
.cart_area .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cart_area .quantity {
  font-weight: 700;
  color: #333;
}
.cart_area .quantity dd input {
  max-width: 80px;
  font-weight: 400;
}
/* --- 販売価格 --- */
#item_detail_area .item_detail .sale_price {
  font-size: 2.4rem;
  font-weight: 400;
}
#item_detail_area .item_detail .sale_price .small {
  font-size: 16px;
  color: #333;
}
/* --- オプション --- */
.option-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #333;
  border-bottom: 4px solid #eaeaea;
  padding: 60px 0 8px;
}
.classcategory_list .control-label {
  display: inline-block;
  font-weight: 700;
  color: #333;
  margin: 16px 0 0;
}
.classcategory_list a {
  font-size: 1.4rem;
}
.classcategory_list .radio {
  margin: 10px 0;
}
.classcategory_list .radio input[type="radio"] {
  display: none;
}
#detail_cart_box .classcategory_list .radio input[type="radio"] {
  display: inline-block;
}
.classcategory_list .radio label {
  color: #333;
  font-weight: 500;
  padding-left: 32px;
  cursor: pointer;
  position: relative;
}
#detail_cart_box .classcategory_list .radio label {
  padding-left: 0;
}
.classcategory_list .radio label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #c1b8ad;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
#detail_cart_box .classcategory_list .radio label::before {
  display: none;
}
.classcategory_list .radio label::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #fcc82e;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  -webkit-transform: scale3d(0.3, 0.3, 1);
  -ms-transform: scale3d(0.3, 0.3, 1);
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.classcategory_list .radio input[type="radio"]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/* --- お気に入り/カートボタン --- */
#detail_cart_box__button_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0;
}
#detail_cart_box__button_area .btn {
  height: 60px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  border: 0;
  transition: opacity 0.3s;
}
#detail_cart_box__button_area .btn span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 0 3px 4px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
#detail_cart_box__favorite_button,
#detail_cart_box__insert_button {
  width: 242px;
}
#detail_cart_box__favorite_button .btn {
  background: #484858;
}
#detail_cart_box__favorite_button .btn span::after {
  background-image: url(../img/icon/icon_heart.png);
}
#detail_cart_box__insert_button .btn {
  background: #fe8c44;
}
#detail_cart_box__insert_button .btn span::after {
  background-image: url(../img/icon/icon_cart.png);
}
#detail_cart_box__favorite_button .btn[disabled] {
  pointer-events: none;
  opacity: 1;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #666;
  background: #eee;
}
#detail_cart_box__favorite_button .btn[disabled] span::after {
  background-image: url(../img/icon/icon_heart_on.png);
}
#detail_cart_box__button_area .btn:hover {
  opacity: 0.8;
}
/* --- 注意事項・説明 --- */
#item_detail_area .item_detail p.shopping_bag {
  margin: 0;
}
#item_detail_area .item_detail p.cation_text strong {
  color: #333;
}

/* ======
page-name #マイページ
======*/
.mypage .theme_main_only a {
  text-decoration: none;
}
.mypage .container-fluid.inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.mypage .container-fluid.u-bg-fill {
  padding: 60px 0 100px;
}
.block_mypage-top {
  padding-bottom: 50px;
}
.mypage .message {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: left;
}
.mypage .message .name {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}
.mypage .intro {
  color: #333;
  font-weight: 700;
  padding: 0 0 10px;
  margin: 0 0 24px;
  border-bottom: 4px solid #eaeaea;
}
.mypage .intro .num {
  margin: 0 20px 0 0;
}
.mypage .f_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mypage .mypage-navi {
  width: 28%;
  max-width: 270px;
}
.mypage .mypage-contents {
  width: 70%;
}
.mypage .c-pagenation ul {
  margin: 40px 0 0;
}
.mypage .c-driving-truck {
  background-color: #f4f0eb;
}
.local_nav ul {
  border: 0;
}
.local_nav.favorite li {
  width: 100%;
  float: none;
  border: 0;
  margin-bottom: 4px;
}
.local_nav li a {
  display: block;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
  background-color: #fff;
  text-align: center;
  padding: 14px 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s;
}
.local_nav li.active a {
  color: #6f5246;
  background-color: #fcc82e;
}
@media screen and (max-width: 991px) {
  .mypage .f_wrap {
    display: block;
  }
  .mypage .mypage-navi,
  .mypage .mypage-contents {
    width: 100%;
    max-width: 100%;
  }
  .mypage .mypage-navi {
    margin: 0 0 40px;
  }
  .local_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .local_nav ul:before,
  .local_nav ul:after {
    content: none;
  }
  .local_nav.favorite li {
    width: 33%;
  }
  .historylist_column .table.item_box:first-child {
    border-top: 0;
  }
}

/* ======
page-name #マイページ / 注文履歴
======*/
#history_list {
  margin: 0;
}
#history_list .intro {
  margin: 0;
  border: 0;
}
#history_list__body {
  padding: 0;
}
.historylist_column {
  border-top: 4px solid #eaeaea;
}
.historylist_column:last-of-type {
  border-bottom: 4px solid #eaeaea;
}
.historylist_column .order_date {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #333;
  margin: 16px 0;
}
.historylist_column .order_date .time {
  font-weight: 500;
  margin: 0 0 0 16px;
}
.historylist_column .order_detail dt {
  font-size: 1.4rem;
  font-weight: 400;
  float: left;
  clear: left;
}
.historylist_column .order_detail dd {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0;
}
.historylist_column .btn-default {
  margin: 24px 0;
}
.historylist_column .item_box .item_photo {
  width: 28%;
  margin: 0 0 15px;
  padding: 16px 20px 16px 0 !important;
}
.historylist_column .table.item_box {
  border-top: 1px dashed #c1b8ad;
}
.historylist_column .table.item_box .tbody .item_detail {
  padding: 16px 20px 16px 0;
}
.historylist_column .item_box .item_detail .item_name {
  color: #533c32;
  font-weight: 700;
}
.historylist_column .item_box .item_pattern {
  color: #533c32;
}
.historylist_column .item_box .item_detail .item_price {
  font-size: 2rem;
  font-weight: 500;
  text-align: right;
  color: #333;
  margin: 16px 0 0;
}
.mypage #shopping_confirm .total_box,
.mypage #shopping_confirm .heading02 {
  background-color: #fff;
}

/* ======
page-name #マイページ / お気に入り一覧
======*/
.mypage .c-product {
  position: relative;
}
.mypage .c-product .delete-btn {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
}
.mypage .c-product .delete-btn .btn_circle {
  border: 0 none;
  padding: 0;
  margin: 0;
  text-shadow: none;
  box-shadow: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: #533c32;
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ======
page-name #マイページ / 会員情報編集
======*/
#detail_box__body {
  width: 100%;
  margin: 0;
}
#detail_box__body_inner {
  border: 0;
}
/* .mypage .dl_table dl:first-of-type dt,
.mypage .dl_table dl:first-of-type dd {
  padding-top: 0;
} */
.dl_table dt label {
  font-weight: 700;
  padding-left: 50px;
  position: relative;
}
.dl_table dt label::before {
  content: "任意";
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #6f5246;
  border-radius: 4px;
  background: #fcc82e;
  padding: 4px 6px 5px;
  position: absolute;
  top: 2px;
  left: 0;
}
.dl_table dt label.required::before {
  content: "必須";
  color: #fff;
  background: #db2525;
}
span.required {
  display: none;
}
/* --- フォーム --- */
.form-group {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
.form-group .form-control {
  border-radius: 4px;
  background: #fff;
  border: 1px solid #c1b8ad;
}
/* [名前] */
.form-group.input_name input,
.form-group.input_name input:first-child {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4% 0 1%;
  width: 120px;
}
/* [会社名] */
#detail_box__company_name .form-group.input_name input {
  width: 100%;
}
/* [電話番号] */
/* .input_tel input {
  width: 40%;
} */
/* [住所] */
.dl_table .zip-search {
  display: inline-block;
  margin: 0 0 0 20px;
}
/* [ラジオボタン] */
.form-group .radio input[type="radio"] {
  /* display: none; */
}
.form-group .radio label {
  cursor: pointer;
  /* position: relative;
  padding-left: 30px; */
}
/* .form-group .radio label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #c1b8ad;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
}
.form-group .radio label::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fcc82e;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 4px;
  opacity: 0;
  -webkit-transform: scale3d(0.3, 0.3, 1);
  -ms-transform: scale3d(0.3, 0.3, 1);
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
} */
.form-group .radio input[type="radio"]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
form .c-btn {
  margin-top: 60px;
}

/* ======
page-name #マイページ / お届け先編集
======*/
#delivery_list_box__body_inner {
  width: 100%;
  margin: 0;
}
#delivery_address_list {
  margin-top: 10px;
}
.addr_box > .td {
  border-top: 1px dashed #c1b8ad;
}
#delivery_box__new_button {
  text-align: right;
  margin: -2em 0 0;
}
#delivery_box__new_button a {
  font-weight: 500;
  text-decoration: underline;
  color: #6f5246;
}
#delivery_box__new_button a::after {
  content: "+";
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 2rem;
  background-color: #6f5246;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin: 0 0 0 5px;
}
#delivery_address_list div.is-edit {
  padding: 16px 0;
}
.addr_box .column.is-edit .address {
  margin: 0 120px 0 0;
  min-height: 90px;
  color: #533c32;
  font-weight: 500;
}
#delivery_address_list div.is-edit p.btn_edit {
  top: 10px;
  right: 16px;
}
#delivery_address_list div.is-edit p.btn_edit .btn-default {
  width: 120px;
  min-width: auto;
  background-color: #fcc82e;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}
.address_table .icon_edit {
  width: 120px;
  border-radius: 4px;
  background: #ccc;
  padding: 0;
  position: absolute;
  top: 70px;
  right: 16px;
}
.address_table .icon_edit a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 40px;
  color: #333;
  text-align: center;
  padding: 0;
}

/* ======
page-name #マイページ / 退会手続き
======*/
#withdraw_box__body_inner,
#confirm_box__message {
  width: 100%;
  margin: 0;
}
.unsubscribe_box {
  margin: 40px 0 0;
}
.unsubscribe_box h3 {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #533c32;
  margin: 0 0 30px;
}
#withdraw_box__confirm_button .c-btn {
  margin-top: 40px;
}
#withdraw_box.unsubscribe_box h3 {
  background: url(../img/icon/icon_attention.png) no-repeat center left;
  background-size: 28px 28px;
  padding: 0 0 0 40px;
}
#confirm_box__complete_button {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#confirm_box__complete_button .btn {
  width: 180px;
  border-radius: 4px;
  border: 0;
  color: #333;
  margin: 20px;
}
#confirm_box__complete_button .btn:hover {
  opacity: 0.8;
}
#confirm_box__complete_button .btn-info {
  background: #ccc;
  font-size: 14px;
}
#confirm_box__complete_button .btn-default {
  background: #fcc82e;
}
#complete_box__message {
  width: 100%;
  margin: 0;
}
#complete_box__message h3 {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  color: #533c32;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin: 0;
}
#complete_box__message h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fcc82e;
  margin: 0.4em auto 20px;
  position: relative;
  z-index: 1;
}
#complete_box__top_button .c-btn {
  margin: 80px auto;
}
#complete_box__top_button .c-btn a {
  color: #fff;
}
#page_mypage_withdraw_complete .c-driving-truck {
  background-color: #fff;
}

/* ======
page-name #マイページ / カード情報編集
======*/
.mypage-contents .message {
  text-align: center;
  margin: 20px 0 60px;
}
.form-horizontal .btn-default {
  margin: 20px 0;
}
.form-horizontal .table {
  width: 100%;
}
.form-horizontal .dl_table dt {
  font-weight: 700;
  padding-left: 50px;
  position: relative;
}
.form-horizontal .dl_table dt::before {
  content: "任意";
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #6f5246;
  border-radius: 4px;
  background: #fcc82e;
  padding: 4px 6px 5px;
  position: absolute;
  top: 24px;
  left: 0;
}
.form-horizontal .dl_table dt.required::before {
  content: "必須";
  color: #fff;
  background: #db2525;
}
.form-horizontal input[type="radio"] {
  display: none;
}
.form-horizontal .input_display input[type="radio"] {
  display: inline-block;
}
.form-horizontal input[type="radio"] + label {
  cursor: pointer;
  position: relative;
  padding-left: 24px;
}
.form-horizontal input[type="radio"] + label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #c1b8ad;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.form-horizontal input[type="radio"] + label::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fcc82e;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  -webkit-transform: scale3d(0.3, 0.3, 1);
  -ms-transform: scale3d(0.3, 0.3, 1);
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.form-horizontal input[type="radio"]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* ======
page-name #ショッピングカート / カート
======*/
.cart_page .container-fluid.inner {
  width: 90%;
  max-width: 1088px;
  margin: 0 auto;
  padding: 0;
}
#cart_box__body {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
}
.flowline {
  margin: 20px 0 40px;
}
.flowline ul::before {
  content: "";
  height: 12px;
  position: absolute;
  top: 18px;
  z-index: 0;
  margin: 0;
  border-radius: 0;
  background-color: #ffffff;
  background-image: radial-gradient(#cccccc 18%, transparent 21%),
    radial-gradient(#cccccc 18%, transparent 21%);
  background-position: center;
  background-size: 8px 8px;
}
.flowline ul li {
  color: #ccc;
}
.flowline li .flow_number {
  line-height: 42px;
  width: 42px;
  height: 42px;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  background: #ccc;
}
.flowline li.active {
  color: #333;
}
.flowline li.active .flow_number {
  color: #333;
  background: #fcc82e;
}
#form_cart > .message {
  text-align: left;
  color: #333;
}
#form_cart > .message strong {
  font-size: 2.4rem;
  padding: 0 0.5em;
}
div.table ol li {
  font-size: 1.4rem;
  font-weight: 500;
  color: #533c32;
  padding: 4px 10px;
  background: transparent;
  border-bottom: 4px solid #eaeaea;
}
.cart_item .icon_edit {
  width: 14%;
}
.cart_item .item_box .table {
  width: 56%;
}
.cart_item .item_box > .td {
  border-bottom: 1px dashed #c1b8ad;
}
.cart_item .item_box:last-of-type > .td {
  border-bottom: 4px solid #eaeaea;
}
.cart_item .item_quantity {
  width: 14%;
}
div.table .tbody .tr > .td {
  padding: 16px 8px;
}
.cart_item .item_box .icon_edit {
  line-height: 1;
}
.cart_item .item_box .icon_edit a {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
}
.cart_item .item_box .icon_edit .close {
  display: block;
  font-size: 3rem;
  color: #333;
  font-weight: 900;
}
.cart_item .item_box .table .item_detail {
  font-size: 1.4rem;
  font-weight: 500;
  color: #533c32;
}
.cart_item .item_box .table .item_detail .item_price,
.cart_item .item_box .table .item_detail .item_subtotal {
  display: none;
}
.cart_item .item_box .table .item_name a {
  font-weight: 700;
  color: #533c32;
  text-decoration: none;
}
.cart_item .item_box .table .item_photo {
  padding-right: 20px;
}
.cart_item .item_box .item_quantity,
.cart_item.table .tbody .tr div.item_subtotal {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
}
.cart_item.table .tbody .tr div.item_subtotal {
  padding-right: 30px;
}
.cart_item .item_quantity ul li span,
.cart_item .item_quantity ul li a {
  border: 2px solid #c9c9c9;
  color: #333;
  font-weight: 900;
  text-decoration: none;
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
}
.cart_item .item_quantity ul li span {
  opacity: 0.4;
}
#cart_box__body .total_box,
#cart_box__body .total_box dl dt {
  float: none;
}
.total_box dl.total_price {
  text-align: right;
}
.total_box dl.total_price dt {
  width: auto;
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  color: #533c32;
  padding: 1.4em 1em 0 0;
}
.total_box dl.total_price dd {
  width: auto;
  display: inline-block;
  font-weight: 500;
  font-size: 3.2rem;
  text-align: right;
  color: #fe0013;
  padding: 0;
}
.total_box .btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.total_box .btn_group p {
  margin: 16px 20px;
}
.total_box .btn_group .btn {
  width: 240px;
  border-radius: 4px;
  border: 0;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 18px 16px;
}
.total_box .btn_group .btn-info {
  color: #6f5246;
  background: #eaeaea;
}
.total_box .btn_group .btn-primary {
  color: #333;
  background: #fcc82e;
}

/* ======
page-name #ショッピングカート / ログイン
======*/
#login_wrap {
  padding: 60px 0 80px;
}
#login_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#login_box .column {
  padding: 30px 16px;
}
.login_cart .column .column_inner {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
#login_box .column .btn_area ul li {
  margin: 0;
}
@media screen and (max-width: 991px) {
  #customer_box,
  #guest_box {
    width: 100%;
  }
  #guest_box {
    margin-top: 40px;
  }
}

/* ======
page-name #ショッピングカート / お客様情報の入力
======*/
#detail_box__button_menu {
  width: 100%;
  margin: 40px 0 60px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#detail_box__button_menu p {
  margin: 16px 20px;
}
#detail_box__button_menu .btn {
  width: 240px;
  border-radius: 4px;
  border: 0;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 18px 16px;
}
#detail_box__button_menu .btn-info {
  color: #6f5246;
  background: #eaeaea;
}
#detail_box__button_menu .btn-primary {
  color: #333;
  background: #fcc82e;
}
#shopping_confirm .heading02 {
  margin: 30px 0 10px;
}
#shopping_confirm h3 {
  font-size: 2rem;
  padding: 10px 0;
}

/* ======
page-name #ショッピングカート / ご注文内容の確認
======*/
#page_shopping #confirm_wrap {
  padding: 0 0 80px;
}

/* ======
page-name #ショッピングカート / ご注文完了
======*/
#deliveradd_input_box__payment_message .heading02 {
  margin: 24px 0;
  font-weight: bold;
  background: #efefef;
  padding: 8px 12px;
}
#deliveradd_input_box__top_button {
  margin: 60px 0;
}

/* ======
page-name #新規会員登録
======*/
#top_box__company_name .form-group.input_name input {
  width: 100%;
}
#top_box__button_menu {
  width: 100%;
  margin: 40px 0 60px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#top_box__button_menu p {
  margin: 16px 20px;
}
#top_box__button_menu .btn {
  width: 240px;
  border-radius: 4px;
  border: 0;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 18px 16px;
}
#top_box__button_menu .btn-info {
  color: #6f5246;
  background: #eaeaea;
}
#top_box__button_menu .btn-primary {
  color: #333;
  background: #fcc82e;
}

/* ======
page-name #新規会員登録確認
======*/
#confirm_box__body .dl_table dt label {
  padding: 0;
}
#confirm_box__body .dl_table dt label::before {
  content: none;
}
#confirm_box__body_inner {
  margin: 40px 0 0;
}
#confirm_box__button_menu {
  width: 100%;
  margin: 40px 0 60px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#confirm_box__button_menu p {
  margin: 16px 20px;
}
#confirm_box__button_menu .btn {
  width: 240px;
  border-radius: 4px;
  border: 0;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 18px 16px;
}
#confirm_box__button_menu .btn-info {
  color: #6f5246;
  background: #eaeaea;
}
#confirm_box__button_menu .btn-primary {
  color: #333;
  background: #fcc82e;
}

/* ======
page-name #新規会員登録（完了）
======*/
#complete_box__footer {
  margin: 60px 0;
}

/* ======
page-name #新規会員登録（本登録完了）
======*/
#activate_box__footer {
  margin: 60px 0;
}

/* ======
page-name #ログイン
======*/
#page_mypage_login .c-driving-truck {
  background-color: #fff;
}
#page_mypage_login #login_box {
  padding: 0 0 100px;
}

/* ======
page-name #当サイトについて
======*/
.other_page .container-fluid.inner {
  width: 90%;
  max-width: 1088px;
  margin: 0 auto;
  padding: 0;
}
#help_about_box__body {
  padding: 0 0 80px;
}
#help_about_box__body_innner {
  border: 0;
}

/* ======
page-name #利用規約
======*/
#agreement_box__body {
  padding: 0 0 80px;
}

/* ======
page-name #ご利用ガイド
======*/
#guide_box__body {
  padding: 0 0 80px;
}
#guide_box__body h2 {
  font-size: 2.4rem;
}
#guide_box__body h3 {
  font-size: 1.8rem;
  margin: 1em 0 0.5em;
}
#guide_box__body h4 {
  margin: 1em 0 0.5em;
}

/* ======
page-name #特定商取引法に基づく表記
======*/
#tradelaw_box {
  padding: 0 0 80px;
}
#tradelaw__body {
  border: 0;
}

/* ======
page-name #プライバシーポリシー
======*/
#privacy_box {
  padding: 0 0 80px;
}

/**/
.search_area {
  text-align: center;
  padding: 30px 0;
}
.search_area select,
.search_area input {
  height: 45px;
  margin: 0 5px;
}

#detail_description_box__body iframe {
  width: 100%;
  height: auto;
  margin: 15px 0;
}

#form1 .btn-primary {
  margin: 0 0 20px;
}

#coupon_box__insert_button,
#coupon_box__back_button {
  margin: 16px 0;
}

#page_yamato_shopping_payment #wrapper {
  overflow-x: hidden;
}
.grecaptcha-badge {
  z-index: 100 !important;
}
/* == 240513_add_top pickup ============================================== */
.block_front-pickup {
  padding: 80px 0 75px;
}
.block_front-pickup .p-pickupList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.6%;
  row-gap: 40px;
  margin-top: 40px;
}
.block_front-pickup .p-pickupItem a {
  display: block;
  transition: opacity 0.4s;
}
.block_front-pickup .p-pickupItem a:hover {
  opacity: 0.6;
}
.block_front-pickup .p-pickupList img {
  width: 336px;
  height: 230px;
  object-fit: cover;
  vertical-align: bottom;
}
@media all and (max-width: 1206px) {
  .block_front-pickup .p-pickupList {
    row-gap: 3.314vw;
  }
  .block_front-pickup .p-pickupList img {
    width: 27.838vw;
    height: 19.056vw;
  }
}

/* == 240513_add_sdgs ============================================== */
.p-sdgs .c-heading__sub {
  font-size: 2.4rem;
  padding: 3px 0 10px;
}
.p-sdgs .l-inner {
  max-width: 980px;
  width: 90%;
}
.block_sdgsfood {
  padding: 73px 0 80px;
}
.block_sdgsfood .title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6f5246;
  margin-bottom: 20px;
  line-height: 1.583;
}
.block_sdgsfood .desc {
  line-height: 1.75;
}
.p-sdgs .heading {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f5246;
  border-bottom: 1px solid #6f5246;
  padding-bottom: 12px;
  margin: 0 0 0 auto;
  line-height: 1.167;
}
.block_sdgsfood .TargetProducts {
  padding-top: 80px;
}
.block_sdgsfood .c-list-products {
  margin: 40px auto 0;
  max-width: 959px;
}
.block_sdgsfood .c-product__thum {
  margin-bottom: 12px;
}
.block_sdgsfood .c-product__excerpt {
  line-height: 1.75;
  margin-top: 12px;
}

.block_sdgsgoal {
  padding: 70px 0 120px;
  color: #333;
}
.block_sdgsgoal .goals_image {
  margin: 128px auto 63px;
  max-width: 792px;
}
.block_sdgsgoal .text_box {
  text-align: center;
}
.block_sdgsgoal .head_copy {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}
.block_sdgsgoal .declaration__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.block_sdgsgoal .declaration__item {
  width: 30.612%;
  position: relative;
  min-height: 484px;
  margin: 44px 4% 0 0;
}
.block_sdgsgoal .declaration__item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .block_sdgsgoal .declaration__item:nth-child(3) {
    margin-right: 0;
  }
}
.block_sdgsgoal .declaration__item::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 20px);
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
  background: #f7f7f7;
}
.block_sdgsgoal .declaration__item .c-heading {
  font-size: 2.2rem;
  color: #6f5246;
  letter-spacing: 0.1em;
}
.block_sdgsgoal .declaration__item .c-heading::after {
  margin: 0.432em auto 20px;
}
.block_sdgsgoal .declaration__item .declaration__itemInner {
  padding: 0 20px 30px;
}
.block_sdgsgoal .declaration__item .title_block {
  text-align: center;
  margin-bottom: 2px;
}
.block_sdgsgoal .declaration__item .desc_block {
  margin-top: 12px;
}
.block_sdgsgoal .declaration__item .title_block .title {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
.block_sdgsgoal .declaration__item .desc_block p {
  line-height: 1.75;
}
.block_sdgsgoal .declaration__item .list {
  margin: 20px auto 24px;
  font-weight: 500;
}
.block_sdgsgoal .declaration__item .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
}
.block_sdgsgoal .declaration__item .item {
  margin-bottom: 4px;
  font-size: 1.4rem;
  line-height: 1.429;
  padding-left: 12px;
  position: relative;
}
.block_sdgsgoal .declaration__item .imgbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4%;
  row-gap: 4%;
}
.block_sdgsgoal .declaration__item .imgbox img {
  display: block;
  object-fit: cover;
}
.block_sdgsgoal .declaration__item .imgbox img:last-child {
  margin-right: 0;
}
@media all and (max-width: 1000px) {
  .block_sdgsgoal .declaration__item .declaration__itemInner {
    padding: 0 2vw 30px;
  }
  .block_sdgsgoal .declaration__item {
    width: 31.8%;
    margin-right: 2%;
  }
}
@media all and (max-width: 810px) {
  .block_sdgsgoal .declaration__item .title_block .title {
    font-size: 1.7rem;
  }
}
