html{scroll-behavior:smooth;}
@charset "UTF-8";
/*
PC版コンテンツ幅指定します
*/
.contents-area,
.distribution.information-area,
.seac.information-area,
.health.information,
.food.information-area,
.float-button__img,
.l-footer__mark {
  /*
  編集可能 コンテンツ幅の修正は以下の数値を変更
  ex. max-width: 750px; -> max-width: 600px;
  */
  max-width: 600px;
}

.g-header__nav a {
  font-size: 16px !important;  /* ← 好きなサイズに変更。たとえば20px, 22pxなど */
  
}


/*
////////////////////////////////////////////////////////////////
SP版のデザインに切り替わるpx数の設定(メディアクエリ)
////////////////////////////////////////////////////////////////
*/
/*
  編集可能 コンテンツ幅の修正は以下の数値を変更
  ex. @media screen and (max-width: 750px) -> @media screen and (max-width: 600px)
*/
@media screen and (max-width: 600px) {
  body {
    padding-bottom: calc(env(safe-area-inset-bottom) + 44px + 26vw);
  }

  /*
  ▼ これ以降は変更しないでください ▼ 
  理由 : 各商品ごとのSP版の商品情報エリア(information),フッタ(footer)のデザインを指定しているため
  ※フッタデザインが変更となる場合のみ、変更可能
  */
  .food.information-area {
    padding-bottom: 0;
  }

  .food.information {
    margin-top: 10px;
    padding-top: 0;
  }

  .food.information:nth-of-type(n + 2) {
    padding-top: 0px;
  }

  .food.information__title {
    color: #393939;
    padding: 3px 10px;
    font-size: 18px;
    font-weight: bold;
    background: #e5e5e5;
    border-radius: 20px;
    border: solid 1px #828282;
    display: flex;
    align-items: center;
  }

  .food.information__title.active {
    border-radius: 20px 20px 0 0;
  }

  .food.information__title button {
    display: inline;
    margin-right: 5px;
    background: #aaaaaa;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    position: relative;
  }

  .food.information__title button span {
    border-bottom: #f9f8f9 solid 3px;
    width: 15px;
    position: absolute;
    top: 9px;
    right: 3px;
    transform: rotate(180deg);
  }

  .food.information__title button span:nth-child(1) {
    transform: rotate(90deg);
  }

  .food.information__title button span.active:nth-child(1) {
    transform: rotate(180deg);
  }

  .food.information__list {
    margin-top: 0;
    border: solid 1px #828282;
    border-top-width: 0;
    border-radius: 0 0 20px 20px;
    padding: 10px;
    display: none;
    opacity: 0;
  }

  .food.information__description {
    font-size: 14px;
  }

  .food.information__list.active {
    opacity: 1;
  }

  .float-button__img {
    max-width: 100%;
  }

  .l-footer__top-button--sp {
    display: inline-block;
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
  }

  .l-footer__company--pc {
    display: none;
  }

  .l-footer__company--sp {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .shizen .l-footer__company--sp li {
    width: 33.3%;
  }

  .s-shizen .l-footer__company--sp li {
    width: 50%;
  }

  .l-footer__company--sp li img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
  }

  .l-footer__company--sp li a {
    width: 100%;
  }

  .l-footer__company--sp li:last-child {
    width: 100%;
  }

  /* ▲ ここまで変更禁止 ▲ */
}

/*
////////////////////////////////////////////////////////////////
購入ボタンのデザインの編集
.button__under        : 購入ボタンエリア下部にある、立体的に見せるための線のデザイン
.button-area__button  : 購入ボタン画像の位置
anim_v                : 購入ボタンの上下アニメーションの振れ幅
////////////////////////////////////////////////////////////////
*/
/* ▼ 購入ボタンの下部にある線 ▼ */
.button__under {
  background-color: #267200;
  border-radius: 6.375em;
  width: 85%;
  height: auto;
  aspect-ratio: 1/ 0.2;
  bottom: 8%;
}

/* ▲ 購入ボタンの下部にある線 ▲ */

/* ▼ 購入ボタン画像の位置 ▼ */
.button-area__button {
  bottom: 6%;
}

/* ▲ 購入ボタン画像の位置 ▲ */

/* ▼ 購入ボタンの上下アニメーションの振れ幅 ▼ */
@keyframes anim_v {
  0% {
    transform: translateY(8%);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(8%);
  }
}

/* ▲ 購入ボタンの上下アニメーションの振れ幅 ▲ */

/* ▼ 購入ボタンに関するメディアクエリはここに記述 ▼ */

/* ▲ 購入ボタンに関するメディアクエリはここに記述 ▲ */



/*=========
accordion
=========*/
  
.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f5f5f5;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}





/* ▼ Q&Aのスタイル ▼ */
.qa-list dl dt,
.qa-list dl dd {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .qa-list dl dt,
  .qa-list dl dd {
    text-align: left;
  }
}


.qa-list dl {
    position: relative;
    margin: 30px 0 0;
    cursor: pointer;
    border: 1px solid #DDD;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::after {
    position: absolute;
    top: 27px;
    right: 26px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::after {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
    font-weight: bold;
    background: #DDD;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    content: 'Q.';
    color: #f39c2d;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #27a639;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
 .qa-list dl {
    margin: 10px 0 0;
}
.qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
}
.qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}



.g-header {
  width: 100%; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000;
}
.g-header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px; position:relative; }
.g-header__logo img { display: block; height: 40px; }
.g-header__nav ul { display: flex; gap: 28px; align-items: center; margin: 0; padding: 0; }
.g-header__nav li { list-style: none; }
.g-header__nav a { color: #228c32; text-decoration: none; font-size: 1.1rem; padding: 8px 0; font-weight: 600; transition: color .2s; }
.g-header__nav a:hover, .g-header__contact-btn:hover { color: #f39c2d; }

.g-header__nav a,
.g-header__contact-btn {
  line-height: 2.0;  /* ←ここで縦方向の文字間（行間）が広がる */
}


.g-header__contact-btn {
  display: inline-block; /* 必須 */
  padding: 8px 30px;     /* 左右余裕大きめ */
  background: #228c32;
  color: #fff !important;
  border: none;
  border-radius: 20px;   /* pill型 */
  line-height: 1.2;
  font-size: 1rem;
  font-weight: bold;
  transition: background .2s;
}


.g-header__contact-btn {
  box-sizing: border-box;       /* パディング込みで幅を計算 */
  white-space: nowrap;          /* テキストが折り返されないように */
}




.g-header__contact-btn:hover { background: #f39c2d; color: #fff !important; }
.g-header__toggle { display: none; background: none; border: none; cursor: pointer; width: 38px; height: 38px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; position: relative; z-index: 1100; }
.g-header__toggle span { display: block; width: 28px; height: 3px; background: #228c32; border-radius: 2px; transition: all .3s; }
.g-header__toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.g-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.g-header__toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.g-header__overlay { display: none; position: fixed; top: 0; left: 0; right:0; bottom:0; background: rgba(0,0,0,0.25); z-index:1050; }
@media (max-width: 900px) {
  .g-header__inner { height: 54px; padding: 0 12px; }
  .g-header__nav ul { gap: 14px; font-size: 1em; }
}
@media (max-width: 720px) {
  .g-header__nav {
    position: fixed; top: 54px; left: 0; right: 0; width: 100vw; background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08); z-index: 1099;
    display: none; transition: .3s;
  }
  .g-header__nav.is-open { display: block; animation: fadeInNav .3s; }
  @keyframes fadeInNav { from { opacity: 0; transform: translateY(-10px);} to { opacity: 1; transform: translateY(0);} }
  .g-header__nav ul { flex-direction: column; padding: 22px 0 12px 0; gap: 0; text-align: center; }
  .g-header__toggle { display: flex; }
  .g-header__overlay.is-open { display: block; }
}



.g-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
/* ヘッダー高さ分、bodyを下げて隠れないように */
body {
  padding-top: 70px !important; /* PC時はヘッダーの高さ分、調整OK */
}
@media (max-width: 900px) {
  .g-header { height: 54px; }
  body { padding-top: 54px !important; }
}


.g-header__logo {
  display: flex;
  align-items: center;
  max-width: 180px;
  min-width: 0;
  overflow: hidden;
}
.g-header__logo img {
  height: 40px;
  max-width: 100%;
  min-width: 0;
  width: auto !important;
  aspect-ratio: auto 180 / 40;
  display: block;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 900px) {
  .g-header__logo { max-width: 130px; }
  .g-header__logo img { height: 30px; }
}



.g-header__contact-btn {
  padding: 8px 48px !important;
}


@media screen and (max-width: 600px) {
  body.law-page .food.information__list,
  body.privacy-page .food.information__list {
    border: none !important;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}


@media (max-width: 720px) {
  .g-header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .g-header__nav ul li {
    width: 100%;
    text-align: center;
  }

  .g-header__nav ul li a {
    display: block;               /* ← blockにして高さ出す */
    max-width: 200px;
    margin: 0 auto;
    padding: 14px 0;
    font-size: 1.6rem;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
  }

  .g-header__nav ul li:last-child a {
    border-bottom: none;
  }
}


.g-header__nav ul li a {
  padding: 16px 0;
  line-height: 1.8;
  font-size: 1.8rem;
}
@media (max-width: 720px) {
  .g-header__contact-btn {
    margin: 20px 0; /* ← 上下に12pxずつ余白を追加 */
    display: block; /* 縦方向に余白を効かせるため */
  }
}

@media (max-width: 720px) {
  .g-header__nav ul li:last-child {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .g-header__nav ul li:last-child a.g-header__contact-btn {
    display: block;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    margin: 0 auto !important;
    border-bottom: none !important;
  }
}

/*__AUTO_PADDING_BOTTOM__*/
@media (max-width: 720px){ body{ padding-bottom: 140px; } }

/*__FLOAT_POINTER_EVENTS__*/
.float-button{ pointer-events:none; }
.float-button a, .float-button img, .float-button source{ pointer-events:auto; }
