.food-item {
    border: 1px solid #cccccc;
}
.parent ul{
      display: none;
    }
    .active {
      background-color: lightgreen;
    }
    .active ul {
      display: block;
    }

.bold_red {
  color: #cf4343;
  font-weight: bold;
}

 .fs-c-list li{
margin-bottom: 10px;
}

.menu-icon {
  fill: #ffffff;
}

@font-face {
  font-family: 'icomoon';
  src:  url('https://shippo.itembox.cloud/item/unique-fonts/fonts/icomoon.eot?t=20260314193718?p49qxy');
  src:  url('https://shippo.itembox.cloud/item/unique-fonts/fonts/icomoon.eot?t=20260314193718?p49qxy#iefix') format('embedded-opentype'),
    url('https://shippo.itembox.cloud/item/unique-fonts/fonts/icomoon.ttf?t=20260314193718?p49qxy') format('truetype'),
    url('https://shippo.itembox.cloud/item/unique-fonts/fonts/icomoon.woff?t=20260314193718?p49qxy') format('woff'),
    url('https://shippo.itembox.cloud/item/unique-fonts/fonts/icomoon.svg?t=20260314193718?p49qxy#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cat-food:before {
  content: "\e901";
}
.icon-cat-icon:before {
  content: "\e900";
}

/* メールマガジン登録フォームを非表示にするCSS*/
.fs-body-newsletter-subscribe .fs-c-inputInformation,
.fs-body-newsletter-subscribe .fs-l-block--center {
   display: none;
}
/* a  支援ボタンのスタイル */
.s-button a{
  color: inherit;
  text-decoration: none;
 color: #ffffff;
    font-size: large;
    font-weight: bold;
}

.buttonIconText {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 64px 8px 8px;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #B71C1C;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonIconText__reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 64px;
}

.buttonIconText_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  overflow: hidden;
}

.buttonIconText_text {
  flex-shrink: 1;
  width: 100%;
}

@media (any-hover: hover) {
  .buttonIconText {
    transition: background-color 0.2s;
  }

  .buttonIconText_icon {
    transition: transform 0.2s;
  }

  .buttonIconText:hover {
    background-color: #192168;
  }

  .buttonIconText:hover .buttonIconText_icon {
    transform: translateX(4px);
  }

  .buttonIconText:hover .buttonIconText_icon__left {
    transform: translateX(-4px);
  }
}

/* 左矢印アイコンのスタイル */
.iconArrowLeft {
  rotate: 180deg;
}

/* map */
.geolonia-svg-map
{
 max-width: 700px;
}

.geolonia-svg-map .prefecture
{
  fill: #f7f7f7;
  stroke: #666666;
  cursor: pointer;
}

.geolonia-svg-map .boundary-line
{
  stroke: #999999;
}

h3.hogolist{
margin-left: 3rem;
padding: 1rem 2rem;
border-top: solid 1px #889fbd;
border-bottom: solid 1px #889fbd;
max-width: 350px;
}

/* アコーディオン */
details {
  border: 1px solid #ccc;
}
details:not(:last-child) {
  margin-bottom: 20px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  background: #3a417c;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}

details summary::before {

   content: "";
  background-color: #dedede;
  display: inline-block;
  height: 3rem;
  width: 3rem;
  -webkit-mask: url("");
  mask: url("g");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
 margin-right: 10px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
    content: "";
  background-color: #dedede;
  display: inline-block;
  height: 3rem;
  width: 3rem;
  -webkit-mask: url("");
  mask: url("g");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin-right: 10px;
}
details p {
  margin: 0;
  padding: 20px;
}