@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: "BIZ UDPGothic", sans-serif;
  font-optical-sizing: auto;
}

::selection {
  background-color: #FFEF27;
  color: #333;
}

html * {
  font-feature-settings: "palt";
  word-break: break-all;
  line-break: strict;
}

html,
body {
  position: relative;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.4rem;
  line-height: 1.6875;
}

:where(body, button, input, textarea, select) {
  color: #333333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #EA6001;
}
a:hover {
  text-decoration: none;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #EA6001;
}
.header {
  position: relative;
  z-index: 3;
}

.headerLogo {
  max-width: 160px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.headerLogoLink {
  display: block;
  transition: opacity 0.3s;
}
.headerLogoLink:hover {
  opacity: 0.7;
}

.headerPageLogo {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  width: 160px;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.headerPageLogoLink {
  display: block;
  padding: 15px;
  transition: opacity 0.3s;
}
.headerPageLogoLink:hover {
  opacity: 0.7;
}

.headerToggle {
  border: none;
  background: none;
  background-image: url(../images/bg-nav.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 0 0 auto;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 5;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  transition: opacity 0.3s;
}
.headerToggle:hover {
  opacity: 0.7;
}

.headerToggleLine {
  background-color: #EA6001;
  width: 30px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.headerToggleLine:nth-child(1) {
  top: -24px;
}
.headerToggleLine:nth-child(3) {
  top: 24px;
}
.-active .headerToggleLine:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.-active .headerToggleLine:nth-child(2) {
  display: none;
}
.-active .headerToggleLine:nth-child(3) {
  top: 0;
  transform: rotate(-45deg);
}

.searchNavWrap {
  position: fixed;
  top: 110px;
  right: 20px;
  z-index: 3;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.searchNavToggle {
  border: none;
  background: none;
  background-image: url(../images/bg-search-nav.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  width: 152px;
  height: 40px;
  margin: 0 0 0 auto;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.searchNavToggle:hover {
  opacity: 0.7;
}

.searchNavContents {
  margin-top: -2px;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.searchNavContents[aria-hidden=false] {
  grid-template-rows: 1fr;
  opacity: 1;
}

.searchInner {
  overflow: hidden;
}

.searchNav {
  background-color: #fff;
  border-radius: 5px 0 5px 5px;
  width: 300px;
  padding: 20px;
}
.searchNav .pageButton {
  font-weight: bold;
  padding: 0.5em 5px;
  position: relative;
}
.searchNav .pageButton::before {
  content: "";
  background-image: url(../images/icon-search-02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  min-width: 18px;
  width: 18px;
  height: 18px;
  transition: background 0.3s;
}
.searchNav .pageButton:hover::before {
  background-image: url(../images/icon-search-01.png);
}

.searchNavTitle {
  border-bottom: 1px solid #B3B3B3;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}

.searchNavList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-bottom: 15px;
}

.searchNavLink {
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.googleSearch {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.googleSearchInput {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #B3B3B3;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
  font-size: 1.6rem;
  width: 100%;
  padding: 5px 10px;
}

.googleSearchBtn {
  width: 35px;
  min-width: 35px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: #EA6001;
  border: 0;
  transition: opacity 0.3s;
}
.googleSearchBtn:hover {
  opacity: 0.7;
}

.googleSearchBtnIcon {
  width: 18px;
}

.globalNavWrap {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: -100vw;
  opacity: 0;
  z-index: 4;
  transition: right 0.6s, opacity 0.3s;
}
.-active .globalNavWrap {
  right: 0;
  opacity: 1;
}

.globalNav {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 100px 25px 80px;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.globalNavLogo {
  max-width: 160px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.globalNavLogoLink {
  display: block;
  transition: opacity 0.3s;
}
.globalNavLogoLink:hover {
  opacity: 0.7;
}

.globalNavContents {
  display: grid;
  gap: 40px;
}

.globalNavTitle {
  border-bottom: 1px dashed #EA6001;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.globalNavList {
  display: grid;
  gap: 10px;
}

.globalNavListItem {
  padding-left: 16px;
  position: relative;
}
.globalNavListItem::before {
  content: "";
  display: block;
  background-color: #EA6001;
  border-radius: 10px;
  width: 4px;
  height: 10px;
  position: absolute;
  top: 6px;
  left: 4px;
}

.globalNavListLabel {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.globalNavChildList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  max-width: 500px;
}
.globalNavChildList .globalNavLink {
  font-size: 1.5rem;
}

.globalNavChildListItem:after {
  content: "/";
  margin-left: 7px;
}

.globalNavLink {
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s;
}
.globalNavLink:hover {
  color: #EA6001;
}

.body {
  background-color: #FBF7EF;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-repeat: repeat;
  background-size: 500px;
}
.body.bgWhite {
  background: none;
  background-color: #fff;
}

.contents {
  padding-bottom: 60px;
}

.fontHead {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.screenReaderText {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

.maxImg {
  width: 100%;
  height: auto;
}

.maxContainer {
  max-width: 1280px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.middleContainer {
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.smallContainer {
  max-width: 860px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 630px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.iframeWrap {
  aspect-ratio: 16/9;
}
.iframeWrap iframe {
  width: 100%;
  height: 100%;
}

.tableScrollOuter {
  margin-left: auto;
  margin-right: auto;
  overflow-x: scroll;
}
.tableScrollOuter:before {
  content: "※スクロールしてご覧ください。";
  font-size: 1.4rem;
  display: block;
  margin-bottom: 5px;
  position: sticky;
  top: 0;
  left: 0;
}
.tableScrollOuter table {
  width: 100%;
  min-width: 1000px;
}

.columnBox {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}
.columnBox.column_sp02 {
  grid-template-columns: repeat(2, 1fr);
}
.columnBox.column_sp03 {
  grid-template-columns: repeat(3, 1fr);
}
.columnBox.column_sp04 {
  grid-template-columns: repeat(4, 1fr);
}

.textFlexCenter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumbOuter {
  width: 90%;
  margin: 0 auto 30px;
  padding: 15px 0;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}

.breadcrumbItem {
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
}
.breadcrumbItem:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #858585;
  border-right: solid 2px #858585;
  transform: rotate(45deg);
}
.breadcrumbItem:last-child:after {
  content: none;
}

.breadcrumbLink {
  color: #333;
  display: block;
  font-size: 1.4rem;
  text-decoration: none;
}
.breadcrumbLink:hover {
  color: #EA6001;
  text-decoration: underline;
}

.sectionTitle {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  width: fit-content;
  margin-inline: auto;
}

.sectionTitleLabel {
  color: #EA6001;
  display: block;
  font-size: 1.6rem;
}

.articleSectionTitle {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 1em;
  position: relative;
}
.articleSectionTitle::before {
  content: "";
  display: block;
  background-color: #EA6001;
  border-radius: 5px;
  width: 12px;
  height: 1.4em;
  position: absolute;
  top: 0;
  left: 0;
}

.pageHead {
  background-color: #F4ECD6;
  background-image: url(../images/bg-page-title.jpg);
  background-size: 400px;
  background-position: center top;
  border-bottom: 4px solid #FF9851;
  position: relative;
  overflow: hidden;
  height: 180px;
}

.pageHeadImg {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

.borderLeftTitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 1em;
  position: relative;
}
.borderLeftTitle::before {
  content: "";
  display: block;
  background-color: #EA6001;
  border-radius: 5px;
  width: 12px;
  height: 1.2em;
  position: absolute;
  top: 0;
  left: 0;
}

.borderBottomTitle {
  border-bottom: 2px solid #EA6001;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 10px;
  padding-bottom: 12px;
}

.pageButton {
  border: none;
  background-color: transparent;
  background-color: #EA6001;
  border: 2px solid #EA6001;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 0.8em 5px;
  transition: background 0.3s, color 0.3s;
}
.pageButton:hover {
  background-color: #fff;
  color: #EA6001;
}

.dataButton {
  border: none;
  background-color: transparent;
  background-color: #EA6001;
  border: 2px solid #EA6001;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 0.8em 5px;
  transition: background 0.3s, color 0.3s;
}
.dataButton[href$=".doc"]:after, .dataButton[href$=".docx"]:after, .dataButton[href$=".xls"]:after, .dataButton[href$=".xlsx"]:after, .dataButton[href$=".pdf"]:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 24px;
  min-width: 24px;
}
.dataButton[href$=".doc"]:after, .dataButton[href$=".docx"]:after {
  background-image: url(../images/icon-word-02.svg);
}
.dataButton[href$=".xls"]:after, .dataButton[href$=".xlsx"]:after {
  background-image: url(../images/icon-excel-02.svg);
}
.dataButton[href$=".pdf"]:after {
  background-image: url(../images/icon-pdf-02.svg);
}
.dataButton:hover {
  background-color: #fff;
  color: #EA6001;
}
.dataButton:hover[href$=".doc"]:after, .dataButton:hover[href$=".docx"]:after {
  background-image: url(../images/icon-word-01.svg);
}
.dataButton:hover[href$=".xls"]:after, .dataButton:hover[href$=".xlsx"]:after {
  background-image: url(../images/icon-excel-01.svg);
}
.dataButton:hover[href$=".pdf"]:after {
  background-image: url(../images/icon-pdf-01.svg);
}

.externalLink[target=_blank]:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 1em;
  min-width: 15px;
  margin-left: 2px;
}
.externalLink[target=_blank]:after {
  background-image: url(../images/icon-window-01.svg);
}

.snsList {
  display: flex;
  align-items: center;
  gap: 10px 25px;
}

.snsLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}
.snsLink:hover {
  opacity: 0.7;
}

.catWrap {
  padding-right: 8px;
  position: relative;
  overflow: hidden;
}
.postListTextBox .catWrap {
  margin-top: -22px;
}

.cat {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  padding: 5px 3px 5px 5px;
  position: relative;
}
.cat:after {
  content: "";
  display: block;
  background-color: inherit;
  width: 8px;
  height: 24.248711306px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: -1px;
  bottom: 0;
  right: -7px;
  margin: auto;
}

.cat01 {
  background-color: #EA6001;
}

.cat02 {
  background-color: #63924F;
}

.cat03 {
  background-color: #D19C05;
}

.cat04 {
  background-color: #15B5D9;
}

.cat05 {
  background-color: #8B67D5;
}

.cat06 {
  background-color: #68AC65;
}

.cat07 {
  background-color: #F34E3F;
}

.cat08 {
  background-color: #CE2426;
}

.no-post {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  padding: 50px 0;
}

.postTabList {
  border-bottom: 4px solid #EA6001;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 0 12px;
}
.pageNews .postTabList {
  margin-bottom: 20px;
}

.postTabButton {
  background: none;
  border: none;
  border: 2px solid #EA6001;
  border-radius: 10px;
  color: #EA6001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 1.2em 5px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.postTabButton:hover {
  background-color: #EA6001;
  color: #fff;
}
.postTabButton.-active {
  background-color: #EA6001;
  color: #fff;
  pointer-events: none;
}

.postList {
  gap: 20px;
}

.newsContents .postListItem:last-child, .linePostList .postListItem:last-child {
  display: none;
}

.postListLink {
  color: inherit;
  display: block;
  text-decoration: none;
  position: relative;
}
.postListLink:hover .postListImg {
  transform: scale(1.1);
}
.postListLink:hover .postListTitle {
  color: #EA6001;
}
.postListLink:hover .postListVegetableTitle {
  color: #EA6001;
}
.postListLink:hover .recipeLinkButton {
  background-color: #fff;
  color: #EA6001;
}

.postListBuySell {
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  z-index: 1;
}
.postListBuySell img {
  width: 100%;
}

.postListImgWrap {
  border: 1px solid #ccc;
  padding-top: 66%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.postListImgWrap .osusume {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #f00;
  padding: 5px 10px;
  z-index: 1;
}

.postListImg {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  transition: transform 0.3s;
}

.postListTextBox {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.postListDate {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}
.postListDate .newIcon {
  color: #E60012;
  font-weight: bold;
}

.postListTitle {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: color 0.3s;
}

.postListMenuTitle {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 25px;
  padding-bottom: 10px;
  position: relative;
}
.postListMenuTitle::before {
  content: "";
  background-image: url(../images/icon-cutlery.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  min-width: 18px;
  width: 18px;
  height: 16px;
  position: absolute;
  top: 3px;
  left: 0;
}
.postListMenuTitle::after {
  content: "";
  background-image: url(../images/border-restaurant.svg);
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.postListText {
  font-size: 1.4rem;
  line-height: 1.4;
  width: 100%;
  transition: color 0.3s;
}
.news .postListText, .pageNews .postListText, .linePostList .postListText {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.postListMenuText {
  font-size: 1.4rem;
  line-height: 1.4;
}

.postListAddress {
  font-size: 1.2rem;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.postListAddress::before {
  content: "";
  background-image: url(../images/icon-area.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  min-width: 14px;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  left: 0;
}

.postListTag {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 3px;
}

.postListTagItem {
  color: #727272;
  font-size: 1rem;
}
.postListTagItem:after {
  content: "/";
  margin-left: 3px;
}
.postListTagItem:last-child:after {
  content: none;
}

.postListVegetableTitle {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
  transition: color 0.3s;
}

.postMovieList.columnBox {
  gap: 40px 30px;
}

.postMovieLabel {
  color: #7D7D7D;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.postMovieTitle {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.postMovieLink {
  border-radius: 30px;
  font-size: 1.4rem;
  line-height: 1.2;
  width: fit-content;
  margin: 5px auto 0;
  padding: 10px 1.2em;
}

.relatedRecipePostList .postListTitle {
  border-bottom: 1px dashed #EA6001;
  margin-top: 15px;
  padding-bottom: 10px;
}

.recipeLinkButton {
  background-color: #EA6001;
  border: 2px solid #EA6001;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  padding: 4px 10px;
  transition: background 0.3s, color 0.3s;
}

.postSearchWrap {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding: 25px 5%;
}

.postSearchTitle {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.postSearchItemWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.postSearchSelectWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px 20px;
  width: 100%;
}

.postSearchSelectDeco {
  width: 20px;
  min-width: 22px;
  height: 22px;
  position: relative;
}
.postSearchSelectDeco:before {
  content: "";
  display: block;
  background-color: #333;
  width: 100%;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(45deg);
}
.postSearchSelectDeco:after {
  content: "";
  display: block;
  background-color: #333;
  width: 100%;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(-45deg);
}

.searchSelect {
  border: 2px solid #EA6001;
  border-radius: 5px;
  width: 90%;
  position: relative;
  overflow: hidden;
}
.searchSelect:before {
  content: "";
  display: block;
  background-color: #EA6001;
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.searchSelect:after {
  content: "";
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 5px;
  right: 18px;
  transform: rotate(45deg);
  pointer-events: none;
}
.searchSelect select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  padding: 0.5em 60px 0.5em 20px;
}

.postSearchButton {
  width: 150px;
  min-width: 150px;
}

.vegetableSearchWrap {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
  padding: 25px 5%;
}
.vegetableSearchWrap .postSearchSelectWrap {
  justify-content: center;
}

.recipeSearchWrap {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
  padding: 25px 5%;
}
.recipeSearchWrap .searchSelect {
  max-width: 300px;
  width: 100%;
}

.archivePagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 50px;
}

.archivePaginationNum {
  border-radius: 5px;
  border: 2px solid #EA6001;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  width: 34px;
  height: 34px;
  transition: 0.3s;
}
.archivePaginationNum.current {
  background-color: #EA6001;
  color: #fff;
}

a.archivePaginationNum:hover {
  background-color: #EA6001;
  color: #fff;
}

.archivePaginationPrev {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  position: relative;
  transition: 0.3s;
}
.archivePaginationPrev:before {
  content: "";
  display: block;
  border-top: solid 2px #444;
  border-right: solid 2px #444;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -12%;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.archivePaginationPrev:hover {
  background-color: #EA6001;
}
.archivePaginationPrev:hover:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.archivePaginationPrev.disable {
  pointer-events: none;
}
.archivePaginationPrev.disable:before {
  border-top: solid 2px #98A6B5;
  border-right: solid 2px #98A6B5;
}

.archivePaginationNext {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  position: relative;
  transition: 0.3s;
}
.archivePaginationNext:before {
  content: "";
  display: block;
  border-top: solid 2px #EA6001;
  border-right: solid 2px #EA6001;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 12%;
  transform: rotate(45deg);
  transition: 0.3s;
}
.archivePaginationNext:hover {
  background-color: #EA6001;
}
.archivePaginationNext:hover:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.archivePaginationNext.disable {
  pointer-events: none;
}
.archivePaginationNext.disable:before {
  border-top: solid 2px #98A6B5;
  border-right: solid 2px #98A6B5;
}

.archiveBorderLeftTitle {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 1em;
  position: relative;
}
.archiveBorderLeftTitle::before {
  content: "";
  display: block;
  background-color: #EA6001;
  border-radius: 5px;
  width: 12px;
  height: 1.2em;
  position: absolute;
  top: 0;
  left: 0;
}

.bannerTraditional {
  display: block;
  max-width: 420px;
  width: 90%;
  margin-inline: auto;
  transition: opacity 0.3s;
}
.bannerTraditional + .postList {
  margin-top: 35px;
}
.bannerTraditional:hover {
  opacity: 0.7;
}

.footer {
  background-color: #F4ECD6;
  border-radius: 50px 50px 0 0;
  padding-top: 50px;
  position: relative;
}

.pagetopWrap {
  position: fixed;
  bottom: 5%;
  right: 20px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body[data-scroll=true] .pagetopWrap {
  opacity: 1;
  visibility: visible;
}

.pagetop {
  border: none;
  background-color: transparent;
  display: block;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}
.pagetop:hover {
  opacity: 0.7;
}

.footerContents {
  display: grid;
  gap: 20px 40px;
}

.footerLogoImg {
  max-width: 235px;
  margin: 0 0 20px;
}

.footerAddressWrap {
  font-size: 1.4rem;
}

.footerAddress {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}

.footerAddressNum {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
}

.footerAddressTel {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

.footerAddressFax::before {
  content: " / ";
}

.footerMenuWrap {
  display: grid;
  gap: 30px 40px;
}

.footerMenuTitle {
  border-bottom: 1px dashed #EA6001;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.footerMenu {
  display: grid;
  gap: 10px;
}

.footerMenuItem {
  padding-left: 16px;
  position: relative;
}
.footerMenuItem::before {
  content: "";
  display: block;
  background-color: #EA6001;
  border-radius: 10px;
  width: 4px;
  height: 10px;
  position: absolute;
  top: 6px;
  left: 4px;
}

.footerMenuLabel {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.footerMenuChildList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  max-width: 500px;
}
.footerMenuChildList .footerMenuLink {
  font-size: 1.5rem;
}

.footerMenuChildListItem:after {
  content: "/";
  margin-left: 7px;
}
.footerMenuChildListItem:last-child:after {
  content: none;
  margin-left: 0;
}

.footerMenuLink {
  color: inherit;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s;
}
.footerMenuLink:hover {
  color: #EA6001;
}

.copyright {
  border-top: 1px solid #D7CFBA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 30px;
  padding: 20px 0;
}

@media (min-width: 768px){
  .spBr {
    display: none;
  }
  .headerLogo {
    max-width: 200px;
  }
  .headerPageLogo {
    border-radius: 0 0 20px 20px;
    width: 200px;
  }
  .headerPageLogoLink {
    padding: 20px;
  }
  .searchNav {
    width: 360px;
  }
  .searchNavTitle {
    font-size: 1.6rem;
  }
  .globalNav {
    padding: 130px 25px 80px;
  }
  .globalNavLogo {
    max-width: 200px;
  }
  .tableScrollOuter {
    overflow-x: visible;
    white-space: wrap;
  }
  .tableScrollOuter:before {
    content: none;
  }
  .tableScrollOuter table {
    min-width: auto;
  }
  .columnBox {
    gap: 20px;
  }
  .columnBox.column_tb01 {
    grid-template-columns: repeat(1, 1fr);
  }
  .columnBox.column_tb02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnBox.column_tb03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnBox.column_tb04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columnBox.column_tb05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .columnBox.column_tb06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .sectionTitle {
    font-size: 4.6rem;
  }
  .articleSectionTitle {
    font-size: 2.8rem;
  }
  .pageTitle {
    font-size: 3.6rem;
  }
  .borderLeftTitle {
    font-size: 2.8rem;
  }
  .borderBottomTitle {
    font-size: 2.4rem;
  }
  .postTabList {
    border-bottom: 6px solid #EA6001;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 8px;
  }
  .pageNews .postTabList {
    margin-bottom: 30px;
  }
  .postTabButton {
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    font-size: 1.5rem;
    position: relative;
  }
  .postTabButton::before {
    content: "";
    display: block;
    background-color: #F4ECD6;
    width: 8px;
    height: calc(100% + 2px);
    position: absolute;
    top: -2px;
    left: -3px;
  }
  .pageNews .postTabButton::before {
    background-color: #FBF7EF;
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: 500px;
  }
  .postTabButton:hover {
    background-color: #EA6001;
    color: #fff;
  }
  .postTabButton:hover::before {
    opacity: 0;
  }
  .postTabButton.-active {
    background-color: #EA6001;
    color: #fff;
    pointer-events: none;
  }
  .postTabButton.-active::before {
    opacity: 0;
  }
  .postList {
    gap: 30px;
  }
  .newsContents .postListItem:last-child, .linePostList .postListItem:last-child {
    display: block;
  }
  .postListMenuTitle {
    font-size: 2rem;
    padding-left: 35px;
  }
  .postListMenuTitle::before {
    min-width: 24px;
    width: 24px;
    height: 22px;
  }
  .postListMenuText {
    font-size: 1.6rem;
  }
  .postListTagItem {
    font-size: 1.2rem;
  }
  .postListVegetableTitle {
    font-size: 2rem;
  }
  .postMovieTitle {
    font-size: 2rem;
  }
  .postMovieLink {
    font-size: 1.6rem;
    margin: 10px 0 0;
  }
  .postSearchWrap {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    padding: 50px 5%;
  }
  .postSearchItemWrap {
    width: fit-content;
  }
  .postSearchSelectWrap {
    flex-direction: row;
  }
  .searchSelect {
    width: calc(50% - 31px);
  }
  .vegetableSearchWrap {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    padding: 50px 5%;
  }
  .vegetableSearchWrap .postSearchTitle {
    width: 180px;
    text-align: right;
  }
  .recipeSearchWrap {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    padding: 50px 5%;
  }
  .archivePagination {
    gap: 12px;
  }
  .archivePaginationNum {
    font-size: 2rem;
    width: 48px;
    height: 48px;
  }
  .archivePaginationPrev {
    width: 48px;
    height: 48px;
  }
  .archivePaginationPrev:before {
    border-top: solid 4px #EA6001;
    border-right: solid 4px #EA6001;
    width: 18px;
    height: 18px;
    right: -14%;
  }
  .archivePaginationPrev:hover:before {
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
  }
  .archivePaginationPrev.disable:before {
    border-top: solid 4px #98A6B5;
    border-right: solid 4px #98A6B5;
  }
  .archivePaginationNext {
    width: 48px;
    height: 48px;
  }
  .archivePaginationNext:before {
    border-top: solid 4px #EA6001;
    border-right: solid 4px #EA6001;
    width: 18px;
    height: 18px;
    right: 14%;
  }
  .archivePaginationNext:hover:before {
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
  }
  .archivePaginationNext.disable:before {
    border-top: solid 4px #98A6B5;
    border-right: solid 4px #98A6B5;
  }
  .archiveBorderLeftTitle {
    font-size: 2.8rem;
  }
  .bannerTraditional + .postList {
    margin-top: 70px;
  }
  .pagetop {
    width: 60px;
    height: 60px;
  }
  .footerMenuWrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .copyright {
    font-size: 1.4rem;
    margin-top: 40px;
  }
}

@media (min-width: 960px){
  body {
    font-size: 1.6rem;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .tbBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
  .headerLogo {
    max-width: 300px;
    top: 50px;
    left: 3%;
  }
  .headerPageLogo {
    width: 280px;
    top: 0;
    left: 3%;
  }
  .headerToggle {
    top: 50px;
    right: 3%;
  }
  .searchNavWrap {
    top: 140px;
    right: 3%;
  }
  .globalNavWrap {
    width: 500px;
    right: -500px;
  }
  .globalNav {
    padding: 160px 25px 50px;
  }
  .globalNavLogo {
    max-width: 226px;
    top: 50px;
    left: 4%;
  }
  .globalNavListItem::before {
    top: 8px;
  }
  .contents {
    padding-bottom: 100px;
  }
  .maxContainer {
    width: 95%;
  }
  .middleContainer {
    width: 95%;
  }
  .smallContainer {
    width: 95%;
  }
  .container {
    width: 95%;
  }
  .tableScrollOuter table {
    width: revert-layer;
  }
  .columnBox {
    gap: 30px;
  }
  .columnBox.column_pc01 {
    grid-template-columns: repeat(1, 1fr);
  }
  .columnBox.column_pc02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnBox.column_pc03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnBox.column_pc04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columnBox.column_pc05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .columnBox.column_pc06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .breadcrumbOuter {
    width: 100%;
    margin: 0 auto 50px;
    padding: 15px 5%;
  }
  .articleSectionTitle {
    font-size: 3.6rem;
    padding-left: 0.8em;
  }
  .pageHead {
    height: 200px;
  }
  .pageTitle {
    font-size: 4rem;
    margin-bottom: 60px;
  }
  .borderLeftTitle {
    font-size: 3.6rem;
    padding-left: 0.8em;
  }
  .postTabButton {
    font-size: 1.6rem;
  }
  .postMovieList.columnBox {
    gap: 60px 30px;
  }
  .postSearchWrap {
    gap: 20px 5%;
    padding: 50px 8%;
  }
  .postSearchSelectWrap {
    width: fit-content;
  }
  .searchSelect {
    width: 300px;
  }
  .vegetableSearchWrap {
    gap: 20px 40px;
    padding: 50px 40px;
  }
  .recipeSearchWrap {
    gap: 20px 40px;
    padding: 50px 40px;
  }
  .archivePagination {
    margin-top: 80px;
  }
  .archiveBorderLeftTitle {
    font-size: 3.6rem;
    padding-left: 0.8em;
  }
  .footer {
    border-radius: 100px 100px 0 0;
  }
  .pagetopWrap {
    right: 100px;
  }
  .pagetopWrap.scrolled {
    position: absolute;
    top: -25px;
    bottom: auto;
  }
  .footerContents {
    grid-template-columns: 250px 1fr;
  }
  .footerAddressTel {
    pointer-events: none;
  }
  .footerAddressFax::before {
    content: none;
  }
  .footerMenuItem::before {
    top: 8px;
  }
}

@media (min-width: 1140px){
  .vegetableSearchWrap .postSearchTitle {
    width: fit-content;
  }
}

@media (min-width: 1200px){
  .footerMenuWrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common.css.map*/