@charset "UTF-8";
/* =========================================================
  Foundation
  ========================================================== */
/* Reset
  --------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Base
  --------------------------------------------------------- */
/* ヘッダーが固定位置にある場合 */
body.admin-bar header {
  top: 32px; /* 管理バーの高さ分だけ下げる */
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px; /* モバイル用の管理バーの高さ分だけ下げる */
  }
}
body {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #000;
  background: #fff;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.display-none {
  display: none;
}

.right-column {
  display: flex;
  grid-area: right;
}

.right-column-main {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  flex: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .right-column-main {
    max-width: 640px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: auto;
  z-index: 100;
}

.l-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: #fff;
  z-index: 100;
}

.hamburger-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  transform: translateY(-100%);
  /* 初期状態で隠す */
  transition: transform 0.5s ease-in-out;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hamburger-menu .g-hamburger-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューが開いた状態 */
.hamburger-menu.open {
  transform: translateY(0);
  /* メニュー表示 */
}

.bread-crumb {
  display: flex;
  gap: 8px;
  height: 44px;
  margin-top: 56px;
  padding: 12px 16px;
  background-color: #FAFAFA;
}
.bread-crumb img {
  width: 16px;
}

.p-news {
  background: #FFF5FD;
  padding: 8px;
  padding-top: 56px;
}
.p-news .l-news__box {
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}
.p-news .l-news__box .l-news__box__new {
  color: #E74388;
  font-weight: 600;
  font-size: 11px;
}
.p-news .l-news__box .l-news__box__date {
  color: #7d7d7d;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 11px;
  font-size: 11px;
  font-weight: 600;
}

.p-main-visual {
  display: flex;
  flex-direction: column;
  text-shadow: 0px 2px 32px #473417;
  /* 画像とテキストを縦に並べる */
  align-items: center;
  /* 中央寄せ */
  justify-content: flex-start;
  /* 上から順に並べる */
  background: #CCBDA6;
  text-align: center;
  color: #fff;
}

.l-main-visual {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.main-visual-text {
  margin-top: -30%;
  /* 上に移動 */
}

.l-free-word-search {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 40px;
}

.search-area {
  text-align: center;
}

.search-form-title {
  padding-top: 64px;
}
.search-form-title h3 {
  font-size: 34px;
  font-weight: 300;
}
.search-form-title p {
  font-size: 12px;
  color: #E74388;
}

.inner {
  padding: 64px 24px 104px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 40px;
}

.inner-title-form {
  text-align: center;
  font-weight: 600;
  position: relative;
}
.inner-title-form h2 {
  font-size: 25px;
}
.inner-title-form::after {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background-color: #E74388;
}

.frame {
  text-align: left;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #FAFAFA;
}
.frame p {
  font-size: 16px;
}

.selection .l-selection {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.keyboard {
  font-weight: 600;
  border-radius: 16px;
  padding: 12px 16px;
  background-color: #FAFAFA;
  border: #F1F1F1 1px solid;
}

.keyboard.checked {
  color: #fff;
  background-color: #E74388;
  border: none;
  cursor: pointer;
}

.l-button {
  padding-top: 40px;
}

.search-button {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: calc(100% - 24px);
  border-radius: 16px;
  padding: 12px 16px;
  background-color: #E74388;
  border: #F1F1F1 1px solid;
  color: #fff;
  font-weight: 600;
}
.search-button::after {
  position: absolute;
  right: 16px;
  content: "";
  background-image: url(../img/arrow_forward_white.svg);
  width: 24px;
  height: 24px;
}
.search-button a {
  text-decoration: none;
}
.search-button:disabled {
  color: #AAAAAA;
  background-color: #D4D4D4;
  border: none;
  cursor: pointer;
}
.search-button:disabled::after {
  background-image: url(../img/arrow_forward_ios.svg);
}

.back-arrow::after {
  display: none;
}
.back-arrow::before {
  position: absolute;
  left: 16px;
  content: "";
  background-image: url(../img/arrow_back_white.svg);
  width: 24px;
  height: 24px;
}

.none-arrow::after {
  display: none;
}

.divide-area {
  background: url(../img/image_section.png) #E9D7D1 no-repeat center center;
  height: 240px;
}

.l-sub-search-area {
  padding: 64px 24px 104px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 40px;
}

.l-radio-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.s-search-btn {
  position: relative;
  display: block;
  line-height: 150%;
  padding: 16px 16px 16px 48px;
  border-radius: 16px;
  border: 1px solid #F1F1F1;
  font-size: 16px;
  cursor: pointer;
}
.s-search-btn::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(../img/radio_button_unchecked.svg);
  background-size: cover;
}

.color-btn-gray {
  background: #FAFAFA;
}
.color-btn-gray:has(input:checked) {
  color: #E74388;
  background-color: #FFF5FD;
  border: none;
  border: #E74388 1px solid;
}
.color-btn-gray:has(input:checked)::before {
  background-image: url(../img/radio_button_checked.svg);
}

.padding-l16 {
  padding-left: 16px;
}

.free-ingredients-search {
  background: #FAFAFA;
}

.l-checkbox-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.l-checkbox-search .s-search-btn::before {
  display: none;
}

.color-btn-white {
  border: 1px solid #F1F1F1;
  background: #FFF;
}
.color-btn-white:has(input:checked) {
  color: #E74388;
  background-color: #FFF5FD;
  border: none;
  border: #E74388 1px solid;
}

.divide-area-2 {
  position: relative;
}
.divide-area-2 .bg-img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.divide-area-2 .overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.l-footer {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #FAFAFA;
}

.g-inner-footer {
  display: grid;
  gap: 64px;
  text-align: center;
}
.g-inner-footer a {
  text-decoration: underline;
}

.footer-logo {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.footer-menu {
  display: flex;
  flex-direction: column;
}
.footer-menu li {
  padding: 8px 16px;
  font-size: 15px;
}

.left-column {
  display: none;
  padding-top: 56px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .left-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0px;
    grid-area: left;
  }
}
.left-column .bg-img-left-column {
  overflow-x: visible;
  grid-column: 1/span 2; /* 1列目から2列目まで跨ぐ */
  grid-row: 1;
  height: 440px;
  background: url(../img/pc-bg2.png);
}
.left-column .left-column-non-design {
  grid-column: 1; /* 1列目に配置 */
  grid-row: 2; /* 2行目に配置 */
}
.left-column .l-left-column-menu {
  grid-column: 2; /* 2列目に配置 */
  grid-row: 2;
  position: relative;
  max-width: 440px;
}

@media screen and (min-width: 768px) {
  body {
    display: grid;
    grid-auto-columns: 1fr 1fr;
    grid-template-areas: "left right";
    justify-content: center;
  }
}

.l-left-column {
  position: relative;
  right: 0;
}

.l-left-column-menu {
  gap: 40px;
}

.l-left-column-menu__bottom {
  padding: 56px 0 56px;
  position: absolute;
  transform: translateX(50%);
  bottom: 0;
}

.g-hamburger-menu {
  display: grid;
  gap: 28px;
  text-align: center;
}
.g-hamburger-menu h2 {
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 8px;
}
.g-hamburger-menu p {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  display: inline-block;
  position: relative;
}
.g-hamburger-menu p::before {
  display: block;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background-color: #E74388;
}

.border::before {
  content: "";
  display: flex;
  width: 120px;
  height: 1px;
  background-color: #D4D4D4;
  margin: 0 auto;
}

.left-column-search-menu li {
  padding-bottom: 12px;
}
.left-column-search-menu li:last-child {
  padding-bottom: 0;
}

.left-column-logo {
  width: 62.61px;
  margin: 0 auto;
}

.f-ingredient-list__displayFlex {
  display: flex;
  justify-content: space-between;
}

.l-ingredient-result {
  padding: 24px 0 104px;
  display: grid;
  gap: 32px;
}
.l-ingredient-result .l-ingredient-result-search-form {
  margin: 0 auto;
}

.g-head-letter {
  padding: 16px;
  display: grid;
  gap: 4px;
  grid-template-rows: repeat(2fr, 1fr);
  text-align: center;
  background: #FAFAFA;
}

.g-head-letter-kana {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.g-head-letter-en {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content;
  gap: 4px;
}

.g-ingredient-list {
  padding: 0 16px;
  display: grid;
  gap: 16px;
}

.ingredient-result-title {
  color: #fff;
  background-color: #E74388;
  padding: 8px 16px;
  padding: 6.5px 16px;
}

.g-ingredient-result-list {
  gap: 16px;
}
.g-ingredient-result-list:last-child {
  padding-bottom: 40px;
}

.ingredient-result-item {
  border-spacing: 0;
  width: 100%;
  align-items: center;
}
.ingredient-result-item .ingredient-name {
  width: 33.2%;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #FAFAFA;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.ingredient-result-item .ingredient-description {
  padding: 12px 8px;
  border-top: 1px solid #FAFAFA;
  border-bottom: 1px solid #FAFAFA;
  font-size: 14px;
}
.ingredient-result-item .ingredient-rank {
  width: 9.1%;
  padding: 8px 8px 8px 0px;
  border-top: 1px solid #FAFAFA;
  border-right: 1px solid #FAFAFA;
  border-bottom: 1px solid #FAFAFA;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.ingredient-result-item .ingredient-rank img {
  width: 24px;
}

.rank-1 .ingredient-name {
  background: #fafafa;
}
.rank-1 .ingredient-description {
  background: #fff;
}
.rank-1 .ingredient-rank {
  background: #fff;
}

.rank-2 .ingredient-name {
  border: none;
  background: #F5FACD;
}
.rank-2 .ingredient-description {
  border: none;
  background: #FBFFEB;
}
.rank-2 .ingredient-rank {
  background: #FBFFEB;
}

.rank-3 .ingredient-name {
  border: none;
  background: #FFE3BF;
}
.rank-3 .ingredient-description {
  border: none;
  background: #FFEFDC;
}
.rank-3 .ingredient-rank {
  background: #FFEFDC;
}

.rank-4 .ingredient-name {
  border: none;
  background: #FFC3C4;
}
.rank-4 .ingredient-description {
  border: none;
  background: #FFE3E3;
}
.rank-4 .ingredient-rank {
  background: #FFE3E3;
}

.pager-area {
  padding-top: 40px;
  display: grid;
  gap: 16px;
}
.pager-area p {
  text-align: center;
  color: #7D7D7D;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style-type: none;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
  background-color: #f2f2f2;
  color: #000;
  text-decoration: none;
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current {
  background-color: #e74388;
  color: #fff;
  pointer-events: none;
  /* 他のリンクと同じスタイルに統一 */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
}

.dot a {
  background: transparent;
}

.g-ingredient-detail {
  padding: 40px 16px 104px;
  display: grid;
  gap: 32px;
}
.g-ingredient-detail h2 {
  font-size: 25px;
}

.thumb-info {
  display: grid;
  gap: 24px;
  padding: 0px 8px;
}

.g-info {
  display: grid;
  gap: 24px;
}
.g-info .product-name {
  font-size: 18px;
}
.g-info .product-info-table {
  text-align: left;
  border-spacing: 0 16px;
}
.g-info .product-info-table th {
  font-weight: 600;
}

.tag-area {
  display: flex;
  flex-wrap: wrap;
}
.tag-area p {
  padding-right: 12px;
  font-size: 16px;
  color: #E74388;
}
.tag-area p.search-results__tag-area {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-icon {
  width: 24px;
  float: right;
  margin-right: 8px;
}

.product-ingredient-table th {
  background: #F26FA6;
  color: #fff;
  border: 1px solid #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  padding: 8px;
  text-align: left;
}
.product-ingredient-table .ingredient-name {
  border-radius: 0;
}
.product-ingredient-table .ingredient-rank {
  border-radius: 0;
}
.product-ingredient-table td {
  border-bottom: 1px solid #F1F1F1;
  line-height: 2rem;
  padding: 8px;
}

.search-button.before_allow::after {
  content: none;
}
.search-button.before_allow::before {
  content: "";
  background-image: url(../img/arrow_back_white.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 8px;
}

.back-btn__max-width {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: calc(100% - 80px);
  padding: 8px 40px;
  border-radius: 12px;
  border: 2px solid #E74388;
  background: #fff;
  text-decoration: none;
  color: #E74388;
  font-weight: 600;
}
.back-btn__max-width::before {
  content: "";
  background-image: url(../img/arrow_back_pnk.svg);
  color: #E74388;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 8px;
}
.back-btn__max-width a {
  text-decoration: none;
}

.back-btn {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: calc(100% - 24px);
  min-width: 240px;
  padding: 8px 40px;
  border-radius: 12px;
  border: 2px solid #E74388;
  background: #fff;
  text-decoration: none;
  color: #E74388;
  font-weight: 600;
}
.back-btn::before {
  content: "";
  background-image: url(../img/arrow_back_pnk.svg);
  color: #E74388;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 8px;
}
.back-btn a {
  text-decoration: none;
}

.l-product-search-result {
  padding-top: 40px;
  padding-bottom: 104px;
  display: grid;
  gap: 32px;
}

.l-selected-word {
  padding: 0 24px;
}
.l-selected-word .search-word-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.l-selected-word .search-word-table th, .l-selected-word .search-word-table td {
  padding: 12px 16px;
  text-align: left;
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
}
.l-selected-word .search-word-table th {
  width: 20%;
  font-weight: 600;
  color: #7d7d7d;
  font-size: 15px;
}
.l-selected-word .search-word-table td {
  font-weight: 300;
  color: #E74388;
  font-size: 15px;
}

.change-search {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  padding: 24px 0px;
  display: flex;
  justify-content: flex-end;
}
.change-search button {
  display: flex;
  gap: 8px;
}
.change-search button img {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

.g-product-search-result-list {
  padding: 0 16px;
  display: grid;
  gap: 16px;
}

.frame-product-numbers {
  display: flex;
  justify-content: space-between;
}
.frame-product-numbers button {
  display: flex;
  color: #00AAFF;
}
.frame-product-numbers button img {
  width: 24px;
  height: 24px;
}

.l-product-result-list {
  display: grid;
  gap: 16px;
}

.product-result-item {
  border-radius: 16px;
  border: 1px solid #F1F1F1;
}

.l-product-result-item-main {
  padding: 16px;
  display: flex;
  gap: 16px;
}
.l-product-result-item-main img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid #F1F1F1;
  -o-object-fit: contain;
     object-fit: contain;
}

.g-product-result-item-txt {
  display: grid;
  gap: 8px;
}
.g-product-result-item-txt h4 {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.price-area {
  font-size: 13px;
  display: flex;
  gap: 8px;
}
.price-area h4 {
  font-size: 13px;
  font-weight: 600;
  color: #7d7d7d;
}

.search-btn-style {
  padding: 12px 16px;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
.search-btn-style a {
  display: flex;
  gap: 8px;
  text-decoration: none;
}
.search-btn-style a img {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

.bg-pink {
  background-color: #FFF5FD;
}

.search-text-area {
  height: 56px;
  padding: 15px 16px;
  color: #000;
  border-radius: 16px 0px 0px 16px;
  border: 2px solid #F1F1F1;
  background: #FFF;
  width: 100%;
}

.search-text-area::-webkit-search-cancel-button {
  -webkit-appearance: none;
  /* デフォルトのサーチキャンセルボタンを非表示にする場合 */
  cursor: pointer;
  background-image: url(../img/cancel.svg);
  /* デフォルトのサーチキャンセルボタンを非表示にすること */
  background-repeat: no-repeat;
  background-size: cover;
  padding-right: 0px;
  height: 24px;
  /* キャンセルボタンのサイズ */
  width: 24px;
  /*  キャンセルボタンのサイズ */
}

textarea:focus {
  caret-color: #E74388;
}

.search-free-btn {
  position: relative;
  display: block;
  height: 56px;
  width: 66px;
  border-radius: 0px 16px 16px 0px;
  background: #E74388;
}
.search-free-btn::after {
  content: "";
  background-image: url(../img/search_white.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 16px;
}
.search-free-btn:disabled {
  background-color: #D4D4D4;
}

.global-searchform {
  display: inline-block;
  width: 90.2%;
  max-width: 592px;
}
.global-searchform form {
  display: flex;
}

/* モーダルの背景 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.search-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* モーダルコンテンツ */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  border: 1px solid #888;
  max-width: 91.8%;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.l-modal-head {
  background-color: #FFF5FD;
  display: flex;
  height: 56px;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0px 0px;
}
.l-modal-head h2 {
  font-size: 20px;
}

.l-modal-content-inner {
  display: flex;
  padding: 32px 24px 48px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}

.b-modal-content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.b-modal-content-inner h3 {
  font-size: 17px;
  font-weight: 600;
  border-left: #E74388 4px solid;
  padding-left: 12px;
  color: #000;
}

.l-radio-search__width_is100percent {
  width: 100%;
}

.l-radio-search-list {
  display: grid;
  gap: 8px;
}

.b-modal-content-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-search-form {
  display: flex;
  gap: 0;
}
.modal-search-form .search-icon {
  height: 56px;
  width: 40px;
  border-radius: 16px 0px 0px 16px;
  border: 1px solid #F1F1F1;
  border-right: none;
  background: #FAFAFA;
  align-items: center;
}
.modal-search-form .search-icon img {
  width: 24px;
  height: 24px;
  margin: 16px 0 16px 16px;
}
.modal-search-form input {
  flex: 1;
  height: 56px;
  width: auto;
  padding: 15px 0 15px 8px;
  border-radius: 0px 16px 16px 0px;
  border: 1px solid #F1F1F1;
  border-left: none;
  background: #FAFAFA;
}
.modal-search-form input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  /* デフォルトのサーチキャンセルボタンを非表示にする場合 */
  cursor: pointer;
  background-image: url(../img/cancel.svg);
  /* デフォルトのサーチキャンセルボタンを非表示にすること */
  background-repeat: no-repeat;
  background-size: cover;
  padding-right: 0px;
  height: 24px;
  /* キャンセルボタンのサイズ */
  width: 24px;
  /*  キャンセルボタンのサイズ */
}

/* 閉じるボタン */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-search-btn {
  font-size: 13px;
  font-weight: 300;
  padding: 12px 12px 12px 34px;
}
.modal-search-btn::before {
  left: 12px;
  width: 18px;
  height: 18px;
}

.padding-l12 {
  padding-left: 12px;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.b-modal-footer {
  position: sticky;
  display: flex;
  bottom: 0;
  padding: 16px;
  border-radius: 0px 0px 16px 16px;
  align-items: center;
  gap: 16px;
  background: #FAFAFA;
}

.cancel-button {
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #00AAFF;
  text-wrap: nowrap;
}

.toggle-modal {
  position: relative;
  display: none;
}

.l-toggle-modal-content {
  position: absolute;
  top: 40.5px;
  right: -8px;
}

.toggle-modal-content {
  position: relative;
  display: inline-block;
  margin-top: -17.5px;
  padding: 10px 16px 8px;
  width: 191px;
  font-size: 16px;
  background: #FAFAFA;
  border-radius: 12px;
}

.toggle-modal-content:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 135px;
  margin-left: 20px;
  height: 16px;
  width: 28px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #FAFAFA;
}

.f-toggle--rank {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.f-toggle--rank img {
  height: 35px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-attention {
  padding: 40px 24px 104px;
  display: grid;
  gap: 32px;
}

.texts-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  padding-bottom: 64px;
}
.texts-info p {
  font-size: 16px;
}

.reference {
  display: flex;
  padding: 16px 16px 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  background: #FFF5FD;
}
.reference h3 {
  font-size: 16px;
  font-weight: 300;
}
.reference p {
  font-size: 14px;
}

.g-contact-form {
  display: grid;
  padding: 40px 24px 104px;
  gap: 32px;
}

.form-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-inner {
  display: grid;
  gap: 12px;
  padding-bottom: 24px;
  width: 100%;
}
.contact-inner textarea {
  height: 136px;
  max-width: 592px;
  min-height: 136px;
}

.input-form {
  line-height: 150%;
  height: 56px;
  width: 100%;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #F1F1F1;
  font-size: 16px;
  cursor: pointer;
  caret-color: #E74388;
}

.contact-list {
  display: grid;
  gap: 8px;
}

.confirm-modal {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

/* メニューが開いた状態 */
.confirm-modal.open {
  transform: translateY(0);
  /* メニュー表示 */
}

.g-notFound {
  display: grid;
  padding: 53px 0;
  margin-bottom: 64px;
  gap: 24px;
}
.g-notFound h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 150%;
  /* 37.5px */
}

.notFound-text {
  color: #FFAED0;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

#toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  display: none;
}

#toTop.show {
  display: block; /* スクロール時に表示 */
}

.inner__ingredient-info {
  text-align: center;
}

.safety_rank_img {
  width: 60px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */