@charset "UTF-8";
:root {
  color: #000;
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  letter-spacing: normal;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where(body) {
  position: relative;
  min-height: 100dvh;
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  padding: 0;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  :where(a):hover {
    text-decoration: underline;
    opacity: 0.5;
  }
}
@media (hover: none) and (pointer: coarse) {
  :where(a):active {
    text-decoration: underline;
    opacity: 0.5;
  }
}

:where(img, svg) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:where(table) {
  min-width: 100%;
  border-collapse: collapse;
}

:where(button) {
  font: inherit;
  cursor: pointer;
}

.header {
  height: 0;
}
@media screen and (width <= 768px) {
  .header__logo {
    width: 11.5rem;
  }
}

.gnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.gnav__toggle {
  width: 4.375rem;
  height: 4.375rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  position: relative; /* ハンバーガーの棒の基準 */
  top: 0.75rem;
  right: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.5rem 0.9375rem 0.9375rem;
  color: #fff;
  font-family: "Ineter", sans-serif;
  text-transform: uppercase;
  background: #c81414;
  border: 0;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 31px 9px 0 rgba(0, 0, 0, 0), 0 20px 8px 0 rgba(0, 0, 0, 0.01), 0 11px 7px 0 rgba(0, 0, 0, 0.05), 0 5px 5px 0 rgba(0, 0, 0, 0.09), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 31px 9px 0 rgba(0, 0, 0, 0), 0 20px 8px 0 rgba(0, 0, 0, 0.01), 0 11px 7px 0 rgba(0, 0, 0, 0.05), 0 5px 5px 0 rgba(0, 0, 0, 0.09), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.gnav__toggle span {
  position: absolute; /* ハンバーガーの棒 */
  display: block;
  width: 2.5rem;
  height: 0.125rem;
  background: #fff;
  border-radius: 0.0625rem;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.gnav__toggle span:nth-child(1) {
  top: 1.25rem;
  left: 0.9375rem;
}
.gnav__toggle span:nth-child(2) {
  top: 2rem;
  left: 0.9375rem;
  width: 1.75rem;
}

.gnav__body {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100dvh;
  padding: 5rem 0rem;
  overflow: hidden auto;
  color: #fff;
  background: url("../images/common/gnav_bg.jpg") center/cover no-repeat #c81414;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-overflow-scrolling: touch;
}
.gnav__body a {
  display: block;
  color: inherit;
}

.gnav__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (width <= 768px) {
  .gnav__title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.3;
  }
}

.gnav__nav {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.75rem;
  margin: 5rem 0rem 0rem;
}
.gnav__nav-group {
  display: block;
}
.gnav__nav-group > *:first-child {
  margin-top: 0 !important;
}
.gnav__nav-group > *:last-child {
  margin-bottom: 0 !important;
}
.gnav__nav-group > :where(*) {
  margin-top: 1.875rem;
}
.gnav__nav-parent {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 0.9375rem;
  border-left: 1px solid;
}
.gnav__nav-children {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 1.875rem;
  margin-left: 1.25rem;
}
.gnav__nav-children > *:first-child {
  margin-top: 0 !important;
}
.gnav__nav-children > *:last-child {
  margin-bottom: 0 !important;
}
.gnav__nav-children > :where(*) {
  margin-top: 0.625rem;
}
.gnav__nav-children > li {
  position: relative; /* ビュレットの基準 */
  padding-left: 1lh;
}
.gnav__nav-children > li::before {
  position: absolute; /* ビュレットの基準 */
  top: 0;
  left: 0;
  display: block;
  width: 1lh;
  height: 1lh;
  vertical-align: text-top;
  background: #fff;
  content: "";
  clip-path: circle(0.125rem at 50% 50%);
}
.gnav__nav-list-privacy {
  margin-top: 5rem;
}
@media screen and (width <= 768px) {
  .gnav__nav {
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    gap: 1.875rem;
    margin: 2.5rem 0rem 0rem;
  }
  .gnav__nav-group {
    display: block;
  }
  .gnav__nav-group > *:first-child {
    margin-top: 0 !important;
  }
  .gnav__nav-group > *:last-child {
    margin-bottom: 0 !important;
  }
  .gnav__nav-group > :where(*) {
    margin-top: 1.875rem;
  }
  .gnav__nav-parent {
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 400;
  }
  .gnav__nav-children {
    margin-top: 0.625rem;
    margin-left: 1.25rem;
  }
  .gnav__nav-list-privacy {
    margin-top: 2.5rem;
  }
}

.gnav.is-active {
  right: 0;
  z-index: 1000;
}
.gnav.is-active .gnav__toggle {
  z-index: 1500;
  color: #fff;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.gnav.is-active .gnav__toggle span {
  background: #fff;
}
.gnav.is-active .gnav__toggle span:nth-child(1), .gnav.is-active .gnav__toggle span:nth-child(2) {
  top: 1.5rem;
  left: 50%;
}
.gnav.is-active .gnav__toggle span:nth-child(1) {
  width: 1.75rem;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}
.gnav.is-active .gnav__toggle span:nth-child(2) {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
}
.gnav.is-active .gnav__body {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.footer {
  padding: 1.875rem 0rem 1rem;
  color: #fff;
  background: url("../images/common/footer_bg.jpg") top center/cover no-repeat rgb(99, 110, 60);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(86, 55, 0, 0.7);
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.footer__logo {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.footer__logo span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.3125rem;
}
.footer__banner {
  margin-top: 1.25rem;
}
.footer__nav {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.footer__nav-group {
  display: block;
}
.footer__nav-group > *:first-child {
  margin-top: 0 !important;
}
.footer__nav-group > *:last-child {
  margin-bottom: 0 !important;
}
.footer__nav-group > :where(*) {
  margin-top: 1.25rem;
}
.footer__nav-parent {
  padding-left: 0.9375rem;
  border-left: 1px solid;
}
.footer__nav-children {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 0.625rem;
  margin-left: 1.25rem;
}
.footer__nav-children > *:first-child {
  margin-top: 0 !important;
}
.footer__nav-children > *:last-child {
  margin-bottom: 0 !important;
}
.footer__nav-children > :where(*) {
  margin-top: 0.625rem;
}
.footer__nav-children > li {
  position: relative; /* ビュレットの基準 */
  padding-left: 1lh;
}
.footer__nav-children > li::before {
  position: absolute; /* ビュレットの基準 */
  top: 0;
  left: 0;
  display: block;
  width: 1lh;
  height: 1lh;
  vertical-align: text-top;
  background: #fff;
  content: "";
  clip-path: circle(0.125rem at 50% 50%);
}
.footer__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (width <= 1024px) {
  .footer__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.25rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer__nav-group:nth-child(1) {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
  .footer__foot {
    margin-top: 2.25rem;
  }
}
@media screen and (width <= 835px) {
  .footer__body {
    display: block;
  }
  .footer__logo {
    text-align: left;
  }
  .footer__nav {
    margin-top: 0.625rem;
  }
  .footer__foot {
    margin-top: 0.625rem;
  }
}
@media screen and (width <= 520px) {
  .footer__nav {
    display: block;
  }
  .footer__nav > *:first-child {
    margin-top: 0 !important;
  }
  .footer__nav > *:last-child {
    margin-bottom: 0 !important;
  }
  .footer__nav > :where(*) {
    margin-top: 1.25rem;
  }
  .footer__nav-children {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.25rem, 1fr));
    gap: 0.625rem;
  }
  .footer__nav-children > li {
    margin-top: 0;
  }
}

.l-content-m, .l-content-s, .l-content-xs, .l-content-gnav {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
}
.l-content-m {
  max-width: 67.8125rem;
}
.l-content-s {
  max-width: 63.125rem;
}
.l-content-xs {
  max-width: 41.25rem;
}
.l-content-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 68.75rem;
  min-height: 100%;
}

.l-btn-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}

.l-page-body {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.l-page-body__content {
  display: block;
}
.l-page-body__content > *:first-child {
  margin-top: 0 !important;
}
.l-page-body__content > *:last-child {
  margin-bottom: 0 !important;
}
.l-page-body__content > :where(*) {
  margin-top: 5rem;
}
.l-page-body__content-l {
  display: block;
}
.l-page-body__content-l > *:first-child {
  margin-top: 0 !important;
}
.l-page-body__content-l > *:last-child {
  margin-bottom: 0 !important;
}
.l-page-body__content-l > :where(*) {
  margin-top: 6.5rem;
}
@media screen and (width <= 768px) {
  .l-page-body {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .l-page-body__content {
    display: block;
  }
  .l-page-body__content > *:first-child {
    margin-top: 0 !important;
  }
  .l-page-body__content > *:last-child {
    margin-bottom: 0 !important;
  }
  .l-page-body__content > :where(*) {
    margin-top: 2.5rem;
  }
  .l-page-body__content-l {
    display: block;
  }
  .l-page-body__content-l > *:first-child {
    margin-top: 0 !important;
  }
  .l-page-body__content-l > *:last-child {
    margin-bottom: 0 !important;
  }
  .l-page-body__content-l > :where(*) {
    margin-top: 3.75rem;
  }
}

.nav-jirei {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 768px) {
  .nav-jirei {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.nav-jirei__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.nav-jirei__item > a,
.nav-jirei__item > button {
  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;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 0.125rem solid #e6e1c8;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav-jirei__item > a:hover,
  .nav-jirei__item > button:hover {
    text-decoration: none;
    border-color: #c81414;
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .nav-jirei__item > a:active,
  .nav-jirei__item > button:active {
    text-decoration: none;
    border-color: #c81414;
    opacity: 1;
  }
}
.nav-jirei__item:has([aria-expanded=true]) > a,
.nav-jirei__item:has([aria-expanded=true]) > button {
  border-color: #c81414;
}
.nav-jirei nav[aria-hidden=true] {
  display: none;
}
.nav-jirei__locale, .nav-jirei__aiueo {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  background: #fff;
}
.nav-jirei__locale:not(.is-active), .nav-jirei__aiueo:not(.is-active) {
  -webkit-animation: hide 0.3s forwards;
          animation: hide 0.3s forwards;
}
.nav-jirei__locale.is-active, .nav-jirei__aiueo.is-active {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: show 0.5s forwards;
          animation: show 0.5s forwards;
}
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nav-jirei__locale {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[6];
  grid-template-rows: repeat(6, 1fr);
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}
.nav-jirei__locale > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.nav-jirei__locale > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.nav-jirei__locale > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.nav-jirei__locale > *:nth-child(7) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(8) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}
.nav-jirei__locale > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(10) {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
}
.nav-jirei__locale > *:nth-child(11) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.nav-jirei__locale > *:nth-child(12) {
  -ms-grid-row: 6;
  -ms-grid-column: 2;
}
.nav-jirei__area-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 6;
  grid-row: span 6;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
}
.nav-jirei__area [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.nav-jirei__area label {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0.625rem 1.25rem;
  text-align: center;
  background: url("../images/hyakunenfood/menu_bg_inactive.png") #fafafa;
}
.nav-jirei__area label:has(:checked), .nav-jirei__area label:has(:focus) {
  color: #fff;
  background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
}
@media (hover: hover) and (pointer: fine) {
  .nav-jirei__area label:hover {
    color: #fff;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
  }
}
@media (hover: none) and (pointer: coarse) {
  .nav-jirei__area label:active {
    color: #fff;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
  }
}
.nav-jirei__pref {
  grid-row: 1/-1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/span 1;
  text-align: center;
  background: #fff;
}
.nav-jirei__pref[aria-hidden=true] {
  display: none;
}
.nav-jirei__pref__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.nav-jirei__pref a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: inherit;
}
.nav-jirei__pref a.is-active {
  color: #fff;
  background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
}
@media (hover: hover) and (pointer: fine) {
  .nav-jirei__pref a:hover {
    color: #fff;
    text-decoration: none;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .nav-jirei__pref a:active {
    color: #fff;
    text-decoration: none;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
    opacity: 1;
  }
}
.nav-jirei__aiueo {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.78125rem, 1fr));
}
.nav-jirei__aiueo a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: inherit;
  text-align: center;
  background: url("../images/hyakunenfood/menu_bg_inactive.png") #fafafa;
}
.nav-jirei__aiueo a:focus {
  position: relative;
  z-index: 1;
}
.nav-jirei__aiueo a:focus-within {
  outline: 2px;
}
.nav-jirei__aiueo a span {
  font-weight: normal;
}
.nav-jirei__aiueo a.is-active, .nav-jirei__aiueo a:focus {
  color: #fff;
  background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
}
@media (hover: hover) and (pointer: fine) {
  .nav-jirei__aiueo a:hover {
    color: #fff;
    text-decoration: none;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .nav-jirei__aiueo a:active {
    color: #fff;
    text-decoration: none;
    background: url("../images/hyakunenfood/menu_bg_active.png") #c81414;
    opacity: 1;
  }
}
@media screen and (width <= 768px) {
  .nav-jirei__area-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-row-span: 6;
    grid-row: span 6;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
  }
  .nav-jirei__area label {
    padding: 0.625rem;
  }
  .nav-jirei__pref__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-jirei__pref a {
    padding: 0.625rem;
  }
  .nav-jirei__aiueo {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-jirei__aiueo a {
    padding: 0.625rem;
  }
}

.jirei-filter {
  margin-top: 1.5rem;
}
.jirei-filter label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  vertical-align: middle;
}
.jirei-filter .filter__radio {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  background: url("../images/hyakunenfood/icon_radio.svg") center/contain no-repeat;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.jirei-filter .filter__radio:checked {
  background: url("../images/hyakunenfood/icon_radio_checked.svg") center/contain no-repeat;
}
.jirei-filter .filter__check {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  background: url("../images/hyakunenfood/icon_check.svg") center/contain no-repeat;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.jirei-filter .filter__check:checked {
  background: url("../images/hyakunenfood/icon_check_checked.svg") center/contain no-repeat;
}
.jirei-filter__title {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 400;
}
.jirei-filter__title::before {
  display: inline-block;
  width: 1.25rem;
  height: 1lh;
  margin-right: 0.5rem;
  vertical-align: top;
  background: url("../images/hyakunenfood/icon_filter.svg") center/contain no-repeat;
  content: "";
}
.jirei-filter__table {
  margin-top: 1.5rem;
}
.jirei-filter__table th,
.jirei-filter__table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #ccc;
}
.jirei-filter__table th {
  color: #5e3f0a;
  vertical-align: top;
  background: rgba(230, 225, 200, 0.5);
}
.jirei-filter__table th span {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 700;
}
.jirei-filter__table td {
  font-family: "Noto Sans JP", sans-serif;
}
.jirei-filter__table caption {
  display: none;
}
.jirei-filter__search {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  width: 15.625rem;
  margin: 2.75rem auto 0rem;
  padding: 0.625rem;
  color: #fff;
  background: #976b1e;
  border: 0;
  border-radius: 0.3125rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .jirei-filter__search:hover {
    opacity: 0.5;
  }
}
@media (hover: none) and (pointer: coarse) {
  .jirei-filter__search:active {
    opacity: 0.5;
  }
}
@media screen and (width <= 768px) {
  .jirei-filter__table {
    border-top: 1px solid #ccc;
  }
  .jirei-filter__table,
  .jirei-filter__table tbody,
  .jirei-filter__table thead,
  .jirei-filter__table tfoot,
  .jirei-filter__table tr,
  .jirei-filter__table th,
  .jirei-filter__table td {
    display: block;
  }
  .jirei-filter__table th,
  .jirei-filter__table td {
    border-top: 0;
  }
  .jirei-filter__search {
    margin: 1rem auto 0rem;
  }
}

.jirei-list {
  margin-top: 3rem;
}
.jirei-list > *:first-child {
  margin-top: 0 !important;
}
.jirei-list > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (width <= 768px) {
  .jirei-list {
    margin-top: 2rem;
  }
}

.jirei-item {
  width: 100%;
  margin-top: 2.5rem;
}
.jirei-item__head {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.3125rem 0.625rem 0.3125rem 1.25rem;
  color: #fff;
}
.jirei-item-dento .jirei-item__head {
  background: #c81414;
}
.jirei-item-kindai .jirei-item__head {
  background: #91784b;
}
.jirei-item-mirai .jirei-item__head {
  background: #236e5a;
}
.jirei-item__certification {
  font-size: 0.6875rem;
  line-height: 1;
  padding: 0.3125rem 0.625rem;
  color: #ba4d00;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  border-radius: 0.3125rem;
}
.jirei-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 1.25rem;
}
.jirei-item__main {
  -ms-flex-preferred-size: 42.5rem;
      flex-basis: 42.5rem;
}
.jirei-item__sub {
  -ms-flex-preferred-size: 18.75rem;
      flex-basis: 18.75rem;
}
.jirei-item__img {
  aspect-ratio: 300/200;
}
.jirei-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.jirei-item__link {
  margin-top: 0.625rem;
}
.jirei-item__link .btn {
  gap: 0;
  width: 100%;
  padding: 1rem 0.5rem;
}
.jirei-item__expert {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.1875rem 1.1875rem;
  color: #c81414;
  border: 1px solid;
  border-radius: 0.3125rem;
}
.jirei-item__title {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
}
.jirei-item__desc {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 1.25rem;
  border-top: 1px solid #976b1e;
  border-bottom: 1px solid #976b1e;
}
.jirei-item__foot {
  margin-top: 1.25rem;
}
.jirei-item__locale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.jirei-item__pref {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0.1875rem 1.25rem;
  line-height: 1.5rem;
  background: #e6e1c8;
}
.jirei-item__organization {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.1875rem;
  line-height: 1.5rem;
}
.jirei-item__organization-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
.jirei-item__organization-link span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.jirei-item__organization-link a {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 400;
  color: #c81414;
  line-height: 1.5rem;
  word-break: break-all;
}
.jirei-item__organization-link a::after {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  margin-left: 0.5rem;
  background: url("../images/common/icon_external_red.svg") center/contain no-repeat;
  content: "";
}
@media screen and (width <= 768px) {
  .jirei-item__head {
    padding: 0.3125rem 0.625rem;
  }
  .jirei-item__body {
    display: block;
  }
  .jirei-item__sub {
    margin-top: 1rem;
  }
  .jirei-item__locale {
    display: block;
  }
  .jirei-item__organization {
    display: block;
    margin-top: 0.5rem;
  }
  .jirei-item__organization-link span {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.section-page-overview {
  padding: 14.5625rem 0rem 2.75rem;
  overflow-x: hidden;
}
@media screen and (width <= 768px) {
  .section-page-overview {
    padding: 10.75rem 0rem 0rem;
    overflow: visible;
  }
}

.page-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-overview-body {
  -ms-flex-preferred-size: 37.5rem;
      flex-basis: 37.5rem;
}
.page-overview-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #c81414;
}
.page-overview-description {
  line-height: 1.7;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  margin-top: 3.75rem;
}
.page-overview-image {
  position: relative;
  -ms-flex-preferred-size: 26.5625rem;
      flex-basis: 26.5625rem;
  aspect-ratio: 1/1;
}
.page-overview-image::before {
  width: 78.1176470588%;
  height: 78.1176470588%;
  position: absolute;
  top: -9.4117647059%;
  left: -27.7647058824%;
  z-index: -1;
  display: block;
  background: url("../images/common/page_title_bg_01.png") top left;
  content: "";
}
.page-overview-image::after {
  position: absolute;
  top: 32.2352941176%;
  left: 18.8235294118%;
  z-index: -1;
  display: block;
  width: 50vw;
  height: 78.1176470588%;
  background: url("../images/common/page_title_bg_02.png") top left;
  content: "";
}
@media screen and (width <= 768px) {
  .page-overview {
    display: block;
  }
  .page-overview-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.7;
  }
  .page-overview-description {
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1.875rem;
  }
  .page-overview-image {
    width: 82.9850746269%;
    height: auto;
    margin: 1.25rem auto;
    padding: 4.4776119403% 27.7611940299% 4.4776119403% 9.8507462687%;
    aspect-ratio: unset;
  }
  .page-overview-image img {
    aspect-ratio: 1/1;
  }
  .page-overview-image::before {
    top: 0;
    left: 0;
    width: 42.5992779783%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .page-overview-image::after {
    inset: auto;
    right: 0;
    bottom: 0;
    aspect-ratio: 207/118;
    width: 74.7292418773%;
    height: auto;
  }
}

.section-page-overview-sm .page-overview-image {
  -ms-flex-preferred-size: 19.1875rem;
      flex-basis: 19.1875rem;
}
.section-page-overview-sm .page-overview-image::before {
  width: 84.0390879479%;
  height: 84.0390879479%;
  top: -13.0293159609%;
  left: -65.1465798046%;
}
.section-page-overview-sm .page-overview-image::after {
  top: 50%;
  left: 50%;
  height: 84.0390879479%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width <= 768px) {
  .section-page-overview-sm .page-overview-image {
    width: 82.9850746269%;
    height: auto;
    margin: 1.25rem auto;
    padding: 4.4776119403% 27.7611940299% 4.4776119403% 9.8507462687%;
    aspect-ratio: unset;
  }
  .section-page-overview-sm .page-overview-image img {
    aspect-ratio: 1/1;
  }
  .section-page-overview-sm .page-overview-image::before {
    top: 0;
    left: 0;
    width: 42.5992779783%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .section-page-overview-sm .page-overview-image::after {
    inset: auto;
    right: 0;
    bottom: 0;
    aspect-ratio: 207/118;
    width: 74.7292418773%;
    height: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.local-nav {
  padding: 5rem 0rem;
  background: rgba(230, 225, 200, 0.5);
}
.local-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.75rem;
}
.local-nav__list a {
  display: block;
  color: inherit;
}
.local-nav__img {
  position: relative;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  aspect-ratio: 280/175;
}
.local-nav__img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.local-nav__img::before {
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  background: url("../images/hyakunenfood/localnav_bg.png") center/contain no-repeat #c81414;
  content: "";
}
.local-nav__title {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.625rem;
}
.local-nav__title::after {
  width: 1rem;
  height: 1rem;
  display: block;
  background: url("../images/common/icon_arrow_right.svg") center/contain no-repeat;
  content: "";
}
.local-nav__description {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.625rem;
}
@media screen and (width <= 768px) {
  .local-nav {
    padding: 1.875rem 0rem;
  }
}

.japan-nav__map {
  max-width: 48.75rem;
  margin: 0 auto;
}
.japan-nav svg .st0 {
  fill: #e6e1c8;
}
.japan-nav svg .st1 {
  fill: none;
  stroke: #5e3f0a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.japan-nav svg .st5 {
  fill: #5e3f0a;
}
.japan-nav svg .st4 {
  fill: #fff;
}
.japan-nav svg .st2 {
  fill: none;
  stroke: #000;
}
.japan-nav svg .st6 {
  fill: #e3c97c;
}
.japan-nav svg .st10 {
  fill: #e0a498;
}
.japan-nav svg .st8 {
  fill: #b4a279;
}
.japan-nav svg .st3 {
  fill: #da9ca7;
}
.japan-nav svg .st9 {
  fill: #7799ac;
}
.japan-nav svg .st7 {
  fill: #a680a5;
}
.japan-nav__area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.0625rem 1fr 0.0625rem 1fr 0.0625rem 1fr 0.0625rem 1fr 0.0625rem 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 0.0625rem;
  max-width: 45.625rem;
  margin: 1.25rem auto 0rem;
  font-family: "Ineter", sans-serif;
}
.japan-nav__area-list a {
  color: inherit;
}
.japan-nav__area-list .area-list-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
}
.japan-nav__area-list .area-list-item-area01 .japan-nav__area {
  background: #e3c97c;
}
.japan-nav__area-list .area-list-item-area01 .japan-nav__pref-list {
  background: rgba(227, 201, 124, 0.5);
}
.japan-nav__area-list .area-list-item-area02 .japan-nav__area {
  background: #e0a498;
}
.japan-nav__area-list .area-list-item-area02 .japan-nav__pref-list {
  background: rgba(224, 164, 152, 0.5);
}
.japan-nav__area-list .area-list-item-area03 .japan-nav__area {
  background: #b4a279;
}
.japan-nav__area-list .area-list-item-area03 .japan-nav__pref-list {
  background: rgba(180, 162, 121, 0.5);
}
.japan-nav__area-list .area-list-item-area04 .japan-nav__area {
  background: #da9ca7;
}
.japan-nav__area-list .area-list-item-area04 .japan-nav__pref-list {
  background: rgba(218, 156, 167, 0.5);
}
.japan-nav__area-list .area-list-item-area05 .japan-nav__area {
  background: #97b7c9;
}
.japan-nav__area-list .area-list-item-area05 .japan-nav__pref-list {
  background: rgba(151, 183, 201, 0.5);
}
.japan-nav__area-list .area-list-item-area06 .japan-nav__area {
  background: #bf9fbe;
}
.japan-nav__area-list .area-list-item-area06 .japan-nav__pref-list {
  background: rgba(191, 159, 190, 0.5);
}
.japan-nav__area {
  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;
  padding: 0.5rem 1.125rem;
}
.japan-nav__pref-list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0.5rem 1.125rem;
  text-align: center;
}
@media screen and (width <= 1068px) {
  .japan-nav__area-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (width <= 768px) {
  .japan-nav__area-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.name-navi__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.75rem, 1fr));
  gap: 1rem;
}
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
.news-list .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1.25rem 0rem;
  border-bottom: 1px dashed #e6e1c8;
}
.news-list .news__item a {
  display: block;
  color: inherit;
  text-decoration: underline;
}
.news-list .news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5.625rem;
          flex: 0 0 5.625rem;
}
.news-list .news__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (width <= 768px) {
  .news-list {
    margin-top: 0rem;
    margin-bottom: 1.25rem;
  }
  .news-list .news__item {
    display: block;
    padding: 0.625rem 0rem;
  }
  .news-list .news__title {
    margin-top: 0.625rem;
  }
}

.btn {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  border-radius: 0.3125rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.btn span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.btn::after {
  width: 1rem;
  height: 1rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 0;
  margin-left: auto;
}
.btn-static {
  padding: 1rem;
}
.btn-mini {
  padding: 0.5rem 1rem;
}
.btn-auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-180 {
  width: 100%;
  max-width: 11.25rem;
}
.btn-350 {
  width: 100%;
  max-width: 21.875rem;
}
.btn-100p {
  width: 100%;
}
.btn-primary {
  color: #fff;
  background: #c81414;
}
.btn-primary.btn-icon-download::after {
  background: url("../images/common/icon_download_white.svg") center/contain no-repeat;
}
.btn-primary.btn-icon-external::after {
  background: url("../images/common/icon_external_white.svg") center/contain no-repeat;
}
.btn-secondary {
  color: #5e3f0a;
  background: #e6e1c8;
}
.btn-border {
  color: #5e3f0a;
  background: #fff;
  border: 1px solid;
}
.btn-disabled {
  background: #eFeFef;
  border: 1px solid #ccc;
  pointer-events: none;
}
.btn-icon-download::after {
  background: url("../images/common/icon_download.svg") center/contain no-repeat;
  content: "";
}
.btn-icon-external::after {
  background: url("../images/common/icon_external.svg") center/contain no-repeat;
  content: "";
}
.btn-icon-arrow-right::after {
  background: url("../images/common/icon_arrow_right.svg") center/contain no-repeat;
  content: "";
}
.btn-icon-arrow-bottom::after {
  background: url("../images/common/icon_arrow_bottom.svg") center/contain no-repeat;
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    text-decoration: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    text-decoration: none;
  }
}

.section-contact {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
.section-contact h3 {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (width <= 768px) {
  .section-contact {
    line-height: 1.7;
    font-size: 0.875rem;
    font-weight: 400;
  }
  .section-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.7;
  }
}

.heading-2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media screen and (width <= 768px) {
  .heading-2 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}

.heading-3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}
@media screen and (width <= 768px) {
  .heading-3 {
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
}

.heading-search::before {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1lh;
  margin-right: 10px;
  vertical-align: top;
  background: url("../images/common/icon_search_red.svg") center/contain no-repeat;
  content: "";
}

ul:not([class]),
ol:not([class]) {
  display: block;
  padding-left: 1.4em;
}
ul:not([class]) > *:first-child,
ol:not([class]) > *:first-child {
  margin-top: 0 !important;
}
ul:not([class]) > *:last-child,
ol:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
ul:not([class]) > :where(*),
ol:not([class]) > :where(*) {
  margin-top: 0.5em;
}

.list-none {
  padding-left: 0;
  list-style: none;
}

.box {
  padding: 2rem;
  background: #f6f6f6;
  border-radius: 0.625rem;
}
.box > *:first-child {
  margin-top: 0 !important;
}
.box > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (width <= 768px) {
  .box {
    padding: 1.625rem;
  }
}

.box-secondary {
  padding: 2rem;
  background: #e6e1c8;
  border-radius: 0.625rem;
}
.box-secondary > *:first-child {
  margin-top: 0 !important;
}
.box-secondary > *:last-child {
  margin-bottom: 0 !important;
}
@media screen and (width <= 768px) {
  .box-secondary {
    padding: 1.625rem;
  }
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.buttons > * {
  -ms-flex-preferred-size: 21.875rem;
      flex-basis: 21.875rem;
}

.notice {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: calc(1em + 0.9375rem);
  text-indent: calc(-1em - 0.9375rem);
}
.notice > *, .notice::before {
  text-indent: 0;
}
.notice::before {
  display: inline-block;
  width: calc(1em + 0.9375rem);
  content: "※";
}

.txt-thankyou {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
  color: #c81414;
}
@media screen and (width <= 768px) {
  .txt-thankyou {
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 400;
  }
}

.btn-pagetop {
  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;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.btn-pagetop img {
  width: 30%;
  height: auto;
}

/* アクセシビリティ対策*/
.visible-hidden {
  display: none;
}

/* へぎそば用 */
.jirei-item__certification-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.page-frontpage .top-header {
  position: relative;
  z-index: 100;
  padding: 0rem 2.9375rem;
}
.page-frontpage .top-header .header__logo {
  width: 12.8125rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0rem 0rem 0.625rem 0.625rem;
}
.page-frontpage .top-header .gnav__toggle {
  color: #000;
  background: #fff;
}
.page-frontpage .top-header .gnav__toggle span {
  background: #000;
}
@media screen and (width <= 768px) {
  .page-frontpage .top-header {
    padding: 0rem 0.625rem;
  }
  .page-frontpage .top-header .header__logo {
    width: 10.125rem;
    padding: 1rem;
  }
}
.page-frontpage .section-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 37.5rem;
  padding-bottom: 1.875rem;
  color: #fff;
  background: url("../images/top/kv_bg.jpg") center bottom/100% auto #c81414;
}
.page-frontpage .section-mv .mv__slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  height: calc(100% - 9.25rem);
  overflow: hidden;
  background: #000;
  clip-path: ellipse(71.6666666667% 110.8965517241% at 50% -11%);
}
.page-frontpage .section-mv .mv__slider .js-swiper {
  height: 100%;
}
.page-frontpage .section-mv .mv__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-frontpage .section-mv .mv__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (width <= 1200px) {
  .page-frontpage .section-mv .mv__slider {
    clip-path: ellipse(86% 110.8965517241% at 50% -11%);
  }
}
@media screen and (width <= 900px) {
  .page-frontpage .section-mv .mv__slider {
    clip-path: ellipse(114.6666666667% 110.8965517241% at 50% -11%);
  }
}
@media screen and (width <= 768px) {
  .page-frontpage .section-mv {
    min-height: 31.25rem;
    padding-bottom: 1.875rem;
  }
  .page-frontpage .section-mv .mv__slider {
    height: calc(100% - 49.0666666667vw);
    clip-path: none;
    clip-path: ellipse(190.9333333333% 100.904159132% at 50% -1%);
  }
  .page-frontpage .section-mv .mv__title {
    margin-top: 1.875rem;
  }
}
.page-frontpage .section-news {
  padding: 6.25rem 0rem 0rem;
}
.page-frontpage .section-news h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (width <= 768px) {
  .page-frontpage .section-news {
    padding: 1.875rem 0rem;
  }
}
.page-frontpage .index-wrap {
  padding: 0rem 0rem 5.625rem;
}
.page-frontpage .section-index {
  position: relative;
  padding: 5rem 0rem;
}
.page-frontpage .section-index__bg-wrap {
  position: absolute;
  inset: 0;
  right: 100%;
  z-index: -1;
  overflow: hidden;
}
.page-frontpage .section-index__bg {
  position: absolute;
  width: 100vw;
  height: 100%;
}
.page-frontpage .section-index__bg-01, .page-frontpage .section-index__bg-02 {
  position: absolute;
}
.page-frontpage .section-index__bg-01 {
  background: #c81414;
}
.page-frontpage .section-index__bg-02 {
  background: #e6e1c8;
}
.page-frontpage .section-index__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 59.5rem;
  margin: 0 auto;
}
.page-frontpage .section-index__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0rem 1.25rem;
  opacity: 0;
}
.page-frontpage .section-index__title-wrap::before {
  width: 5.625rem;
  height: 5.625rem;
  display: block;
  background: #c81414;
  border-radius: 50%;
  content: "";
}
.page-frontpage .section-index__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-frontpage .section-index__title img {
  width: 1.875rem;
}
.page-frontpage .section-index__title span {
  display: inline-block;
  padding: 0rem 0.625rem;
  background: -webkit-gradient(linear, right top, left top, from(#c81414), to(#c81414)) no-repeat;
  background: linear-gradient(to left, #c81414, #c81414) no-repeat;
  background-position: top right;
  background-size: 0.125rem 0;
}
.page-frontpage .section-index__more {
  margin-top: 2.1875rem;
}
.page-frontpage .section-index__more a {
  font-size: 0.8125rem;
  position: relative; /** 矢印の基準 **/
  display: block;
  color: #c81414;
  text-align: center;
  text-decoration: none;
}
.page-frontpage .section-index__more a::before {
  width: 3.75rem;
  height: 3.75rem;
  display: block;
  border: 1px solid;
  border-radius: 50%;
  content: "";
}
.page-frontpage .section-index__more a::after {
  width: 3.125rem;
  height: 0.5rem;
  position: absolute; /**  矢印 **/
  top: 1.875rem;
  left: 0;
  display: block;
  background: url("../images/top/icon_arrow02.svg") center/contain no-repeat;
  -webkit-transform: translate(-1.875rem, -50%);
          transform: translate(-1.875rem, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
.page-frontpage .section-index__more a:hover::after {
  -webkit-transform: translate(-0.625rem, -50%);
          transform: translate(-0.625rem, -50%);
}
.page-frontpage .section-index__image {
  position: relative;
}
.page-frontpage .section-index__image .image-01,
.page-frontpage .section-index__image .image-02 {
  display: block;
  background: #fff;
}
.page-frontpage .section-index__image .image-01 img,
.page-frontpage .section-index__image .image-02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  opacity: 0;
}
.page-frontpage .section-index__image .image-01:hover,
.page-frontpage .section-index__image .image-02:hover {
  opacity: 1;
}
.page-frontpage .section-index__image .image-01 {
  position: relative;
}
.page-frontpage .section-index__image .image-02 {
  position: absolute;
}
.page-frontpage .section-index__image .z-front {
  z-index: 2;
}
.page-frontpage .section-index.is-anime-finished .section-index__image .image-01 img,
.page-frontpage .section-index.is-anime-finished .section-index__image .image-02 img {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.page-frontpage .section-index.is-anime-finished .section-index__image .image-01:hover img,
.page-frontpage .section-index.is-anime-finished .section-index__image .image-02:hover img {
  opacity: 0.4 !important;
}
@media screen and (width <= 768px) {
  .page-frontpage .section-index {
    padding: 0.5rem 0rem;
  }
}
@media screen and (width <= 550px) {
  .page-frontpage .section-index__body {
    gap: 0rem;
  }
  .page-frontpage .section-index__title-wrap {
    gap: 0.5rem;
  }
  .page-frontpage .section-index__title-wrap::before {
    width: 3.125rem;
    height: 3.125rem;
  }
  .page-frontpage .section-index__title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .page-frontpage .section-index__title img {
    width: 1.5rem;
  }
  .page-frontpage .section-index__more {
    margin-top: 0.3125rem;
  }
  .page-frontpage .section-index__more a {
    font-size: 0.75rem;
  }
  .page-frontpage .section-index__more a::before {
    width: 2.875rem;
    height: 2.875rem;
  }
  .page-frontpage .section-index__more a::after {
    width: 2.8125rem;
    height: 0.375rem;
    top: 1.4375rem;
    -webkit-transform: translate(-1.75rem, -50%);
            transform: translate(-1.75rem, -50%);
  }
  .page-frontpage .section-index__more a:hover::after {
    -webkit-transform: translate(-0.875rem, -50%);
            transform: translate(-0.875rem, -50%);
  }
}
.page-frontpage .section-index:nth-child(odd) .section-index__bg-01 {
  width: 52vw;
  height: 16.125rem;
  inset: 30% 48% auto auto;
  background: url("../images/top/index_bg_01_01.png") center/auto 100%;
}
.page-frontpage .section-index:nth-child(odd) .section-index__bg-02 {
  inset: auto auto 0 52%;
  width: 20.75rem;
  height: auto;
  aspect-ratio: 332/258;
  background: url("../images/top/index_bg_01_02.png") center/auto 100%;
}
.page-frontpage .section-index:nth-child(odd) .section-index__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-frontpage .section-index:nth-child(odd) .section-index__image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50rem;
          flex: 0 1 50rem;
  margin: 0.9375rem 0rem;
}
.page-frontpage .section-index:nth-child(odd) .section-index__image {
  padding-top: 11.25%;
  padding-left: 30%;
}
.page-frontpage .section-index:nth-child(odd) .section-index__image .image-02 {
  top: 0;
  left: 0;
  width: 35%;
}
@media screen and (width <= 768px) {
  .page-frontpage .section-index:nth-child(odd) .section-index__bg-01 {
    width: 52vw;
    height: 16.125rem;
    inset: 3.75rem auto auto 0;
    width: 65.3333333333%;
    height: auto;
    aspect-ratio: 245/132;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__bg-02 {
    inset: 8.75rem 0 auto auto;
    width: 34.6666666667%;
    height: auto;
    aspect-ratio: 130/120;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__title-wrap {
    padding-left: 0;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__image-wrap {
    margin-top: 4.125rem;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__image {
    padding-top: 11.4754098361%;
    padding-left: 27.868852459%;
  }
  .page-frontpage .section-index:nth-child(odd) .section-index__image .image-02 {
    width: 35.4098360656%;
  }
}
.page-frontpage .section-index:nth-child(even) {
  padding-bottom: 0;
}
.page-frontpage .section-index:nth-child(even) .section-index__bg {
  position: absolute;
  inset: 0;
}
.page-frontpage .section-index:nth-child(even) .section-index__bg-01 {
  width: 39.75rem;
  height: 24.375rem;
  bottom: 6.875rem;
  left: calc(50vw - 15rem);
  z-index: 1;
  background: url("../images/top/index_bg_02_01.png") center/auto 100%;
}
.page-frontpage .section-index:nth-child(even) .section-index__bg-02 {
  width: 20.75rem;
  height: 14.1875rem;
  top: 12.5rem;
  right: calc(50vw + 8.75rem);
  background: url("../images/top/index_bg_02_02.png") center/auto 100%;
}
.page-frontpage .section-index:nth-child(even) .section-index__image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.5625rem;
          flex: 0 1 46.5625rem;
  margin: 0.9375rem 0rem;
}
.page-frontpage .section-index:nth-child(even) .section-index__image {
  padding-right: 24.8322147651%;
  padding-bottom: 20.1342281879%;
}
.page-frontpage .section-index:nth-child(even) .section-index__image .image-02 {
  right: 0;
  bottom: 0;
  width: 37.5838926174%;
}
@media screen and (width <= 768px) {
  .page-frontpage .section-index:nth-child(even) .section-index__bg {
    position: absolute;
    inset: 0;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__bg-01 {
    inset: 6.5625rem 0 auto auto;
    width: 71.4666666667%;
    height: auto;
    aspect-ratio: 268/173;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__bg-02 {
    inset: 7.5rem auto auto 0;
    width: 32%;
    height: auto;
    aspect-ratio: 120/100;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__title-wrap {
    padding-right: 0.5rem;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__image-wrap {
    margin-top: 3.875rem;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__image {
    padding-right: 16.1616161616%;
    padding-bottom: 22.2222222222%;
  }
  .page-frontpage .section-index:nth-child(even) .section-index__image .image-02 {
    right: 0;
    bottom: 0;
    width: 30.303030303%;
    aspect-ratio: 90/108;
  }
}

.page-hyakunenfood .section-hyakunenfood .hyakunenfood__description {
  margin-top: 4rem;
}
.page-hyakunenfood .section-hyakunenfood .japan-nav {
  margin-top: 2rem;
}

.page-hyakunenfood-about .l-content-m > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-about .l-content-m > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-about .section-about .about {
  display: block;
}
.page-hyakunenfood-about .section-about .about > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-about .section-about .about > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-about .section-about .about > :where(*) {
  margin-top: 4rem;
}
.page-hyakunenfood-about .section-entry .entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-hyakunenfood-about .section-entry .entry > * {
  -ms-flex-preferred-size: 21.875rem;
      flex-basis: 21.875rem;
}

.page-hyakunenfood-supporter .nav-anchor {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-hyakunenfood-supporter .nav-anchor > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-supporter .nav-anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page-hyakunenfood-supporter .nav-anchor > * {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.page-hyakunenfood-supporter .section-support-wrap {
  display: block;
  margin-top: 6.5rem;
}
.page-hyakunenfood-supporter .section-support-wrap > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-supporter .section-support-wrap > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-supporter .section-support-wrap > :where(*) {
  margin-top: 6.5rem;
}
.page-hyakunenfood-supporter .support {
  display: block;
  margin-top: 3rem;
}
.page-hyakunenfood-supporter .support > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-supporter .support > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-supporter .support > :where(*) {
  margin-top: 3rem;
}
.page-hyakunenfood-supporter .support__title {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  padding-left: 2.1875rem;
}
.page-hyakunenfood-supporter .support__title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5625rem;
  height: 1lh;
  background: #c81414;
  content: "";
  clip-path: polygon(0 calc(50% - 0.03125rem), 100% calc(50% - 0.03125rem), 100% calc(50% + 0.03125rem), 0 calc(50% + 0.03125rem));
}
.page-hyakunenfood-supporter .support__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
}
.page-hyakunenfood-supporter .support__detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44.5544554455%;
          flex: 0 0 44.5544554455%;
}
.page-hyakunenfood-supporter .support__pdf {
  margin-top: 2rem;
}
.page-hyakunenfood-supporter .support__member {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.495049505%;
          flex: 0 0 50.495049505%;
}
.page-hyakunenfood-supporter .support .member {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-hyakunenfood-supporter .support .member__item {
  padding: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 0.3125rem;
}
.page-hyakunenfood-supporter .support .member__img {
  aspect-ratio: 133/85;
}
.page-hyakunenfood-supporter .support .member__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-hyakunenfood-supporter .support .member__name {
  margin-top: 1rem;
}
@media screen and (width <= 968px) {
  .page-hyakunenfood-supporter .support .member {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hyakunenfood-supporter .support .member__img {
    aspect-ratio: initial;
    text-align: center;
  }
  .page-hyakunenfood-supporter .support .member__img img {
    width: auto;
    max-width: 133px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-supporter .section-support-wrap {
    display: block;
    margin-top: 5rem;
  }
  .page-hyakunenfood-supporter .section-support-wrap > *:first-child {
    margin-top: 0 !important;
  }
  .page-hyakunenfood-supporter .section-support-wrap > *:last-child {
    margin-bottom: 0 !important;
  }
  .page-hyakunenfood-supporter .section-support-wrap > :where(*) {
    margin-top: 5rem;
  }
  .page-hyakunenfood-supporter .support {
    display: block;
    margin-top: 5rem;
  }
  .page-hyakunenfood-supporter .support > *:first-child {
    margin-top: 0 !important;
  }
  .page-hyakunenfood-supporter .support > *:last-child {
    margin-bottom: 0 !important;
  }
  .page-hyakunenfood-supporter .support > :where(*) {
    margin-top: 5rem;
  }
  .page-hyakunenfood-supporter .support__title {
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 400;
  }
  .page-hyakunenfood-supporter .support__body {
    display: block;
  }
  .page-hyakunenfood-supporter .support__pdf {
    text-align: center;
  }
  .page-hyakunenfood-supporter .support__member {
    margin-top: 2rem;
  }
  .page-hyakunenfood-supporter .support .member__item {
    padding: 0.625rem;
  }
}

.page-hyakunenfood-kataribe .nav-anchor {
  margin-top: 2.5rem;
}
.page-hyakunenfood-kataribe .nav-anchor ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.625rem;
}
.page-hyakunenfood-kataribe .kataribe-list {
  display: block;
}
.page-hyakunenfood-kataribe .kataribe-list > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-kataribe .kataribe-list > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-kataribe .kataribe-list > :where(*) {
  margin-top: 2rem;
}
.page-hyakunenfood-kataribe .kataribe-item__head {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.3125rem 0.625rem 0.3125rem 1.25rem;
  color: #fff;
}
.page-hyakunenfood-kataribe .kataribe-item-dento .kataribe-item__head {
  background: #c81414;
}
.page-hyakunenfood-kataribe .kataribe-item-kindai .kataribe-item__head {
  background: #91784b;
}
.page-hyakunenfood-kataribe .kataribe-item-mirai .kataribe-item__head {
  background: #236e5a;
}
.page-hyakunenfood-kataribe .kataribe-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-top: 1.25rem;
}
.page-hyakunenfood-kataribe .kataribe-item__main {
  -ms-flex-preferred-size: 42.5rem;
      flex-basis: 42.5rem;
  -ms-flex-negative: 2;
      flex-shrink: 2;
}
.page-hyakunenfood-kataribe .kataribe-item__food {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 700;
}
.page-hyakunenfood-kataribe .kataribe-item__title {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.page-hyakunenfood-kataribe .kataribe-item__bumon {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1.875rem;
  margin: 0;
  margin-top: 1.5rem;
  padding: 0.3125rem 1.875rem;
  background: #f0f0f0;
  border-radius: 9999px;
}
.page-hyakunenfood-kataribe .kataribe-item__bumon dt,
.page-hyakunenfood-kataribe .kataribe-item__bumon dd {
  margin: 0;
  padding: 0;
}
.page-hyakunenfood-kataribe .kataribe-item__profile {
  margin-top: 1.5rem;
  padding: 0.5rem 0rem;
  border-top: 1px solid #976b1e;
  border-bottom: 1px solid #976b1e;
}
.page-hyakunenfood-kataribe .kataribe-item .profile__name {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 700;
}
.page-hyakunenfood-kataribe .kataribe-item .profile__desc {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.page-hyakunenfood-kataribe .kataribe-item__locale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 1.5rem;
}
.page-hyakunenfood-kataribe .kataribe-item__pref {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.1875rem 1.25rem;
  line-height: 1.5rem;
  background: #e6e1c8;
}
.page-hyakunenfood-kataribe .kataribe-item__organization {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.1875rem;
  line-height: 1.5rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.page-hyakunenfood-kataribe .kataribe-item__organization a {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 400;
  display: block;
  color: #c81414;
  line-height: 1.5rem;
  text-decoration: underline;
  word-break: break-all;
}
.page-hyakunenfood-kataribe .kataribe-item__organization a::after {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  margin-left: 0.5rem;
  background: url("../images/common/icon_external_red.svg") center/contain no-repeat;
  content: "";
}
.page-hyakunenfood-kataribe .kataribe-item__sub {
  -ms-flex-preferred-size: 18.75rem;
      flex-basis: 18.75rem;
}
.page-hyakunenfood-kataribe .kataribe-item__img {
  text-align: center;
}
.page-hyakunenfood-kataribe .kataribe-item__img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 12.5rem;
}
.page-hyakunenfood-kataribe .kataribe-item__link {
  margin-top: 1rem;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-kataribe .kataribe-item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    margin-top: 1.25rem;
  }
  .page-hyakunenfood-kataribe .kataribe-item__main {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .page-hyakunenfood-kataribe .kataribe-item__title {
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 400;
  }
  .page-hyakunenfood-kataribe .kataribe-item__bumon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
    padding: 0.3125rem 0.9375rem;
  }
  .page-hyakunenfood-kataribe .kataribe-item__sub {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.page-hyakunenfood-kataribe .out-period a {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.page-hyakunenfood-stampralley {
  /* ____________________ 202412　デジタルスタプラリー追加分 ____________________ */
}
.page-hyakunenfood-stampralley :where(p) {
  margin: 0;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 1.25rem 0;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper .ttl {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.4375rem;
  padding: 0.3125rem 0;
  color: #fff;
  text-align: center;
  background: #91784b;
  border-radius: 0.3125rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper .txt {
  line-height: 1.7;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.1875rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper .url {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.1875rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper .url a {
  color: initial;
}
.page-hyakunenfood-stampralley .stamprally-2024 .info-upper .url a:hover {
  text-decoration: underline;
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .info-upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .info-upper .txt,
  .page-hyakunenfood-stampralley .stamprally-2024 .info-upper .ttl,
  .page-hyakunenfood-stampralley .stamprally-2024 .info-upper .url {
    font-size: 1rem;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.875rem 0;
  padding: 0.3125rem;
  color: #fff;
  text-align: center;
  background: #ae0e16;
  border-radius: 1.875rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  margin: 1.875rem 0;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 12.6875rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow li .icon {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  width: 1.875rem;
  margin-bottom: 0.5rem;
  padding: 0.1875rem 0.3125rem;
  color: #fff;
  text-align: center;
  background: #91784b;
  border-radius: 0.3125rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow li .qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow li .qr img {
  width: 4.875rem;
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .flow li {
    width: calc((100% - 1.5rem) / 2);
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .flow li img {
    width: auto;
    max-width: 220px;
    margin: auto;
  }
}
@media (width <= 450px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .flow li {
    width: 100%;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-txt {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0.9375rem;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .flow-txt {
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting {
  margin-bottom: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 0.0625rem solid #e6e1c8;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting dt {
  font-size: 0.875rem;
  padding: 0.625rem;
  text-align: center;
  background: #e6e1c8;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting dd {
  margin: 0;
  padding: 0.625rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting dd p {
  font-size: 0.8125rem;
  word-break: break-all;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting-ttl {
  margin-bottom: 0.625rem;
  font-weight: bold;
  border-bottom: 0.0625rem solid;
}
.page-hyakunenfood-stampralley .stamprally-2024 .flow-setting .mt {
  margin-top: 0.9375rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .fs-mini {
  font-size: 0.75rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  display: block;
  width: 80%;
  margin: 0.9375rem auto;
  padding: 0.9375rem 0;
  color: #91784b;
  text-align: center;
  border: 0.0625rem solid #91784b;
  border-radius: 3.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn:hover {
  opacity: 0.7;
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn-area {
  margin: 1.875rem 0;
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn-prize {
  position: relative;
  color: #fff;
  background: #ae0e16;
  border-color: #ae0e16;
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn-prize::before {
  position: absolute;
  top: -1.5625rem;
  left: calc((100% - 8.4375rem) / 2);
  display: inline-block;
  width: 8.4375rem;
  padding: 0.3125rem 0.625rem;
  color: #ae0e16;
  background: #fff;
  border: 0.0625rem solid #ae0e16;
  border-radius: 0.3125rem;
  content: "※日々更新中！";
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .btn-prize::before {
    font-size: 0.8125rem;
    top: -1.25rem;
    left: calc((100% - 7.625rem) / 2);
    width: 6.25rem;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn-flier::before {
  position: absolute;
  top: calc((100% - 1.125rem) / 2);
  right: 1.875rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/hyakunenfood/stamprally/2024/ic_download.svg") no-repeat;
  content: "";
}
.page-hyakunenfood-stampralley .stamprally-2024 .btn-sns::before {
  position: absolute;
  top: calc((100% - 0.875rem) / 2);
  right: 1.875rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/hyakunenfood/stamprally/2024/ic_external.svg") no-repeat;
  content: "";
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .btn {
    width: 100%;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .btn-flier, .page-hyakunenfood-stampralley .stamprally-2024 .btn-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0.3125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .btn-flier::before, .page-hyakunenfood-stampralley .stamprally-2024 .btn-sns::before {
    position: relative;
    right: initial;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info {
  width: 100%;
  margin: auto;
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info iframe {
  display: block;
  width: 100%;
  height: 38.125rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact {
  font-size: 0.8125rem;
  display: table;
  width: 100%;
  table-layout: fixed;
  border-top: 0.0625rem solid #e6e1c8;
  border-bottom: 0.0625rem solid #e6e1c8;
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-ttl {
  display: table-cell;
  width: 24.2424242424%;
  padding: 1.25rem;
  font-weight: 600;
  line-height: 170%;
  text-align: center;
  vertical-align: middle;
  background: #f5f3e9;
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-body {
  font-size: 0.75rem;
  display: table-cell;
  width: 80%;
  padding: 1.25rem;
  line-height: 220%;
  vertical-align: middle;
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-body span {
  display: inline-block;
  margin: 0 0.625rem 0 0;
  font-weight: 600;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact {
    font-size: 0.75rem;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-ttl {
    font-size: 1.0625rem;
    display: block;
    width: 100%;
    padding: 0.625rem;
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-body {
    font-size: 0.8125rem;
    display: block;
    width: 100%;
    padding: 0.625rem 0.625rem 1.25rem;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact {
  font-size: 1rem;
  margin: 1.875rem 0 0;
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact {
    font-size: 0.8125rem;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-body {
  font-size: 1rem;
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info .kataribe-contact-body {
    font-size: 0.8125rem;
  }
}
@media (width <= 768px) {
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info {
    width: 100%;
    padding: 0.625rem;
  }
  .page-hyakunenfood-stampralley .stamprally-2024 .section-info iframe {
    height: 100vw;
  }
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution {
  font-size: 0.75rem;
  padding-top: 0.625rem;
  border-top: 0.0625rem dashed #cfcfcf;
  border-bottom: 0.0625rem dashed #cfcfcf;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution p {
  font-size: 0.75rem;
  padding-left: 0.9375rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution p.point {
  text-indent: -0.9375rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution .ttl {
  font-weight: bold;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution ul {
  margin-left: 1.25rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution ul li {
  margin-bottom: 0.625rem;
  list-style: disc;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-area.precaution .info {
  margin-top: 0.625rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .txt-annotation {
  font-size: 0.55rem;
}
.page-hyakunenfood-stampralley .stamprally-2024 .center {
  text-align: center;
}

.page-hyakunenfood-jirei .jirei-download {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-hyakunenfood-jirei .jirei-download > * {
  -ms-flex-preferred-size: 21.875rem;
      flex-basis: 21.875rem;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-jirei .jirei-download {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page-hyakunenfood-jirei .jirei-download > * {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.page-hyakunenfood-jirei .jirei-description {
  line-height: 1.7;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.page-hyakunenfood-jirei-list .section-jirei-list {
  display: block;
  margin-top: 5rem;
}
.page-hyakunenfood-jirei-list .section-jirei-list > *:first-child {
  margin-top: 0 !important;
}
.page-hyakunenfood-jirei-list .section-jirei-list > *:last-child {
  margin-bottom: 0 !important;
}
.page-hyakunenfood-jirei-list .section-jirei-list > :where(*) {
  margin-top: 4rem;
}
.page-hyakunenfood-jirei-list .l-page-body {
  padding-bottom: 6.25rem;
}
@media screen and (width <= 768px) {
  .page-hyakunenfood-jirei-list .section-jirei-list {
    display: block;
    margin-top: 3rem;
  }
  .page-hyakunenfood-jirei-list .section-jirei-list > *:first-child {
    margin-top: 0 !important;
  }
  .page-hyakunenfood-jirei-list .section-jirei-list > *:last-child {
    margin-bottom: 0 !important;
  }
  .page-hyakunenfood-jirei-list .section-jirei-list > :where(*) {
    margin-top: 2rem;
  }
}

.page-link .link-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 2.5rem 3.125rem;
}
.page-link .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem;
  color: #5e3f0a;
  border: 1px solid;
}
.page-link .link-item__img {
  -ms-flex-preferred-size: 8.125rem;
      flex-basis: 8.125rem;
  aspect-ratio: 130/100;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-link .link-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (width <= 768px) {
  .page-link .link-list {
    gap: 1.5rem;
  }
  .page-link .link-item {
    padding-right: 0;
  }
}

.page-link-event .event-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 6.5rem 3.125rem;
}
.page-link-event .event-item::before {
  display: block;
  margin-bottom: 0.5rem;
  background: url("../images/link/event/parts/bg_red.svg") center/contain no-repeat;
  content: "";
  aspect-ratio: 814/44;
}
.page-link-event .event-item__img {
  position: relative;
  background: url("../images/link/event/parts/bg_border.png") left top/100% auto;
  aspect-ratio: 480/240;
}
.page-link-event .event-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-link-event .event-item__ended {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.625rem 1.25rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-link-event .event-item__title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.5rem;
  text-align: center;
}
.page-link-event .event-item__desc {
  margin-top: 0.5rem;
}
.page-link-event .event-item__detail {
  margin-top: 1.3125rem;
  padding: 0.5rem 0rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.page-link-event .event-item__detail dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1.5rem 1fr;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0;
}
.page-link-event .event-item__detail dl dt span {
  display: block;
  padding: 0.1875rem 0.625rem;
  color: #fff;
  background: #5e3f0a;
}
.page-link-event .event-item__detail dl dd {
  margin: 0;
  padding: 0.1875rem 0rem;
}
.page-link-event .event-item__appendix {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1.3125rem;
}
.page-link-event .event-item__appendix dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  margin: 0;
}
.page-link-event .event-item__appendix dl dt::after {
  content: " /";
}
.page-link-event .event-item__appendix dl dd {
  margin: 0;
}
.page-link-event .event-item__link {
  margin-top: 1.3125rem;
  text-align: center;
}

.page-news-detail {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
.page-news-detail .news {
  margin-bottom: 5rem;
}
.page-news-detail .news__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 1.25rem;
}
.page-news-detail .news__body {
  margin-top: 3.125rem;
}

.page-about-foodculturemuseum .l-content-s {
  display: block;
}
.page-about-foodculturemuseum .l-content-s > *:first-child {
  margin-top: 0 !important;
}
.page-about-foodculturemuseum .l-content-s > *:last-child {
  margin-bottom: 0 !important;
}
.page-about-foodculturemuseum .l-content-s > :where(*) {
  margin-top: 4rem;
}
@media screen and (width <= 768px) {
  .page-about-foodculturemuseum .l-content-s {
    display: block;
  }
  .page-about-foodculturemuseum .l-content-s > *:first-child {
    margin-top: 0 !important;
  }
  .page-about-foodculturemuseum .l-content-s > *:last-child {
    margin-bottom: 0 !important;
  }
  .page-about-foodculturemuseum .l-content-s > :where(*) {
    margin-top: 2rem;
  }
}

.page-privacypolicy .heading-2 {
  margin-bottom: 4rem;
}
.page-privacypolicy p {
  word-break: break-all;
}
@media screen and (width <= 768px) {
  .page-privacypolicy .heading-2 {
    margin-bottom: 1.5rem;
  }
}

.table-accesibillity {
  text-align: left;
}
.table-accesibillity th, .table-accesibillity td {
  padding: 10px;
  border: 1px solid #cfcfcf;
}
.table-accesibillity th.center, .table-accesibillity td.center {
  text-align: center;
}
.table-accesibillity th {
  background: #fcfcfc;
}
.table-accesibillity thead {
  background: #fcfcfc;
  text-align: center;
}

.page-redirect .l-content-m {
  text-align: center;
}
.page-redirect .page-overview {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-redirect .page-overview-body {
  text-align: center;
}
.page-redirect .page-overview-title {
  margin: auto;
}
.page-redirect .l-page-body {
  padding-top: 0;
  text-align: center;
}
.page-redirect .l-content-s {
  text-align: center;
}

.d_ib {
  display: inline-block !important;
}
.d_b {
  display: block !important;
}

.fl_l {
  float: left;
}
.fl_r {
  float: right;
}

.ta_r {
  text-align: right;
}
.ta_c {
  text-align: center;
}
.ta_l {
  text-align: left;
}
@media screen and (width <= 768px) {
  .ta_r_sp {
    text-align: right;
  }
  .ta_c_sp {
    text-align: center;
  }
  .ta_l_sp {
    text-align: left;
  }
}

.fw_100 {
  font-weight: 100;
}
.fw_200 {
  font-weight: 200;
}
.fw_300 {
  font-weight: 300;
}
.fw_400 {
  font-weight: 400;
}
.fw_500 {
  font-weight: 500;
}
.fw_600 {
  font-weight: 600;
}
.fw_700 {
  font-weight: 700;
}
.fw_800 {
  font-weight: 800;
}
.fw_900 {
  font-weight: 900;
}
.fw_n {
  font-weight: normal;
}
.fw_b {
  font-weight: bold;
}

.fz_xxs {
  font-size: 0.625rem;
}

.fz_xs {
  font-size: 0.75rem;
}

.fz_s {
  font-size: 0.875rem;
}

.fz_l {
  font-size: 1.125rem;
}

.fz_xl {
  font-size: 1.375rem;
}

.fz_xxl {
  font-size: 1.75rem;
}

.fz_10 {
  font-size: 0.625rem;
}

.fz_11 {
  font-size: 0.6875rem;
}

.fz_12 {
  font-size: 0.75rem;
}

.fz_13 {
  font-size: 0.8125rem;
}

.fz_14 {
  font-size: 0.875rem;
}

.fz_15 {
  font-size: 0.9375rem;
}

.fz_16 {
  font-size: 1rem;
}

.fz_17 {
  font-size: 1.0625rem;
}

.fz_18 {
  font-size: 1.125rem;
}

.fz_19 {
  font-size: 1.1875rem;
}

.fz_20 {
  font-size: 1.25rem;
}

.fz_22 {
  font-size: 1.375rem;
}

.fz_24 {
  font-size: 1.5rem;
}

.fz_26 {
  font-size: 1.625rem;
}

.fz_28 {
  font-size: 1.75rem;
}

.fz_30 {
  font-size: 1.875rem;
}

.fz_32 {
  font-size: 2rem;
}

.fz_34 {
  font-size: 2.125rem;
}

.fz_36 {
  font-size: 2.25rem;
}

.fz_38 {
  font-size: 2.375rem;
}

.fz_40 {
  font-size: 2.5rem;
}

.fz_42 {
  font-size: 2.625rem;
}

.fz_44 {
  font-size: 2.75rem;
}

.fz_46 {
  font-size: 2.875rem;
}

.fz_48 {
  font-size: 3rem;
}

.fz_50 {
  font-size: 3.125rem;
}

.m_0 {
  margin: 0rem;
}

.mt_0 {
  margin-top: 0rem;
}

.mr_0 {
  margin-right: 0rem;
}

.mb_0 {
  margin-bottom: 0rem;
}

.ml_0 {
  margin-left: 0rem;
}

.m_5 {
  margin: 0.3125rem;
}

.mt_5 {
  margin-top: 0.3125rem;
}

.mr_5 {
  margin-right: 0.3125rem;
}

.mb_5 {
  margin-bottom: 0.3125rem;
}

.ml_5 {
  margin-left: 0.3125rem;
}

.m_10 {
  margin: 0.625rem;
}

.mt_10 {
  margin-top: 0.625rem;
}

.mr_10 {
  margin-right: 0.625rem;
}

.mb_10 {
  margin-bottom: 0.625rem;
}

.ml_10 {
  margin-left: 0.625rem;
}

.m_15 {
  margin: 0.9375rem;
}

.mt_15 {
  margin-top: 0.9375rem;
}

.mr_15 {
  margin-right: 0.9375rem;
}

.mb_15 {
  margin-bottom: 0.9375rem;
}

.ml_15 {
  margin-left: 0.9375rem;
}

.m_20 {
  margin: 1.25rem;
}

.mt_20 {
  margin-top: 1.25rem;
}

.mr_20 {
  margin-right: 1.25rem;
}

.mb_20 {
  margin-bottom: 1.25rem;
}

.ml_20 {
  margin-left: 1.25rem;
}

.m_25 {
  margin: 1.5625rem;
}

.mt_25 {
  margin-top: 1.5625rem;
}

.mr_25 {
  margin-right: 1.5625rem;
}

.mb_25 {
  margin-bottom: 1.5625rem;
}

.ml_25 {
  margin-left: 1.5625rem;
}

.m_30 {
  margin: 1.875rem;
}

.mt_30 {
  margin-top: 1.875rem;
}

.mr_30 {
  margin-right: 1.875rem;
}

.mb_30 {
  margin-bottom: 1.875rem;
}

.ml_30 {
  margin-left: 1.875rem;
}

.m_35 {
  margin: 2.1875rem;
}

.mt_35 {
  margin-top: 2.1875rem;
}

.mr_35 {
  margin-right: 2.1875rem;
}

.mb_35 {
  margin-bottom: 2.1875rem;
}

.ml_35 {
  margin-left: 2.1875rem;
}

.m_40 {
  margin: 2.5rem;
}

.mt_40 {
  margin-top: 2.5rem;
}

.mr_40 {
  margin-right: 2.5rem;
}

.mb_40 {
  margin-bottom: 2.5rem;
}

.ml_40 {
  margin-left: 2.5rem;
}

.m_45 {
  margin: 2.8125rem;
}

.mt_45 {
  margin-top: 2.8125rem;
}

.mr_45 {
  margin-right: 2.8125rem;
}

.mb_45 {
  margin-bottom: 2.8125rem;
}

.ml_45 {
  margin-left: 2.8125rem;
}

.m_50 {
  margin: 3.125rem;
}

.mt_50 {
  margin-top: 3.125rem;
}

.mr_50 {
  margin-right: 3.125rem;
}

.mb_50 {
  margin-bottom: 3.125rem;
}

.ml_50 {
  margin-left: 3.125rem;
}

.m_55 {
  margin: 3.4375rem;
}

.mt_55 {
  margin-top: 3.4375rem;
}

.mr_55 {
  margin-right: 3.4375rem;
}

.mb_55 {
  margin-bottom: 3.4375rem;
}

.ml_55 {
  margin-left: 3.4375rem;
}

.m_60 {
  margin: 3.75rem;
}

.mt_60 {
  margin-top: 3.75rem;
}

.mr_60 {
  margin-right: 3.75rem;
}

.mb_60 {
  margin-bottom: 3.75rem;
}

.ml_60 {
  margin-left: 3.75rem;
}

.m_65 {
  margin: 4.0625rem;
}

.mt_65 {
  margin-top: 4.0625rem;
}

.mr_65 {
  margin-right: 4.0625rem;
}

.mb_65 {
  margin-bottom: 4.0625rem;
}

.ml_65 {
  margin-left: 4.0625rem;
}

.m_70 {
  margin: 4.375rem;
}

.mt_70 {
  margin-top: 4.375rem;
}

.mr_70 {
  margin-right: 4.375rem;
}

.mb_70 {
  margin-bottom: 4.375rem;
}

.ml_70 {
  margin-left: 4.375rem;
}

.m_75 {
  margin: 4.6875rem;
}

.mt_75 {
  margin-top: 4.6875rem;
}

.mr_75 {
  margin-right: 4.6875rem;
}

.mb_75 {
  margin-bottom: 4.6875rem;
}

.ml_75 {
  margin-left: 4.6875rem;
}

.m_80 {
  margin: 5rem;
}

.mt_80 {
  margin-top: 5rem;
}

.mr_80 {
  margin-right: 5rem;
}

.mb_80 {
  margin-bottom: 5rem;
}

.ml_80 {
  margin-left: 5rem;
}

.m_85 {
  margin: 5.3125rem;
}

.mt_85 {
  margin-top: 5.3125rem;
}

.mr_85 {
  margin-right: 5.3125rem;
}

.mb_85 {
  margin-bottom: 5.3125rem;
}

.ml_85 {
  margin-left: 5.3125rem;
}

.m_90 {
  margin: 5.625rem;
}

.mt_90 {
  margin-top: 5.625rem;
}

.mr_90 {
  margin-right: 5.625rem;
}

.mb_90 {
  margin-bottom: 5.625rem;
}

.ml_90 {
  margin-left: 5.625rem;
}

.m_95 {
  margin: 5.9375rem;
}

.mt_95 {
  margin-top: 5.9375rem;
}

.mr_95 {
  margin-right: 5.9375rem;
}

.mb_95 {
  margin-bottom: 5.9375rem;
}

.ml_95 {
  margin-left: 5.9375rem;
}

.m_100 {
  margin: 6.25rem;
}

.mt_100 {
  margin-top: 6.25rem;
}

.mr_100 {
  margin-right: 6.25rem;
}

.mb_100 {
  margin-bottom: 6.25rem;
}

.ml_100 {
  margin-left: 6.25rem;
}

.p_0 {
  padding: 0rem;
}

.pt_0 {
  padding-top: 0rem;
}

.pr_0 {
  padding-right: 0rem;
}

.pb_0 {
  padding-bottom: 0rem;
}

.pl_0 {
  padding-left: 0rem;
}

.p_5 {
  padding: 0.3125rem;
}

.pt_5 {
  padding-top: 0.3125rem;
}

.pr_5 {
  padding-right: 0.3125rem;
}

.pb_5 {
  padding-bottom: 0.3125rem;
}

.pl_5 {
  padding-left: 0.3125rem;
}

.p_10 {
  padding: 0.625rem;
}

.pt_10 {
  padding-top: 0.625rem;
}

.pr_10 {
  padding-right: 0.625rem;
}

.pb_10 {
  padding-bottom: 0.625rem;
}

.pl_10 {
  padding-left: 0.625rem;
}

.p_15 {
  padding: 0.9375rem;
}

.pt_15 {
  padding-top: 0.9375rem;
}

.pr_15 {
  padding-right: 0.9375rem;
}

.pb_15 {
  padding-bottom: 0.9375rem;
}

.pl_15 {
  padding-left: 0.9375rem;
}

.p_20 {
  padding: 1.25rem;
}

.pt_20 {
  padding-top: 1.25rem;
}

.pr_20 {
  padding-right: 1.25rem;
}

.pb_20 {
  padding-bottom: 1.25rem;
}

.pl_20 {
  padding-left: 1.25rem;
}

.p_25 {
  padding: 1.5625rem;
}

.pt_25 {
  padding-top: 1.5625rem;
}

.pr_25 {
  padding-right: 1.5625rem;
}

.pb_25 {
  padding-bottom: 1.5625rem;
}

.pl_25 {
  padding-left: 1.5625rem;
}

.p_30 {
  padding: 1.875rem;
}

.pt_30 {
  padding-top: 1.875rem;
}

.pr_30 {
  padding-right: 1.875rem;
}

.pb_30 {
  padding-bottom: 1.875rem;
}

.pl_30 {
  padding-left: 1.875rem;
}

.p_35 {
  padding: 2.1875rem;
}

.pt_35 {
  padding-top: 2.1875rem;
}

.pr_35 {
  padding-right: 2.1875rem;
}

.pb_35 {
  padding-bottom: 2.1875rem;
}

.pl_35 {
  padding-left: 2.1875rem;
}

.p_40 {
  padding: 2.5rem;
}

.pt_40 {
  padding-top: 2.5rem;
}

.pr_40 {
  padding-right: 2.5rem;
}

.pb_40 {
  padding-bottom: 2.5rem;
}

.pl_40 {
  padding-left: 2.5rem;
}

.p_45 {
  padding: 2.8125rem;
}

.pt_45 {
  padding-top: 2.8125rem;
}

.pr_45 {
  padding-right: 2.8125rem;
}

.pb_45 {
  padding-bottom: 2.8125rem;
}

.pl_45 {
  padding-left: 2.8125rem;
}

.p_50 {
  padding: 3.125rem;
}

.pt_50 {
  padding-top: 3.125rem;
}

.pr_50 {
  padding-right: 3.125rem;
}

.pb_50 {
  padding-bottom: 3.125rem;
}

.pl_50 {
  padding-left: 3.125rem;
}

.p_55 {
  padding: 3.4375rem;
}

.pt_55 {
  padding-top: 3.4375rem;
}

.pr_55 {
  padding-right: 3.4375rem;
}

.pb_55 {
  padding-bottom: 3.4375rem;
}

.pl_55 {
  padding-left: 3.4375rem;
}

.p_60 {
  padding: 3.75rem;
}

.pt_60 {
  padding-top: 3.75rem;
}

.pr_60 {
  padding-right: 3.75rem;
}

.pb_60 {
  padding-bottom: 3.75rem;
}

.pl_60 {
  padding-left: 3.75rem;
}

.p_65 {
  padding: 4.0625rem;
}

.pt_65 {
  padding-top: 4.0625rem;
}

.pr_65 {
  padding-right: 4.0625rem;
}

.pb_65 {
  padding-bottom: 4.0625rem;
}

.pl_65 {
  padding-left: 4.0625rem;
}

.p_70 {
  padding: 4.375rem;
}

.pt_70 {
  padding-top: 4.375rem;
}

.pr_70 {
  padding-right: 4.375rem;
}

.pb_70 {
  padding-bottom: 4.375rem;
}

.pl_70 {
  padding-left: 4.375rem;
}

.p_75 {
  padding: 4.6875rem;
}

.pt_75 {
  padding-top: 4.6875rem;
}

.pr_75 {
  padding-right: 4.6875rem;
}

.pb_75 {
  padding-bottom: 4.6875rem;
}

.pl_75 {
  padding-left: 4.6875rem;
}

.p_80 {
  padding: 5rem;
}

.pt_80 {
  padding-top: 5rem;
}

.pr_80 {
  padding-right: 5rem;
}

.pb_80 {
  padding-bottom: 5rem;
}

.pl_80 {
  padding-left: 5rem;
}

.p_85 {
  padding: 5.3125rem;
}

.pt_85 {
  padding-top: 5.3125rem;
}

.pr_85 {
  padding-right: 5.3125rem;
}

.pb_85 {
  padding-bottom: 5.3125rem;
}

.pl_85 {
  padding-left: 5.3125rem;
}

.p_90 {
  padding: 5.625rem;
}

.pt_90 {
  padding-top: 5.625rem;
}

.pr_90 {
  padding-right: 5.625rem;
}

.pb_90 {
  padding-bottom: 5.625rem;
}

.pl_90 {
  padding-left: 5.625rem;
}

.p_95 {
  padding: 5.9375rem;
}

.pt_95 {
  padding-top: 5.9375rem;
}

.pr_95 {
  padding-right: 5.9375rem;
}

.pb_95 {
  padding-bottom: 5.9375rem;
}

.pl_95 {
  padding-left: 5.9375rem;
}

.p_100 {
  padding: 6.25rem;
}

.pt_100 {
  padding-top: 6.25rem;
}

.pr_100 {
  padding-right: 6.25rem;
}

.pb_100 {
  padding-bottom: 6.25rem;
}

.pl_100 {
  padding-left: 6.25rem;
}

.trm_m > *:first-child {
  margin-top: 0 !important;
}
.trm_m > *:last-child {
  margin-bottom: 0 !important;
}

.force-break {
  white-space: pre-wrap; /* Preserve whitespace and allow wrapping */
}

.no-link {
  cursor: default;
  pointer-events: none;
}

a.line {
  text-decoration: underline;
  word-break: break-all;
}

.out-period a {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.c-main {
  color: #c81414 !important;
}

.txt-2xl {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 400;
}
.txt-2xl-b {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 700;
}
.txt-xl {
  line-height: 1.7;
  font-size: 1.25rem;
  font-weight: 400;
}
.txt-xl-b {
  line-height: 1.7;
  font-size: 1.25rem;
  font-weight: 700;
}
.txt-lg {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 400;
}
.txt-lg-b {
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 700;
}
.txt-m {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
.txt-m-b {
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 700;
}
.txt-sm {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 400;
}
.txt-sm-b {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 700;
}
.txt-xs {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 400;
}
.txt-xs-b {
  line-height: 1.7;
  font-size: 0.75rem;
  font-weight: 700;
}