@charset "UTF-8";
/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-bg-green);
  font-feature-settings: "pwid";
  letter-spacing: 0.05em;
  font-size: var(--font-size_m);
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.7;
  word-break: break-all;
  font-weight: 500;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを無効化（iOS・Android） */
  touch-action: manipulation; /* タッチ操作をボタン/リンク向けに最適化 */
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
html {
  touch-action: manipulation; /* タッチの動作制御 */
  -webkit-tap-highlight-color: transparent; /* ハイライト除去（iOS Safari） */
}

input[type=checkbox],
input[type=radio] {
  touch-action: manipulation;
}

.cf7__recaptcha {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 0 auto;
  font-size: 14px;
  line-height: 1.4;
}

.grecaptcha-badge {
  visibility: hidden;
}

.rc-anchor-center-container {
  visibility: hidden;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
select {
  text-transform: none;
  padding-block: 0;
  padding-inline: 0;
}

:root {
  --color-black: #3F342D;
  --color-black-50: #7a7674;
  --color-black-20: #cac2be;
  --color-bg_white: #fdfdfd;
  --color-bg_gray: #ebe1e1;
  --color-green-dark: #08492c;
  --color-green: #008148;
  --color-green-50: #6cc784;
  --color-red: #bf3a0e;
  --color-bg-green: #D9E7C3;
  --color-yellow: #F1F23D;
  --color-light-yellow: #faf6db;
  --color-brown: #7b6027;
  --color-bg-light-brown: #ede9e2;
}

:root {
  --space_ssss: 1px;
  --space_sss: 2px;
  --space_ss: 4px;
  --space_s: clamp(8px, 0.8vw, 12px);
  --space_ms: clamp(12px, 0.94vw, 20px);
  --space_m: clamp(14px, 1.25vw, 32px);
  --space_ml: clamp(20px, 2vw, 40px);
  --space_l: clamp(24px, 1.88vw, 48px);
  --space_ll: clamp(36px, 2.5vw, 62px);
  --space_lll: clamp(42px, 3.13vw, 80px);
  --space_llll: clamp(62px, 5vw, 128px);
}

:root {
  --border-radius_ss: 4px;
  --border-radius_s: 8px;
  --border-radius_ms: clamp(8px, 1vw, 12px);
  --border-radius_m: 14px;
  --border-radius_ml: clamp(12px, 2vw, 16px);
  --border-radius_ll: 20px;
  --border-radius_lll: clamp(32px, 3.78vw, 56px);
}

:root {
  --box-shadow: 0 0 20px rgba(0, 0, 0, .05);
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05);
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

:root {
  --font-size_sss: clamp(10px, 1.56vw, 12px);
  --font-size_ss: clamp(12px, 1.82vw, 14px);
  --font-size_s: clamp(14px, 2.08vw, 16px);
  --font-size_ms: clamp(15px, 2.21vw, 17px);
  --font-size_m: clamp(16px, 2.34vw, 18px);
  --font-size_ml: clamp(18px, 2.5vw, 22px);
  --font-size_l: clamp(18px, 2.8vw, 28px);
  --font-size_ll: clamp(20px, 3vw, 32px);
  --font-size_lll: clamp(26px, 3.91vw, 36px);
  --font-size_llll: clamp(32px, 3.91vw, 42px);
}

:root {
  --font-family-title:
    "Montserrat",
    "Zen Kaku Gothic New",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    Meiryo,
    sans-serif;
}

.txt_title-l {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: var(--font-size_lll);
}

.txt_title-ml {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: var(--font-size_ll);
}

.txt_title-m {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: var(--font-size_l);
}

.txt_title--ms {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: var(--font-size_ml);
}

.txt_title--s {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: var(--font-size_m);
}

.txt_body-ms {
  font-size: var(--font-size_ms);
}

.txt_body-s {
  font-size: var(--font-size_s);
}

.u-txt_notice-s {
  font-size: var(--font-size_s);
  text-indent: calc(var(--font-size_s) * -1);
  padding-left: var(--font-size_s);
  line-height: 1.5;
  margin-top: 0.3em;
}

.u-border--top--dashd {
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px dashed var(--color-black);
  padding-top: 0.3em;
}

.u-border--bottom--dashd {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px dashed var(--color-black);
  padding-bottom: 0.3em;
}

.txt_80 {
  font-size: 80%;
}

.txt_center {
  text-align: center;
}

.txt-green {
  color: var(--color-green);
}

.txt-white {
  color: #fff;
}

.txt-yellow {
  color: var(--color-yellow);
}

.txt_emphasis.yellow {
  background-color: var(--color-yellow);
  color: var(--color-green);
}

.txt_emphasis.green {
  background-color: var(--color-green);
  color: #fff;
}

.bg_white {
  background-color: var(--color-bg_white);
}

.bg_green {
  background-color: var(--color-green);
}

.bg_light-green {
  background-color: var(--color-bg-green);
}

.svg-white {
  fill: var(--color-bg_white);
}

.svg-light-brown {
  fill: var(--color-bg-light-brown);
}

.svg-green {
  fill: var(--color-green);
}

.l-sidebar.bg_green {
  background-color: var(--color-green);
  color: #fff;
}

.u-color--black-20 {
  color: var(--color-black-20);
}

.u-color--white {
  color: #fff;
}

.ly_sec-inner {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 450px) {
  .ly_sec-inner {
    width: calc(100% - 80px);
  }
}
@media (min-width: 1024px) {
  .ly_sec-inner {
    width: calc(100% - 100px);
  }
}

/*
===============
grid
===============
*/
.ly_sec-inner.two-grid {
  display: grid;
  gap: clamp(16px, 5vw, 64px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.home_blog-container {
  position: relative;
  z-index: 2;
}

.four-grid {
  display: grid;
  gap: clamp(12px, 1.5vw, 32px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .four-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.l-contents__twogrid {
  height: 100%;
  display: grid;
  grid-column: auto;
}
@media (min-width: 1480px) {
  .l-contents__twogrid {
    grid-template-columns: clamp(280px, 20vw, 500px) auto;
  }
}

.l-main-allwrapper {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding-bottom: max(180px, 13vw);
}
@media (min-width: 1024px) {
  .l-main-allwrapper {
    margin-top: -68px;
  }
}

.l-onecolumn {
  margin: 0 auto;
  max-width: 1420px;
}

.l-onecolumn .l-contents {
  margin-top: 0.5em;
}

.l-twocolumn {
  display: flex;
  flex-direction: column;
  gap: var(--space_m);
  margin-top: 0.5em;
}
@media (min-width: 1024px) {
  .l-twocolumn {
    display: grid;
    gap: var(--space_lll);
    grid-template-columns: auto clamp(280px, 25vw, 800px);
  }
}

.l-twocolumn .l-contents {
  background-color: var(--color-bg_white);
  width: 100%;
  border-radius: var(--border-radius_ll) var(--border-radius_ll) 0 0;
}
@media (min-width: 1024px) {
  .l-twocolumn .l-contents {
    border-radius: 0 var(--border-radius_ll) var(--border-radius_ll) 0;
  }
}

.l-twocolumn .l-sidebar {
  border-radius: 0 0 var(--border-radius_ll) var(--border-radius_ll);
}
@media (min-width: 1024px) {
  .l-twocolumn .l-sidebar {
    border-radius: var(--border-radius_ll) 0 0 var(--border-radius_ll);
  }
}

.l-contents {
  line-height: 1.8;
  background-color: var(--color-bg_white);
  width: 100%;
  border-radius: var(--border-radius_ll);
}

.l-contents__inner {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--space_ll) var(--space_ml);
}
@media (min-width: 500px) {
  .l-contents__inner {
    padding: var(--space_ll) var(--space_l);
  }
}
@media (min-width: 768px) {
  .l-contents__inner {
    padding: var(--space_lll) var(--space_ll);
  }
}

.l-contents__inner--list {
  height: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: var(--space_ml);
}
@media (min-width: 500px) {
  .l-contents__inner--list {
    padding: var(--space_l);
  }
}
@media (min-width: 768px) {
  .l-contents__inner--list {
    padding: var(--space_ll);
  }
}
@media (min-width: 1480px) {
  .l-contents__inner--list {
    margin: 0;
    margin-left: auto;
  }
}

.l-contents__vertical-grid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space_l);
}

.l-block {
  width: 100%;
  margin: 0 auto;
}

.l-article__twogrid {
  display: grid;
  grid-template-columns: inherit;
  gap: 1em;
  margin-top: 1.5em;
  container-type: inline-size;
}
@container (min-width: 768px) {
  .l-article__twogrid {
    grid-template-columns: repeat(2, auto);
    gap: 2em;
  }
}

.l-article__twogrid:nth-of-type(1) {
  margin-top: 0.5em;
}

.footer {
  background-color: var(--color-brown);
}

.footer-top {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: -1px;
}

.footer-sec {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.footer-minamo {
  width: clamp(100px, 7vw, 200px);
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  transition: var(--transition);
}

@media (any-hover: hover) {
  .footer-minamo:hover {
    bottom: 0;
  }
}
.footer {
  position: relative;
  z-index: 2;
}
.footer .ly_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 32px 0;
}
@media (min-width: 600px) {
  .footer .ly_inner {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1280px;
    width: calc(100% - 64px);
  }
}
.footer .profile p {
  color: #fff;
}
.footer .gnav {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #fff;
}
@media (min-width: 600px) {
  .footer .gnav {
    border-top: none;
  }
}
@media (min-width: 900px) {
  .footer .gnav {
    margin-top: 0;
    padding-top: 0;
  }
}
.footer .gnav_menu {
  display: grid;
  gap: 6px 20px;
  color: #fff;
  font-size: 13px;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer .gnav_menu {
    grid-template-columns: repeat(2, max-content);
  }
  .footer .gnav_menu li:nth-child(1) {
    order: 1;
  }
  .footer .gnav_menu li:nth-child(6) {
    order: 3;
  }
  .footer .gnav_menu li:nth-child(2) {
    order: 3;
  }
  .footer .gnav_menu li:nth-child(7) {
    order: 6;
  }
  .footer .gnav_menu li:nth-child(3) {
    order: 5;
  }
  .footer .gnav_menu li:nth-child(4) {
    order: 7;
  }
  .footer .gnav_menu li:nth-child(5) {
    order: 2;
  }
  .footer .gnav_menu li:nth-child(8) {
    order: 8;
  }
}
@media (min-width: 900px) {
  .footer .gnav_menu {
    grid-template-columns: repeat(3, max-content);
    gap: 6px 24px;
  }
  .footer .gnav_menu li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .footer .gnav_menu li:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer .gnav_menu li:nth-child(6) {
    grid-column: 3;
    grid-row: 1;
  }
  .footer .gnav_menu li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer .gnav_menu li:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer .gnav_menu li:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
  }
  .footer .gnav_menu li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .footer .gnav_menu li:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
  }
}
.footer .logo_footer {
  width: min(80vw, 300px);
}
.footer .c-snsbox--small {
  display: flex;
  flex-direction: row;
  margin: 0;
  margin-left: auto;
  visibility: visible;
}
@media (min-width: 600px) {
  .footer .c-snsbox--small {
    margin-top: 8px;
  }
}
.footer .c-snsbox--small svg {
  fill: #fff;
}
@media (any-hover: hover) {
  .footer .c-snsbox--small svg:hover {
    fill: var(--color-yellow);
    transform: scale(1.1);
  }
}
.footer .item {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  margin-left: 0;
  margin-top: 16px;
}
@media (min-width: 900px) {
  .footer .item {
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: min(13.15vw, 56px);
  }
}
.footer .icon_mail {
  width: 23px;
  height: 18px;
  fill: var(--color-brown);
  margin-left: -4px;
}
.footer .copylight {
  width: 100%;
  background-color: var(--color-bg-light-brown);
  padding: var(--space_m) 0;
}
.footer .copylight p {
  font-size: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-brown);
}

.footer .c-contact__big__icon {
  fill: #fff;
}

.footer .c-contact__big {
  color: #fff;
}

.c-button--box--white.contact {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  color: var(--color-brown);
  padding: 6px 32px;
  font-size: 20px;
  margin-top: 0.2em;
}

.header-wave {
  position: relative;
}

.header-wave.pc {
  display: none;
}
@media (min-width: 1024px) {
  .header-wave.pc {
    display: block;
    width: 100%;
    height: 256px;
    max-width: 100%;
    fill: var(--color-green);
  }
}

.header-wave.tb {
  display: none;
}
@media (min-width: 768px) {
  .header-wave.tb {
    display: block;
    width: 100%;
    height: 162px;
    max-width: 100%;
    fill: var(--color-green);
  }
}
@media (min-width: 1024px) {
  .header-wave.tb {
    display: none;
  }
}

.header {
  background-color: var(--color-green);
}
@media (min-width: 768px) {
  .header {
    background-color: transparent;
    height: auto;
  }
}

.g-nav {
  width: 100%;
}
@media (min-width: 450px) {
  .g-nav {
    position: inherit;
  }
}
@media (min-width: 768px) {
  .g-nav {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translate(-50%);
  }
}

.g-nav_inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 12px;
  align-items: center;
}
@media (min-width: 450px) {
  .g-nav_inner {
    padding: 0 28px;
  }
}
@media (min-width: 768px) {
  .g-nav_inner {
    align-items: flex-start;
  }
}

.g-nav_left {
  display: flex;
  gap: 40px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .g-nav_left {
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  .g-nav_left {
    padding-top: 30px;
  }
}

.gnav_menu {
  display: none;
}
@media (min-width: 1024px) {
  .gnav_menu {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 4px 24px;
    color: #fff;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 16px;
  }
}

.gnav_menu a {
  display: flex;
  align-items: center;
  gap: var(--space_ss);
}

.gnav_menu .icon_header {
  fill: #fff;
  width: var(--font-size_m);
  height: var(--font-size_m);
}

@media (any-hover: hover) {
  .gnav_menu a:hover {
    color: var(--color-yellow);
  }
  .gnav_menu a:hover svg {
    fill: var(--color-yellow);
  }
}
.header_logo {
  width: min(55vw, 300px);
  height: 70px;
  display: grid;
  align-items: center;
  margin: 0;
}
@media (min-width: 768px) {
  .header_logo {
    width: 208px;
    height: 113px;
  }
}
@media (min-width: 1024px) {
  .header_logo {
    width: 208px;
    height: 113px;
  }
}

.gnav_right {
  display: flex;
  gap: 8px;
  align-items: center;
  transition: var(--transition);
  opacity: 1;
  pointer-events: auto;
  z-index: 100;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .gnav_right {
    padding-top: 16px;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .gnav_right {
    padding-top: 24px;
  }
}

.btn_header-seach a {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .btn_header-seach a {
    display: block;
    width: 88px;
    height: 80px;
    background-color: var(--color-yellow);
    padding: 6px;
    border-radius: var(--border-radius_s);
  }
}

.btn_header-seach .sub {
  display: none;
}
@media (min-width: 768px) {
  .btn_header-seach .sub {
    display: block;
    background-color: var(--color-black);
    color: #fff;
    text-align: center;
    border-radius: calc(infinity * 1px);
    font-size: 10px;
  }
}

.btn_header-seach .title {
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 768px) {
  .btn_header-seach .title {
    color: var(--color-base-black);
    font-size: 18px;
    line-height: 1.5;
  }
}

.btn_header-seach .icon_seach {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@media (min-width: 768px) {
  .btn_header-seach .icon_seach {
    display: block;
    fill: var(--color-green);
    width: 22px;
    height: 22px;
    margin: 0 auto;
  }
}

/*
===============
固定ヘッダー
===============
 */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transform: translateY(-100px);
  transition: var(--transition);
  background-color: var(--color-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-fixed .g-nav_inner {
  align-items: center;
}

.header-fixed.is-show {
  transform: translateY(0);
}

.header-fixed .g-nav_left {
  padding-top: 0;
}
.header-fixed .gnav_right {
  padding-top: 4px;
}
.header-fixed .btn_header-seach {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-fixed .btn_header-seach a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  background-color: transparent;
  gap: 2px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header-fixed .btn_header-seach .icon_seach {
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  fill: #fff;
}
.header-fixed .btn_header-seach .title {
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.header-fixed .menu-button {
  z-index: 10001;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: grid;
  place-content: center;
  padding-top: 15px;
  height: -moz-fit-content;
  height: fit-content;
}
.header-fixed .menu-button .line {
  position: relative;
  background-color: white;
  display: block;
  transition: var(--transition);
  height: 2px;
  border-radius: 1px;
  width: 44px;
}
.header-fixed .menu-button .line::before,
.header-fixed .menu-button .line::after {
  background-color: white;
  position: absolute;
  content: "";
  transition: var(--transition);
  height: 2px;
  border-radius: 1px;
  width: 100%;
}
.header-fixed .menu-button .line::before {
  top: -12px;
}
.header-fixed .menu-button .line::after {
  top: 12px;
}
.header-fixed .menu-button .text {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  font-size: 11.5px;
}
.header-fixed .header_logo {
  width: min(55vw, 300px);
  height: 70px;
  display: grid;
  align-items: center;
}

.l-mobilemenu {
  display: grid;
  place-content: center;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding: var(--space_l) 20px calc(var(--space_l) * 2) 20px;
  font-weight: 600;
  min-height: 100%;
}
@media (min-width: 1024px) {
  .l-mobilemenu {
    min-height: 90%;
  }
}

.l-mobilemenu__nav {
  display: grid;
  grid-template-columns: auto;
  gap: 0.5em;
  margin-top: 1em;
}
@media (min-width: 600px) {
  .l-mobilemenu__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7em;
    margin-top: 1.5em;
  }
}
@media (min-width: 1100px) {
  .l-mobilemenu__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-mobilemenu__logo {
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
}

.l-mobilemenu__contact--pc {
  display: none;
}
@media (min-width: 600px) {
  .l-mobilemenu__contact--pc {
    display: block;
    margin-top: 1em;
  }
}

.l-mobilemenu__contact--pc .p-mobilemenu__contact__p-card--blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg_white);
  padding: var(--space_m);
  border-radius: var(--border-radius_m);
  color: var(--color-black);
  line-height: 1.5;
}
.l-mobilemenu__contact--pc .p-mobilemenu__contact__p-card--blog .txt_title--ms + *,
.l-mobilemenu__contact--pc .p-mobilemenu__contact__p-card--blog .c-button--box--black {
  margin-top: 0.5em;
}

.l-mobilemenu__contact--mobile {
  color: #fff;
  margin-top: var(--space_s);
}
.l-mobilemenu__contact--mobile .p-mobilemenu__contact__p-card--blog {
  border-bottom: 1px solid #fff;
  padding: var(--space_s);
}
.l-mobilemenu__contact--mobile .c-contact__big__icon {
  fill: #fff;
}
@media (min-width: 600px) {
  .l-mobilemenu__contact--mobile {
    display: none;
  }
}

.overlay {
  left: 0;
  top: 0;
  height: 100svh;
  width: 100%;
  background: var(--color-green);
  z-index: 90;
  visibility: hidden;
  position: fixed;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール対応 */
}

.overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.l-flex__between {
  display: flex;
  justify-content: space-between;
}

.l-flex__column__between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.l-searchform {
  display: flex;
  flex-direction: column;
  gap: var(--space_l);
  margin-top: var(--space_ll);
  max-width: 768px;
  margin: 0 auto;
  padding: 1.5em 0;
}
.l-searchform .u-order__item-1 {
  order: 2;
}
.l-searchform .u-order__item-2 {
  order: 1;
}
.l-searchform .u-order__item-3 {
  order: 3;
}
@media (min-width: 1024px) {
  .l-searchform {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 230px 1fr 1fr;
    gap: var(--space_ll);
  }
  .l-searchform .u-order__item-1 {
    order: 1;
  }
  .l-searchform .u-order__item-2 {
    order: 2;
  }
  .l-searchform .u-order__item-3 {
    order: 3;
  }
}

.l-searchform .txt_title--ms + * {
  margin-top: 0.5em;
}

.p-searchform__block--select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (min-width: 1024px) {
  .p-searchform__block--select {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.l-searchform__select {
  display: flex;
  flex-direction: column;
}

.p-searchform__select {
  background-color: var(--color-bg_gray);
  color: var(--color-black-50);
  border-radius: calc(infinity * 1px);
  padding: var(--space_s) var(--space_m);
  font-size: var(--font-size_s);
  line-height: 1.2;
}

select.p-searchform__select:has(option:checked[value=""]) {
  color: var(--color-black-50);
}

select.p-searchform__select:has(option:checked:not([value=""])) {
  color: var(--color-black);
  background-color: var(--color-green);
  color: #fff;
  background-image: none;
}

.l-searchform {
  /* option要素のスタイル */
  /* 選択されているoption要素のスタイル */
  /* 選択されているoption要素のbefore要素（チェックマーク） */
  /* ホバー・フォーカスされているoption要素のスタイル */
}
.l-searchform select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.l-searchform select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("../images/common/icon_triangle.svg");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right 12px center;
}
.l-searchform option {
  padding: 6px 16px;
  font-size: var(--font-size_s);
  cursor: pointer;
}
.l-searchform option:checked {
  background-color: var(--color-bg_gray);
}
.l-searchform option::before {
  display: none;
}
.l-searchform option:hover,
.l-searchform option:focus-visible {
  background-color: var(--color-bg-green);
  outline: none;
}

.p-searchform__label {
  font-size: var(--font-size_s);
}

.p-taxonomygroup__checkbox + *, .p-taxonomygroup__checkbox--category + *, .p-taxonomygroup__checkbox--tag + * {
  margin-top: var(--space_l);
}

/*---------------
  checkbox
-----------------*/
.p-taxonomygroup__checkbox input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}

.p-taxonomygroup__checkbox .text {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  font-size: calc(var(--font-size_ml) * 0.9);
}
@media (min-width: 450px) {
  .p-taxonomygroup__checkbox .text {
    font-size: var(--font-size_ml);
  }
}

.p-taxonomygroup__checkbox .text {
  display: flex;
  align-items: center; /* ← 縦中央揃えのポイント */
  position: relative;
  padding-left: 32px;
  font-size: calc(var(--font-size_ml) * 0.9);
  line-height: 1.5;
}
@media (min-width: 450px) {
  .p-taxonomygroup__checkbox .text {
    font-size: var(--font-size_ml);
  }
}

.p-taxonomygroup__checkbox .text::before,
.p-taxonomygroup__checkbox .text::after {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius_ss);
}

.p-taxonomygroup__checkbox .text::before {
  background: #fff;
  border: 1px solid var(--color-black-50);
  content: "";
  transition: all 0.1s;
}

.p-taxonomygroup__checkbox .text::after {
  color: #fff !important;
  background-color: var(--color-green);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  opacity: 0;
  transition: all 0.1s;
}

.p-taxonomygroup__checkbox input:checked + span::after {
  opacity: 1;
}

.p-checkbox__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
}

.p-taxonomygroup__checkbox label input, .p-taxonomygroup__checkbox--category label input, .p-taxonomygroup__checkbox--tag label input {
  display: none; /* デフォルトのinputは非表示 */
}

.p-taxonomygroup__checkbox--category .text {
  color: #fff;
  background-color: var(--color-black-50);
  border-radius: calc(infinity * 1px);
  display: flex;
  align-items: center;
  font-size: var(--font-size_s);
  white-space: nowrap;
  line-height: 1;
  padding: calc(var(--font-size_ss) / 3) var(--font-size_ss);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .p-taxonomygroup__checkbox--category .text:hover {
    background: var(--color-green);
  }
}
.p-taxonomygroup__checkbox--category label input:checked + .text {
  color: #fff;
  background: var(--color-green);
}
.p-taxonomygroup__checkbox--category .p-checkbox__wrap {
  gap: 0.4em;
}

.p-taxonomygroup__checkbox--tag .text {
  color: var(--color-black-50);
  display: flex;
  align-items: center;
  font-size: var(--font-size_s);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.p-taxonomygroup__checkbox--tag .text:before {
  width: clamp(13px, 1.26vw, 15px);
  height: clamp(15px, 3vw, 18px);
  margin-right: 4px;
  content: url('data:image/svg+xml;utf-8,<svg fill="%239F9996" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128l95.1 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0L325.8 320l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7-95.1 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384 32 384c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 21.3-128L64 192c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320l95.1 0 21.3-128-95.1 0z"/></svg>');
}
@media (hover: hover) and (pointer: fine) {
  .p-taxonomygroup__checkbox--tag label:hover .text {
    color: var(--color-green);
  }
  .p-taxonomygroup__checkbox--tag label:hover .text:before {
    content: url('data:image/svg+xml;utf-8,<svg fill="%2338A254" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128l95.1 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0L325.8 320l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7-95.1 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384 32 384c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 21.3-128L64 192c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320l95.1 0 21.3-128-95.1 0z"/></svg>');
  }
}
.p-taxonomygroup__checkbox--tag label input:checked + .text {
  color: var(--color-green);
  font-weight: 600;
}
.p-taxonomygroup__checkbox--tag label input:checked + .text:before {
  content: url('data:image/svg+xml;utf-8,<svg fill="%2338A254" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128l95.1 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0L325.8 320l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7-95.1 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384 32 384c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 21.3-128L64 192c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320l95.1 0 21.3-128-95.1 0z"/></svg>');
}
.p-taxonomygroup__checkbox--tag .p-checkbox__wrap {
  gap: 0.4em 0.8em;
}

/*---------------
  textform
-----------------*/
.l-searchform input[type=text] {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-black-50);
  margin-top: 1em;
  width: 100%;
  height: 42px;
  padding: 0 1em;
  border-radius: calc(infinity * 1px);
}

/*---------------
  submit
-----------------*/
.l-searchform button[type=submit] {
  display: block;
  background-color: var(--color-red);
  color: #fff;
  border-radius: var(--border-radius_ml);
  padding: 0.3em 1.5em;
  margin-top: 2em;
  letter-spacing: 0.05em;
  font-size: calc(var(--font-size_ml) * 0.9);
}
@media (min-width: 450px) {
  .l-searchform button[type=submit] {
    font-size: var(--font-size_ml);
  }
}

table {
  display: grid;
  font-feature-settings: "palt";
}
table thead,
table tbody,
table tfoot,
table tr {
  display: contents;
}
table th,
table td {
  display: block;
}

.l-table {
  grid-template-columns: repeat(2, auto);
}

.l-table__title {
  color: var(--color--green);
}

.l-table__title, .l-table__text {
  padding: clamp(8px, 1.15vw, 14px) 0;
  border-bottom: 1px dashed var(--color--gray-50);
}

.l-table__text {
  padding-left: 16px;
}

.l-table tr:last-child .l-table__title,
.l-table tr:last-child .l-table__text {
  border-bottom: none;
}

.p-spot__info__table, .p-farmgoods__table {
  width: 100%;
  font-size: var(--font-size_s);
}

.p-spot__info__table th, .p-farmgoods__table td:first-child {
  background: var(--color-light-yellow);
  border-bottom: dashed 1px var(--color-black-20);
  padding: 8px 16px;
}
@media (min-width: 760px) {
  .p-spot__info__table th, .p-farmgoods__table td:first-child {
    padding: 8px 24px;
  }
}

.p-spot__info__table td, .p-farmgoods__table td:nth-child(2) {
  border-bottom: dashed 1px var(--color-black-20);
  background-color: #fff;
  padding: 8px 16px;
}
@media (min-width: 760px) {
  .p-spot__info__table td, .p-farmgoods__table td:nth-child(2) {
    padding: 8px 24px;
  }
}

.p-farmgoods__table .l-table {
  border-top: dashed 1px var(--color-black-20);
  margin-top: 0;
}

.l-table.p-spot__info__table {
  border-top: dashed 1px var(--color-black-20);
}

.icon_phone {
  display: inline-block;
  width: var(--font-size_s);
  height: var(--font-size_s);
  fill: var(--color-green);
  margin-right: 4px;
}

.p-spot__info__table td a {
  font-weight: 600;
}

.p-spot__info__table td {
  display: flex;
  align-items: center;
}

.menu-button {
  z-index: 10001;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: grid;
  place-content: center;
  padding-top: 15px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .menu-button {
    padding-top: 30px;
    height: 80px;
  }
}

.menu-button .line {
  position: relative;
  background-color: white;
  display: block;
  transition: all 0.2s ease-in-out;
  height: 2px;
  border-radius: 1px;
  width: 44px;
}
@media (min-width: 768px) {
  .menu-button .line {
    height: 4px;
    width: 60px;
    border-radius: 2px;
  }
}

.menu-button .line::before,
.menu-button .line::after {
  background-color: white;
  position: absolute;
  content: "";
  transition: 0.3s ease;
  height: 2px;
  border-radius: 1px;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-button .line::before,
  .menu-button .line::after {
    height: 4px;
    border-radius: 2px;
  }
}

.menu-button .line::before {
  top: -12px;
}
@media (min-width: 768px) {
  .menu-button .line::before {
    top: -16px;
  }
}

.menu-button .line::after {
  top: 12px;
}
@media (min-width: 768px) {
  .menu-button .line::after {
    top: 16px;
  }
}

.menu-button[aria-expanded=true] .line {
  top: 0px;
}

.menu-button[aria-expanded=true] .line::before {
  top: 0px;
}

.menu-button[aria-expanded=true] .line::after {
  top: 0;
}

.menu-button .text {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .menu-button .text {
    margin-top: 24px;
    font-size: calc(var(--font-size_m) * 0.8);
    letter-spacing: 0.05em;
  }
}

.page-numbers {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  margin: 0 auto;
}

.page-numbers li a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-black-50);
  color: var(--color-black);
  text-decoration: none;
  line-height: 1;
  font-size: 14px;
}
.page-numbers li a:hover {
  background: var(--color-yellow);
}
.page-numbers li a.prev:hover, .page-numbers li a.next:hover, .page-numbers li a.dots:hover {
  background: transparent;
}

.screen-reader-text {
  display: none;
}

.page-numbers li a:has(.prev.page-numbers),
.page-numbers li a:has(.next.page-numbers),
.page-numbers li a:has(.dots.page-numbers) {
  font-size: var(--font-size_ss);
  border: none;
}

.page-numbers li a:has(.dots.page-numbers) {
  pointer-events: none;
}

.page-numbers li:has(.page-numbers.current) {
  background: var(--color-black);
  color: #fff;
  border-color: var(--color-black);
  pointer-events: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: calc(infinity * 1px);
  font-size: 14px;
}

.page-numbers.current {
  height: 32px;
}

.prev.page-numbers, .next.page-numbers {
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}

button {
  border: 0;
}

/*======================
　BOXボタン
======================*/
.c-link__text--black {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: var(--font-size_ms);
  color: var(--color-black);
}

.c-link__text--black:before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: min(2vw, 12px);
  content: url('data:image/svg+xml;utf-8,<svg fill="%233F342D" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
}

.c-link__text--white {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: var(--font-size_ms);
  color: #fff;
  border-radius: var(--border-radius_m);
}

.c-link__text--white:before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: min(2vw, 12px);
  content: url('data:image/svg+xml;utf-8,<svg fill="%23FFFFFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
}

.c-button--box--black {
  display: flex;
  min-width: clamp(150px, 15vw, 200px);
  align-items: center;
  padding: var(--space_s) calc(var(--space_l) + 4px) var(--space_s) var(--space_l);
  border-radius: calc(infinity * 1px);
  line-height: 1.5;
  transition: var(--transition);
  background-color: var(--color-black);
  color: #fff;
}

.c-button--box--white {
  display: flex;
  min-width: clamp(150px, 15vw, 200px);
  align-items: center;
  padding: var(--space_s) calc(var(--space_l) + 4px) var(--space_s) var(--space_l);
  border-radius: calc(infinity * 1px);
  line-height: 1.5;
  transition: var(--transition);
  background-color: #fff;
  color: var(--color-black);
}

@media (any-hover: hover) {
  .c-button--box--white:hover {
    background-color: var(--color-yellow) !important;
  }
  .c-button--box--black:hover {
    background-color: var(--color-green);
  }
  .c-link__text:hover {
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
  }
}
.c-link__text {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-bottom: 2px solid var(--color-green);
  font-weight: 600;
  line-height: 1.5;
}

/*======================
　テキストリンク
======================*/
.c-button--txt-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid var(--color-green);
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(14px, 3cqw, 16px);
}

.c-button--txt-link:before {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: min(1.5vw, 5px);
  padding-top: 1px;
  fill: var(--color-green);
  content: url('data:image/svg+xml;utf-8,<svg fill="%2338A254" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
}

@media (any-hover: hover) {
  .c-button--txt-link:hover {
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
  }
  .c-button--txt-link:hover::before {
    content: url('data:image/svg+xml;utf-8,<svg fill="%23cf4b37" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
  }
}
.c-button__txt-link--big {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid var(--color-green);
  font-weight: 600;
  line-height: 1.5;
}

.c-button__txt-link--big:before {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: min(1.5vw, 5px);
  padding-top: 2px;
  fill: var(--color-green);
  content: url('data:image/svg+xml;utf-8,<svg fill="%2338A254" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
}

@media (any-hover: hover) {
  .c-button__txt-link--big:hover {
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
  }
  .c-button__txt-link--big:hover::before {
    content: url('data:image/svg+xml;utf-8,<svg fill="%23cf4b37" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
  }
}
/*======================
　タクソノミー
======================*/
.c-taxonomy-box {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex-wrap: wrap;
  line-height: 1;
  margin-top: 0.5em;
}

.blog_tags {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size_s);
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.blog_tags li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog_tags li:before {
  font-size: 0;
  width: clamp(13px, 1.26vw, 15px);
  height: clamp(15px, 3vw, 18px);
  fill: var(--color-green);
  content: url('data:image/svg+xml;utf-8,<svg fill="%2338A254" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128l95.1 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0L325.8 320l58.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-68.9 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7-95.1 0-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384 32 384c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 21.3-128L64 192c-17.7 0-32-14.3-32-32s14.3-32 32-32l68.9 0 11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320l95.1 0 21.3-128-95.1 0z"/></svg>');
}

.c-button--categorys {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 0.5em;
}

.c-button--categorys li {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-black);
  color: #fff;
  font-size: var(--font-size_ss);
  border-radius: calc(infinity * 1px);
  line-height: 1;
  transition: var(--transition);
  font-weight: 600;
}

.c-button--categorys li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: calc(var(--font-size_ss) / 3) var(--font-size_ss);
  white-space: nowrap;
}

@media (any-hover: hover) {
  .c-button--categorys li:hover {
    background-color: var(--color-red);
  }
  .blog_tags li:hover {
    color: var(--color-red);
  }
}
/*======================
　c-snsbox--small
======================*/
.c-snsbox--small {
  position: relative;
  z-index: 5;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 32px 0 auto;
  margin-top: -100px;
  visibility: hidden;
  gap: 4px;
}
@media (min-width: 1024px) {
  .c-snsbox--small {
    visibility: visible;
  }
}
.c-snsbox--small p {
  writing-mode: vertical-rl;
  color: var(--color-green);
  padding-bottom: 4px;
}
.c-snsbox--small svg {
  display: block;
  fill: var(--color-black);
  transition: var(--transition);
}

@media (any-hover: hover) {
  .c-snsbox--small svg:hover {
    fill: var(--color-red);
    transform: scale(1.1);
  }
}
/*
===============
sec-wave
===============
*/
.sec-wave-top {
  height: auto;
  width: 100%;
  aspect-ratio: 375/13;
  height: 13px;
  margin-bottom: -1px;
}
@media (min-width: 450px) {
  .sec-wave-top {
    aspect-ratio: 814/20;
    height: 20px;
  }
}
@media (min-width: 768px) {
  .sec-wave-top {
    aspect-ratio: 1280/20;
  }
}

.sec-wave-top .svg-sec-pc, .sec-wave-top .svg-sec-tb {
  height: 20px;
}
.sec-wave-top .svg-sec-sp {
  height: 13px;
}

.svg-sec-sp {
  display: block;
}

.svg-sec-tb,
.svg-sec-pc {
  display: none;
}

@media (min-width: 450px) {
  .svg-sec-sp {
    display: none;
  }
  .svg-sec-tb {
    display: block;
  }
}
@media (min-width: 768px) {
  .svg-sec-tb {
    display: none;
  }
  .svg-sec-pc {
    display: block;
  }
}
/*
===============
上部角丸
===============
*/
.sec_top-radius {
  position: relative;
  width: 100%;
  height: var(--space_llll);
  background-color: var(--color-green);
}

.sec_top-radius::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--space_llll);
  border-radius: var(--space_lll) var(--space_lll) 0 0;
  background-color: var(--color-bg-green);
}

/*
===============
上部ラウンド
===============
*/
.sec_round-btm-white {
  position: relative;
  display: block;
  z-index: 5;
}

.c-archive_snsbox {
  display: none;
}
@media (min-width: 1480px) {
  .c-archive_snsbox {
    display: grid;
    grid-template-columns: 80px 20px;
    margin-left: min(2vw, 62px);
    margin-top: min(8vw, 42px);
    height: -moz-fit-content;
    height: fit-content;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 100px;
  }
}
.c-archive_snsbox .icon_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-archive_snsbox .icon_box a {
  display: grid;
  place-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.c-archive_snsbox svg {
  transition: var(--transition);
  width: 28px;
  height: 28px;
}

@media (any-hover: hover) {
  .c-archive_snsbox .icon_box a:hover {
    transform: scale(1.1);
  }
  .c-archive_snsbox .btn_instagram:hover svg {
    fill: #d80dd1;
  }
  .c-archive_snsbox .btn_youtube:hover svg {
    fill: #ff0033;
  }
}
.c-breadcrumbs {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 1em;
  overflow-x: auto;
  line-height: 1.2;
  font-weight: 600;
}
.c-breadcrumbs .arrow {
  font-weight: 400;
}
.c-breadcrumbs .c-breadcrumbs__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 4px;
  font-size: var(--font-size_ss);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  word-break: keep-all;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-breadcrumbs .c-breadcrumbs__inner {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 640px) {
  .c-breadcrumbs .c-breadcrumbs__inner {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .c-breadcrumbs .c-breadcrumbs__inner::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
}
.c-breadcrumbs a {
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
}
@media (any-hover: hover) {
  .c-breadcrumbs a:hover {
    color: var(--color-red);
  }
}

.l-titleheader {
  width: 100%;
  margin: 0;
  padding-left: 10%;
  height: 60px;
}
@media (min-width: 768px) {
  .l-titleheader {
    padding-left: 10%;
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .l-titleheader {
    padding-left: clamp(150px, 20vw, 280px);
    height: 128px;
  }
}

.l-titleheader__inner {
  display: flex;
  align-items: center;
  background-color: var(--color-yellow);
  height: 100%;
  border-radius: 64px 0 0 64px;
  font-size: var(--space_ll);
  font-weight: 600;
}

.p-titleheader__title {
  padding-left: clamp(24px, 7vw, 60px);
  font-size: var(--font-size_l);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-green);
  font-family: var(--font-family-title);
}

.minamo {
  width: clamp(43.2px, 9.6vw, 120px);
  height: clamp(47.52px, 10.56vw, 132px);
  position: absolute;
  top: calc(clamp(47.52px, 10.56vw, 132px) * -1);
  right: 37vw;
}
@media (min-width: 499px) {
  .minamo {
    right: 34vw;
  }
}
@media (min-width: 1024px) {
  .minamo {
    right: 20vw;
  }
}

.icon_instagram {
  width: 26px;
  height: 26px;
}

.icon_youtube {
  width: 27px;
  height: 19px;
}

.icon_x {
  width: 21px;
  height: 19px;
}

.icon_mail {
  width: 26px;
  height: 26px;
}

.c-contact__big, .c-contact__small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(20px, 6cqw, 32px);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: -4px;
  line-height: 1;
  margin-top: 0.2em;
}
.c-contact__big span, .c-contact__small span {
  font-size: var(--font-size_ss);
  margin-top: 4px;
  letter-spacing: 0;
  font-weight: 600;
}

.c-contact__big + *, .c-contact__small + * {
  margin-top: 0.3em;
}

.c-contact__big__icon {
  width: var(--font-size_ml);
  height: var(--font-size_ml);
  margin-right: calc(var(--font-size_ss) / 2);
  fill: var(--color-black);
}

.c-contact__mall {
  display: flex;
  align-items: center;
  font-size: var(--font-size_m);
  line-height: 1;
}

.c-contact__small {
  font-size: var(--font-size_m);
  line-height: 1.3;
}

.c-contact__small .small {
  margin-top: 0;
}

.c-contact__small__icon {
  width: var(--font-size_ss);
  height: var(--font-size_ss);
  margin-left: 2px;
  margin-right: 4px;
  fill: var(--color-black);
}

.c-contact__name {
  font-size: 20px;
}

.c-contact__txt__other {
  font-size: var(--font-size_s);
  line-height: 1.5;
}

.c-contact__attention {
  font-size: 12px;
  margin-top: 8px;
  padding-left: 12px;
  text-indent: -12px;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}

.snow-monkey-form {
  max-width: 1024px;
  margin: 0 auto;
  margin-top: var(--space_llll);
}

.smf-progress-tracker {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .smf-progress-tracker {
    width: 80%;
  }
}

.smf-form {
  margin-top: 2em;
}

.wp-block-snow-monkey-forms-item {
  display: grid;
  grid-template-columns: auto;
  gap: 0;
}
@media (min-width: 768px) {
  .wp-block-snow-monkey-forms-item {
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }
}

.smf-item__label__text {
  position: relative;
  display: inline-block;
  padding-left: 50px;
}

.smf-item:has([data-validations~=required]) .smf-item__label__text::before {
  content: "必須";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 23px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  background: #c50505;
}

.smf-item:not(:has([data-validations~=required])) .smf-item__label__text::after {
  content: "任意";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 23px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  background: #707070;
}

input::-moz-placeholder {
  opacity: 0.5;
  color: var(--color-black);
}

input::placeholder {
  opacity: 0.5;
  color: var(--color-black);
}

.smf-form .smf-checkbox-control__control {
  flex: none;
  margin-top: calc(var(--_half-leading) * 1.5em);
}

.smf-placeholder {
  font-size: 1.15em;
}

/*
===============
セクションのアキ
===============
*/
.u-margin-top--s {
  margin-top: var(--space_s);
}

.u-margin-top--ml {
  margin-top: var(--space_ml);
}

.u-margin-top--ll {
  margin-top: var(--space_ll);
}

.u-padding-top--ml {
  padding-top: var(--space_ml);
}
@media (min-width: 1280px) {
  .u-padding-top--ml {
    padding-top: calc(var(--space_l) * 1.5);
  }
}

.u-padding-top--m {
  padding-top: var(--space_m);
}
@media (min-width: 1280px) {
  .u-padding-top--m {
    padding-top: calc(var(--space_l) * 1.5);
  }
}

.u-padding-top--l {
  padding-top: var(--space_l);
}
@media (min-width: 1280px) {
  .u-padding-top--l {
    padding-top: calc(var(--space_l) * 1.5);
  }
}

.u-padding-top--ll {
  padding-top: var(--space_ll);
}
@media (min-width: 1280px) {
  .u-padding-top--ll {
    padding-top: calc(var(--space_ll) * 1.5);
  }
}

.u-padding-top--lll {
  padding-top: var(--space_lll);
}
@media (min-width: 1280px) {
  .u-padding-top--lll {
    padding-top: calc(var(--space_lll) * 1.5);
  }
}

.u-padding-top--llll {
  padding-top: var(--space_llll);
}
@media (min-width: 1280px) {
  .u-padding-top--llll {
    padding-top: calc(var(--space_llll) * 1.5);
  }
}

.u-padding-botoom--l {
  padding-bottom: var(--space_l);
}
@media (min-width: 1280px) {
  .u-padding-botoom--l {
    padding-bottom: calc(var(--space_l) * 1.5);
  }
}

.u-padding-botoom--ll {
  padding-bottom: var(--space_ll);
}
@media (min-width: 1280px) {
  .u-padding-botoom--ll {
    padding-bottom: calc(var(--space_ll) * 1.5);
  }
}

.u-padding-botoom--lll {
  padding-bottom: var(--space_lll);
}
@media (min-width: 1280px) {
  .u-padding-botoom--lll {
    padding-bottom: calc(var(--space_lll) * 1.5);
  }
}

.u-padding-botoom--llll {
  padding-bottom: var(--space_llll);
}
@media (min-width: 1280px) {
  .u-padding-botoom--llll {
    padding-bottom: calc(var(--space_llll) * 1.5);
  }
}

.u-padding-botoom--llll-max {
  padding-bottom: calc(var(--space_llll) * 2);
}
@media (min-width: 1280px) {
  .u-padding-botoom--llll-max {
    padding-bottom: calc(var(--space_llll) * 2.5);
  }
}

.u-padding-botoom--lll-min {
  padding-bottom: var(--space_lll);
}

.u-display--center {
  display: block;
  margin: 0 auto;
}

.u-flex--center {
  display: flex;
  justify-content: center;
}

.u-flex--end {
  display: flex;
  justify-content: flex-end;
}

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

.u-flex--start--column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.smf-progress-tracker__item__number {
  width: 40px;
  height: 40px;
}

.u-img__small {
  max-width: 200px;
  margin: 0 auto;
}

.u-text__small {
  font-size: 0.9em;
}

.p-spot__main {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--space_m);
}
@media (min-width: 768px) {
  .p-spot__main {
    grid-template-columns: 1fr min(50%, 500px);
    gap: var(--space_ll);
    padding: 0;
  }
}
.p-spot__main .c-link__text {
  margin-top: 1em;
}

.p-spot__detail {
  container-type: inline-size;
  padding: var(--space_s);
}
@media (min-width: 768px) {
  .p-spot__detail {
    padding: 0;
  }
}
.p-spot__detail .address {
  display: flex;
  margin-top: 0.3em;
  line-height: 1.3;
  padding-left: 0.2em;
}
.p-spot__detail .icon_mappin {
  width: 16px;
  height: 26px;
  fill: var(--color-green);
  margin-right: calc(var(--font-size_ss) / 2);
  margin-top: -4px;
}
.p-spot__detail .content, .p-spot__detail .p-spot__detail__url {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 1em;
  font-feature-settings: "palt";
}
.p-spot__detail .c-contact__small {
  font-weight: 600;
}

.p-spot__detail .c-contact__small {
  margin-top: 0.5em;
}

.p-spot__info {
  max-width: 768px;
  margin-top: var(--space_ll);
  line-height: 1.4;
}

.p-spot__info .spot_item-title {
  margin-top: var(--space_ll);
}

.spot_item-title {
  line-height: 1;
  background-color: var(--color-bg_gray);
  padding: 0.5em 1em;
  border-radius: var(--border-radius_ss);
  margin-top: var(--space_ml);
}

.spot_item-title:first-of-type {
  margin-top: 0;
}

.spot_item-title + * {
  margin-top: 0.5em;
}

.p-spot__list {
  display: grid;
  grid-template-columns: auto;
  gap: 0.6em 3em;
}
@media (min-width: 1024px) {
  .p-spot__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 共通カード */
.p-card, .p-card--blog {
  width: 100%;
  margin: 0 auto;
  border-radius: var(--border-radius_ml);
  background-color: var(--color-bg_gray);
  overflow: hidden;
  line-height: 1.5;
}

/* ----------------------
 blog
---------------------- */
.p-card--blog {
  margin-top: 1em;
  container-type: inline-size;
}

.p-card--blog:first-of-type {
  margin-top: 0;
}

.p-card--blog_inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto;
  gap: var(--space_ms);
  position: relative;
}
@container (min-width:450px) {
  .p-card--blog_inner {
    grid-template-columns: 1fr 2fr;
  }
}
@container (min-width:900px) {
  .p-card--blog_inner {
    grid-template-columns: 1fr 3fr;
  }
}

/* Safari15など非対応ブラウザ用にフォールバック */
@supports not (container-type: inline-size) {
  @media (min-width: 450px) {
    .p-card--blog_inner {
      grid-template-columns: 1fr 2fr;
    }
    .p-card--blog_inner .contents_box {
      padding: var(--space_m);
      padding-right: var(--space_ll);
    }
    .p-card--blog .c-card__imgbox {
      aspect-ratio: 3/2;
    }
  }
  @media (min-width: 900px) {
    .p-card--blog_inner {
      grid-template-columns: 1fr 3fr;
    }
  }
}
.p-card--blog_inner .contents_box {
  padding: var(--space_ml);
  padding-top: 0;
}
@container (min-width:450px) {
  .p-card--blog_inner .contents_box {
    padding: var(--space_m);
    padding-right: var(--space_ll);
  }
}

.p-card--blog .c-card__imgbox {
  overflow: hidden;
  aspect-ratio: 2/1;
}
@container (min-width:450px) {
  .p-card--blog .c-card__imgbox {
    aspect-ratio: 3/2;
  }
}

.p-card--blog .c-card__imgbox .image {
  height: 100%;
  overflow: hidden;
}

.p-card--blog .c-card__imgbox .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.p-card--blog_title {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(16px, 2.5cqw, 20px);
}

/* hover effect */
@media (any-hover: hover) {
  .p-card--blog:hover {
    background-color: var(--color-light-yellow);
  }
  .p-card--blog:hover .c-card__imgbox img {
    transform: scale(1.1);
  }
  .p-card--blog:hover .p-card--blog_title,
  .p-card--blog:hover .c-card__day {
    color: var(--color-red);
  }
}
/* ----------------------
 news
---------------------- */
.c-card--news a {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0 var(--space_ll);
  padding: var(--space_m) 0;
  border-bottom: 1px dashed var(--color-black-50);
}
@media (min-width: 768px) {
  .c-card--news a {
    display: grid;
    grid-template-columns: 1fr 5fr;
  }
}
@media (min-width: 1420px) {
  .c-card--news a {
    grid-template-columns: 130px 5fr;
  }
}

.c-card--news .news_title {
  margin-top: 0.4em;
  color: var(--color-green);
  font-size: var(--font-size_ml);
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-card--news .news_title {
    margin-top: 0;
  }
}

.c-card--news .p-c-card__the_excerpt {
  grid-column: 2/3;
  grid-row: 2/2;
}

@media (any-hover: hover) {
  .c-card--news:hover .news_title,
  .c-card--news:hover .c-card__day {
    color: var(--color-red);
  }
}
/* ----------------------
 search
---------------------- */
.l-card__list--spot {
  display: grid;
  grid-template-columns: auto;
  width: 100%;
  margin: 0 auto;
  gap: var(--space_m) var(--space_l);
}
@media (min-width: 1024px) {
  .l-card__list--spot {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-card--search {
  container-type: inline-size;
  position: relative;
  padding-bottom: var(--space_m);
  border-bottom: 1px dashed var(--color-black-50);
}

.p-card--search__textbox {
  container-type: inline-size;
  position: relative;
  z-index: auto;
}

.p-card--search .p-card--search__url {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
  gap: 0.2em;
  font-feature-settings: "palt";
}
@container (min-width:250px) {
  .p-card--search .p-card--search__url {
    flex-direction: row;
    gap: 0.5em;
  }
}

.p-card--search--inner {
  display: grid;
  grid-template-columns: clamp(100px, 25%, 400px) auto;
  gap: var(--space_m);
  align-items: center;
  position: relative;
}
@container (min-width:700px) {
  .p-card--search--inner {
    gap: var(--space_l);
  }
}

.c-card__imgbox,
.p-card--search__textbox {
  align-self: center;
}

.p-card--search .txt_title--spot-archive {
  font-size: clamp(17px, 5cqw, 20px);
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.p-card--search .p-spot__detail {
  padding: 0;
}

.p-card--search .p-spot__detail .c-contact__small {
  margin-top: 0.2em;
}

.p-card--search .c-card__imgbox {
  width: 100%;
  height: 100%;
}

.p-card--search .c-card__imgbox .image {
  height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius_ss);
}

.p-card--search .c-card__imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: var(--transition);
}

.p-card--search .address {
  display: flex;
  margin-top: 0.3em;
  line-height: 1.3;
  font-size: var(--font-size_s);
  margin-left: -0.2em;
}

.p-card--search .icon_mappin {
  width: var(--font-size_ms);
  height: var(--font-size_m);
  fill: var(--color-green);
  margin-right: 3px;
  margin-top: 0;
}

.p-card--search .contents_box {
  padding: var(--space_ml);
  padding-top: 0;
}
@media (min-width: 600px) {
  .p-card--search .contents_box {
    padding: var(--space_m);
    padding-right: var(--space_ll);
  }
}

.p-card--search__textbox {
  container-type: inline-size;
}

.p-card--search--buttonbox {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 0.7em;
}

.p-card--search .c-button--box--black,
.p-card--search .c-button--txt-link {
  position: relative;
  z-index: 5;
}

@media (any-hover: hover) {
  .p-card--search:hover .image img {
    transform: scale(1.1);
  }
  .p-card--search:hover .txt_title--spot-archive {
    color: var(--color-red);
  }
}
.long-text {
  display: inline-block;
  transform: scaleX(0.8);
  transform-origin: left center;
}

/* ----------------------
 共通
---------------------- */
.c-card__imgbox {
  width: 100%;
  height: 100%;
}

.c-card__imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: var(--transition);
}

.c-card__day {
  font-size: var(--font-size_s);
  color: var(--color-black-50);
  font-weight: 600;
}

.p-c-card__the_excerpt {
  font-size: var(--font-size_s);
  margin-top: 0.5em;
  line-height: 1.4;
  display: none;
}
@media (min-width: 500px) {
  .p-c-card__the_excerpt {
    display: block;
  }
}

/* カードリスト */
.l-c-card__list {
  width: 100%;
  margin-left: auto;
}

/* カード全体リンク */
.c-card-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/*
================
sidebar
================
*/
.l-sidebar {
  background-color: var(--color-bg_white);
  padding: var(--space_l);
  padding-top: var(--space_s);
  border-radius: 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .l-sidebar {
    border-radius: var(--border-radius_ll) 0 0 var(--border-radius_ll);
    padding: 0 var(--space_ll) var(--space_ll) var(--space_ll);
  }
}

.l-sidebar {
  container-type: inline-size;
}

.l-sidebar__inner {
  display: block;
}
@container (min-width: 768px) {
  .l-sidebar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em 2em;
  }
}

.l-sidebar__inner .sidebar_title {
  font-size: var(--font-size_ml);
  margin-top: 2em;
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
}
.l-sidebar__inner .archive_post-link {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0.5em;
}
.l-sidebar__inner .archive_post-link a {
  border-bottom: 1px solid var(--color-black);
}
.l-sidebar__inner .archive_post-link .day {
  font-size: var(--font-size_ss);
  color: var(--color-black-50);
}

@media (any-hover: hover) {
  .archive_post-link:hover a {
    color: var(--color-green);
    border-bottom: 1px solid var(--color-green);
  }
}
.year-header {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
  margin-top: 1em;
}

.toggle {
  margin-left: 5px;
  color: green;
}

.post-list {
  margin-left: 20px;
}

.l-sidebar.bg_green .archive_post-link a {
  border-bottom: 1px solid #fff;
}
@media (any-hover: hover) {
  .l-sidebar.bg_green .archive_post-link:hover a {
    color: var(--color-yellow);
    border-bottom: 1px solid var(--color-yellow);
  }
}

.l-sidebar__inner {
  position: sticky;
  top: 100px;
}

@media (min-width: 1480px) {
  .l_event {
    max-width: 1480px;
    width: 100%;
  }
}
@media (min-width: 1700px) {
  .l_event {
    max-width: 2800px;
    width: 90%;
  }
}

.l_event__inner {
  background-color: var(--color-bg_white);
  border-radius: var(--border-radius_ll);
  padding: var(--space_l) 20px var(--space_lll) 20px;
  box-shadow: var(--box-shadow);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
@media (min-width: 500px) {
  .l_event__inner {
    padding: var(--space_ll);
  }
}
@media (min-width: 768px) {
  .l_event__inner {
    padding: var(--space_llll);
  }
}
@media (min-width: 1480px) {
  .l_event__inner {
    border-radius: 0 var(--border-radius_ll) var(--border-radius_ll) 0;
  }
}

.l_event .p-card--event {
  border-bottom: 1px dashed var(--color-black-50);
  padding: var(--space_m) 0;
  padding-left: 0;
}
@media (min-width: 500px) {
  .l_event .p-card--event {
    padding: var(--space_l) 0;
  }
}
@media (min-width: 1024px) {
  .l_event .p-card--event {
    padding: var(--space_ll) 0;
  }
}

.l_event .p-card--event:first-of-type {
  padding-top: 0;
}

.l_event .p-card--event_inner {
  display: grid;
  max-width: 1420px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  grid-template-columns: min(28vw, 150px) auto;
  grid-template-areas: "item1 item2" "item3 item3";
  gap: 0 var(--space_ml);
}
@media (min-width: 500px) {
  .l_event .p-card--event_inner {
    grid-template-columns: min(30vw, 200px) 1.5fr;
    gap: 0 var(--space_l);
  }
}
@media (min-width: 1024px) {
  .l_event .p-card--event_inner {
    grid-template-columns: min(30vw, 200px) 1.5fr 1fr;
    grid-template-areas: "item1 item2 item3";
    gap: 0 var(--space_lll);
  }
}

.l_event .p-card--event_inner .thumbnail {
  grid-area: item1;
}

.l_event .p-card--event_inner .txt_title-ml_box {
  grid-area: item2;
}

.l_event .p-card--event_inner .event-content_box {
  grid-area: item3;
}

.l_event .p-card--event_inner .event-day {
  margin-top: 0.2em;
}

.l_event .event-content_box {
  display: none;
}
@media (min-width: 1024px) {
  .l_event .event-content_box {
    display: block;
    color: var(--color-green);
  }
}

.l_event .p-card--event_textbox {
  container-type: inline-size;
}

.l_event .txt_title-event-archive {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(18px, 7cqw, 28px);
  line-height: 1.3;
  margin-top: var(--space_s);
}

.p-card--event .event-day {
  font-size: var(--font-size_s);
}

.event-day {
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.3;
}

.event-day.event-completion {
  text-decoration: line-through;
  color: var(--color-black-50);
}

.event-img_box .event-completion {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: grid;
  place-content: center;
  z-index: 2;
  color: #fff;
  font-size: var(--font-size_s);
}

.event-img_box {
  display: block;
  position: relative;
  transition: var(--transition);
  border-radius: var(--border-radius_ss);
  overflow: hidden;
  aspect-ratio: 200/145;
}

.event-img_box img {
  transition: var(--transition);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .l_event .p-card--event .p-card--event_inner:hover .txt_title-event-archive, .l_event .p-card--event .p-card--event_inner:hover .blog_tags {
    color: var(--color-red);
  }
  .l_event .p-card--event .p-card--event_inner:hover .c-button--category {
    background-color: var(--color-red);
  }
  .l_event .p-card--event .p-card--event_inner:hover .event-img_box img {
    transform: scale(1.1);
  }
  .l_event .p-card--event .p-card--event_inner:hover .blog_tags:before {
    filter: grayscale(1);
  }
  .l_event .p-card--event .p-card--event_inner:hover .event-content_box {
    color: var(--color-red);
  }
}
.outinner-btn_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  padding-top: var(--space_ms);
}
@media (min-width: 500px) {
  .outinner-btn_wrap {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-top: 0;
    padding-right: var(--space_llll);
  }
}

.outinner-btn_wrap .inner {
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 0;
}

.p-event-day--big {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-yellow);
  padding: var(--font-size_ss) var(--font-size_ml);
  margin-top: var(--space_m);
  border-radius: var(--border-radius_ms);
  line-height: 1.4;
  align-items: center;
  gap: 0.5em;
}
@media (min-width: 500px) {
  .p-event-day--big {
    flex-direction: row;
  }
}

.p-event-day--big span {
  background-color: #fff;
  padding: 0.2em 0.5em;
}

.p-event-day--big .event-day {
  font-size: var(--font-size_m);
}
@media (min-width: 768px) {
  .p-event-day--big .event-day {
    font-size: var(--font-size_l);
  }
}

.p-event-day--big.event-completion {
  background-color: var(--color-bg_gray);
  color: var(--color-black-50);
}

.p-event-day--big.event-completion .event-day {
  text-decoration: line-through;
}

.wp-block-heading {
  letter-spacing: 0.05em;
  font-weight: 700;
}

h2.wp-block-heading {
  font-family: var(--font-family-title);
  font-size: var(--font-size_ll);
  color: #fff;
  background-color: var(--color-green-dark);
  border-radius: var(--border-radius_s);
  width: 100%;
  padding: 0.5em 1em;
  line-height: 1.4;
}

*:not(h2):not(script) + h2.wp-block-heading {
  margin-top: 2em;
}

h3.wp-block-heading {
  position: relative;
  font-size: var(--font-size_ml);
  background-color: var(--color-bg_gray);
  border-radius: var(--border-radius_s);
  padding: 0.6em 1em 0.5em 1.6em;
  line-height: 1.3;
}

h3.wp-block-heading:before {
  position: absolute;
  top: 25%;
  left: 0.6em;
  width: 6px;
  height: 50%;
  padding-bottom: 0.1em;
  content: "";
  border-radius: 3px;
  background: var(--color-black-50);
}

*:not(h3):not(script) + h3.wp-block-heading,
*:not(h4):not(script) + h4.wp-block-heading,
*:not(h5):not(script) + h5.wp-block-heading {
  margin-top: 1.5em;
}

h4.wp-block-heading {
  font-size: var(--font-size_ml);
  border-bottom: 2px solid var(--color-green-50);
}

h4.wp-block-heading + * {
  margin-top: 1em;
}

h5.wp-block-heading {
  font-size: var(--font-size_ml);
  margin-top: 1em !important;
}

.has-vivid-red-color {
  color: var(--color-red);
}

.wp-block-button__link {
  background-color: var(--color-black);
  color: #fff;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  min-width: max(15vw, 200px);
  justify-content: center;
  padding: var(--space_s) calc(var(--space_l) + 4px) var(--space_s) var(--space_l);
  border-radius: calc(infinity * 1px);
  line-height: 1.5;
  transition: var(--transition);
}

.wp-block-button__link:before {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  margin-right: 10px;
  fill: #fff;
  content: url('data:image/svg+xml;utf-8,<svg fill="%23ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,0C3.5817261,0,0,3.5817261,0,8s3.5817261,8,8,8,8-3.5817261,8-8S12.4182739,0,8,0ZM11.6711426,8.3203735l-2.7689819,2.6279297c-.0854492.0811157-.1950073.1212158-.3041382.1212158-.1168823,0-.2333984-.0461426-.3204956-.1375732-.1678467-.1768799-.1604614-.4564209.0163574-.6246338l1.9658203-1.8657227h-5.6268921c-.2441406,0-.4417114-.1975708-.4417114-.4417114s.1975708-.4417114.4417114-.4417114h5.6268311l-1.9657593-1.8652954c-.1768188-.1677856-.1842041-.4477539-.0163574-.6246338.1682129-.1764526.4481812-.1846313.6246338-.0163574l2.7689819,2.6275024c.0880127.0836792.1376343.1992798.1376343.3204956s-.0496216.2368164-.1376343.3204956Z"/></svg>');
}

@media (any-hover: hover) {
  .wp-block-button__link:hover {
    cursor: pointer;
    background-color: var(--color-green);
  }
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}

.wp-block-list {
  margin-top: 0.5em;
}

.wp-block-list li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.5em;
}

.wp-block-list li:before {
  content: "●";
  color: var(--color-green-50);
}

.wp-block-list li:first-of-type {
  margin-top: 0;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
}

.wp-block-columns .wp-block-image {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wp-block-columns .wp-block-image {
    max-width: none;
  }
}

.wp-block-image.alignleft {
  margin: 0 auto 0 0 !important;
}

.wp-block-image.alignright {
  margin: 0 0 0 auto !important;
}

.wp-block-image.aligncenter {
  margin: 0 auto !important;
}

.has-large-font-size {
  font-size: var(--font-size_ll);
}

h3.wp-block-heading + *,
h2.wp-block-heading + *,
.wp-block-columns-is-layout-flex + *,
.wp-block-list + * {
  margin-top: 1em;
}

.p-singular .c-button--txt-link {
  margin-top: 0.5em;
}

.border-radius.flex-item {
  border-radius: var(--border-radius_s);
  padding: 1.5em;
}

/* === 色・背景色 === */
.has-primary-color {
  color: #0e6e31;
}

.has-secondary-color {
  color: #bf3a0e;
}

.has-light-gray-color {
  color: #ebe1e1;
}

.has-dark-gray-color {
  color: #3F342D;
}

.has-white-color {
  color: #ffffff;
}

.has-primary-background-color {
  background-color: #0e6e31;
}

.has-secondary-background-color {
  background-color: #bf3a0e;
}

.has-light-gray-background-color {
  background-color: #ebe1e1;
}

.has-dark-gray-background-color {
  background-color: #3F342D;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-background {
  padding: clamp(1em, 24px, 2em);
  border-radius: 6px;
}

/* === フォントサイズ === */
.has-small-font-size {
  font-size: var(--font-size_ss);
}

.has-normal-font-size {
  font-size: var(--font-size_m);
}

.has-medium-font-size {
  font-size: var(--font-size_ml);
}

.has-large-font-size {
  font-size: var(--font-size_ll);
}

.has-huge-font-size {
  font-size: var(--font-size_lll);
}

/* === テキスト位置 === */
.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-justify {
  text-align: justify;
}

/* === ブロック共通 === */
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-spacer {
  height: 2rem;
}

.wp-block-separator {
  border: none;
  border-top: 2px solid #ccc;
  margin: 2rem 0;
}

.wp-block-columns {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.wp-block-column {
  flex: 1 1 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-quote {
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5em 0;
}

.wp-block-table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid #ddd;
  padding: 0.75em;
}

/* === 幅・配置 === */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* === アイコンボックス用レイアウト === */
.wp-block-group.is-style-icon-box {
  display: flex;
  gap: 1rem;
  padding: 1.5em;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ccc;
  align-items: flex-start;
}

.wp-block-group.is-style-icon-box img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wp-block-group.is-style-icon-box .icon-box-content {
  flex: 1;
}

.wp-block-group.is-style-icon-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

/* === 管理画面プレビュー iframe 調整 === */
.edit-post-visual-editor .block-editor-block-list__layout {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.wp-block-columns {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

/* 縦並びしない（.is-not-stacked-on-mobile）の場合 */
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: wrap;
  overflow-x: visible;
}

.wp-block-columns.is-not-stacked-on-mobile .wp-block-column {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

/* 区切り線 */
.wp-singular hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

/* リンク */
.wp-singular .l-contents__inner a:not(.c-button--txt-link):not(.btn_header-seach a):not(.c-breadcrumbs__inner a):not(.gnav_menu a):not(.wp-block-button__link):not(.c-button--box--black):not(.archive_post-link a):not(.c-button--categorys a):not(.blog_tags a):not(.c-contact__big) {
  color: var(--color-green);
  text-decoration: underline;
  font-weight: 600;
}

.wp-singular .l-contents__inner a:hover:not(.c-button--txt-link):not(.btn_header-seach a):not(.c-breadcrumbs__inner a):not(.gnav_menu a):not(.wp-block-button__link):not(.c-button--box--black):not(.archive_post-link a):not(.c-button--categorys a):not(.blog_tags a):not(.c-contact__big),
.wp-singular .l-contents__inner a:focus:not(.c-button--txt-link):not(.btn_header-seach a):not(.c-breadcrumbs__inner a):not(.gnav_menu a):not(.wp-block-button__link):not(.c-button--box--black):not(.archive_post-link a):not(.c-button--categorys a):not(.blog_tags a):not(.c-contact__big) {
  color: var(--color-green);
  text-decoration: none;
}

@media (max-width: 450px) {
  .p-spot__list li.u-small .c-button--txt-link {
    font-size: 0.75em;
    letter-spacing: -0.02em;
    word-break: break-word;
  }
}
.inline-large-text {
  font-size: 140%;
}

/* モバイルで縦並び */
@media (max-width: 500px) {
  .wp-block-columns-is-layout-flex.break-sm, .is-layout-flex.break-sm, .wp-block-columns.break-sm {
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  .wp-block-columns-is-layout-flex, .is-layout-flex, .wp-block-columns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .wp-block-columns-is-layout-flex.break-default, .is-layout-flex.break-default, .wp-block-columns.break-default {
    flex-direction: column !important;
  }
}

/* タブレットで縦並び */
@media (max-width: 960px) {
  .wp-block-columns-is-layout-flex.break-md, .is-layout-flex.break-md, .wp-block-columns.break-md {
    flex-direction: column !important;
  }
}
@media (max-width: 1280px) {
  .wp-block-columns-is-layout-flex.break-lg, .is-layout-flex.break-lg, .wp-block-columns.break-lg {
    flex-direction: column !important;
  }
}
/* 4カラム→2カラムにしたい場合 */
@media (max-width: 1024px) {
  .wp-block-columns.break-four-column {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .wp-block-columns.break-four-column > .wp-block-column {
    flex-basis: calc(50% - 0.5em) !important;
    max-width: calc(50% - 0.5em) !important;
  }
}
@media (max-width: 500px) {
  .wp-block-columns.break-four-column {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  .wp-block-columns.break-four-column > .wp-block-column {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
.has-bg-primary-background-color {
  background-color: var(--color-bg-green);
}

.wp-block-columns.is-layout-flex {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.wp-block-columns.is-layout-flex > .wp-block-column {
  width: 100%;
}

:root {
  --wp--preset--spacing--small: 1em;
  --wp--preset--spacing--medium: 1.5em;
  --wp--preset--spacing--large: 2em;
}

.has-padding-right-small {
  padding-right: var(--wp--preset--spacing--small);
}

.has-padding-left-small {
  padding-left: var(--wp--preset--spacing--small);
}

.has-padding-top-small {
  padding-top: var(--wp--preset--spacing--small);
}

.has-padding-bottom-small {
  padding-bottom: var(--wp--preset--spacing--small);
}

/* medium, large も同様に */
.has-padding-right-medium {
  padding-right: var(--wp--preset--spacing--medium);
}

.wp-block-columns.is-layout-flex > .wp-block-column {
  line-height: 1.4;
}

/* ==============================

カラム設定

================================= */
/* === コンテナクエリ設定 === */
.wp-block-column {
  container-type: inline-size;
}

/* === フォントサイズ === */
.has-small-font-size {
  font-size: var(--font-size_ss);
}

.has-normal-font-size {
  font-size: var(--font-size_m);
}

.has-medium-font-size {
  font-size: clamp(18px, 2.8cqw, 28px);
}

.has-large-font-size {
  font-size: clamp(22px, 3.2cqw, 32px);
}

.wp-block-column .has-huge-font-size {
  font-size: clamp(26px, 3.91cqw, 36px);
}

.wp-block-column h5.wp-block-heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(24px, 3.2cqw, 32px);
  margin-top: 0 !important;
}

.has-inline-color {
  padding: 0 0.2em;
}

.p-singular .inner {
  margin: 0 auto;
}
.p-singular h1 {
  font-size: var(--font-size_l);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.3em !important;
}
.p-singular .day {
  font-size: var(--font-size_ms);
  color: var(--color-black-50);
  letter-spacing: 0.1em;
}
.p-singular .day + * {
  margin-top: var(--space_s);
}
.p-singular p {
  font-weight: 400;
}
.p-singular p + *, .p-singular .wp-block-image + * {
  margin-top: var(--space_l);
}
.p-singular .wp-block-image {
  width: 100%;
  margin: var(--space_l) auto 0;
}
.p-singular .wp-block-image img {
  width: 100% !important;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.p-singular .the_content {
  margin-top: var(--space_l);
}

.p-singular .is-layout-flex .wp-block-image, .p-singular .is-layout-flex blockquote {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.3em;
}

.is-layout-flex blockquote p {
  font-size: var(--font-size_s);
  line-height: 1.5;
}

.p-singular .is-layout-flex {
  width: 100%;
  margin-bottom: var(--space_l);
}

.p-singular p, .p-singular .wp-block-list {
  margin-top: 0.5em;
}

.iframeWrap {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-top: 0.5em;
  padding-bottom: 100%;
}
@media (min-width: 500px) {
  .iframeWrap {
    padding-bottom: 66.66%;
  }
}
@media (min-width: 1024px) {
  .iframeWrap {
    padding-bottom: 56.25%; /* デフォルト：16:9 */
  }
}

.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-farmgoods__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space_m);
  align-items: flex-start;
  margin-top: 0 auto;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-farmgoods__header {
    display: grid;
    grid-template-columns: clamp(300px, 20vw, 400px) 1fr;
    margin-top: calc(var(--space_ll) * -1.5);
    gap: var(--space_ll);
    align-items: center;
  }
}

.p-farmgoods__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: none;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
@media (min-width: 500px) {
  .p-farmgoods__image {
    aspect-ratio: 2/1;
  }
}
@media (min-width: 768px) {
  .p-farmgoods__image {
    width: clamp(300px, 20vw, 400px);
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
}

.p-farmgoods__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-farmgoods__recipe {
  margin-top: 2em;
}

.p-farmgoods__recipe--title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  color: #fff;
  font-size: var(--font-size_ml);
  height: 42px;
  padding: 0 16px;
}

.p-farmgoods__recipe--title:after {
  position: absolute;
  right: -20px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-black);
  border-width: 42px 0px 0px 20px;
}

.icon_recipe {
  width: 22px;
  height: 19px;
  margin-right: 4px;
}

.p-farmgoods__recipe--inner {
  width: 100%;
  padding: 14px;
  background-color: var(--color-bg_gray);
  container-type: inline-size;
}
@media (min-width: 450px) {
  .p-farmgoods__recipe--inner {
    padding: 24px;
  }
}

.p-farmgoods__recipe--inner--title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-farmgoods__recipe--inner--title {
    margin: 0;
  }
}

.p-farmgoods__recipe--inner h4.wp-block-heading,
h5.wp-block-heading, .p-singular .c-button--txt-link {
  margin-top: 0;
}

.p-singular .p-farmgoods__recipe--howto {
  margin-top: 0;
}

.p-farmgoods__recipe--howto {
  counter-reset: step;
}

.p-farmgoods__recipe--howto li {
  display: flex;
  counter-increment: step;
  position: relative;
  padding-left: calc(var(--font-size_m) + 0.5em);
}

.p-farmgoods__recipe--howto li::before {
  content: counter(step);
  display: grid;
  place-content: center;
  background-color: var(--color-black);
  color: #fff;
  width: var(--font-size_m);
  height: var(--font-size_m);
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: calc(var(--font-size_m) * 0.4);
}

.p-farmgoods__recipe--text {
  font-size: var(--font-size_ms);
}

.p-farmgoods__recipe--image {
  max-width: 500px;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 0 !important;
  width: 100%;
}
@media (min-width: 768px) {
  .p-farmgoods__recipe--image {
    float: right;
    width: 50%;
    margin-left: 1em;
  }
}

.p-farmgoods__recipe--howto-image {
  max-width: 500px;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 0 !important;
  width: 100%;
}
@media (min-width: 768px) {
  .p-farmgoods__recipe--howto-image {
    width: 80%;
    margin: 0 auto;
  }
}

.p-farmgoods__recipe--image img, .p-farmgoods__recipe--howto-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.l-float-box::after {
  content: "";
  display: block;
  clear: both;
}

.l-float-box {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em !important;
}
@media (min-width: 768px) {
  .l-float-box {
    display: block;
  }
}

.p-farmgoods__recipe--person {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid var(--color-black-50);
}

.p-farmgoods__table .caption,
.p-farmgoods__recipe--howto--box .caption {
  margin-top: 1em;
}

.p-farmgoods__table:first-of-type .caption,
.p-farmgoods__recipe--howto--box .caption:first-of-type {
  margin-top: 0;
}

.p-farmgoods__recipe--free {
  margin-top: 1em;
}
.p-farmgoods__recipe--free p, .p-farmgoods__recipe--free a {
  margin-top: 0;
}

/* ==================
　sadebar
 ================== */
.p-farmgoods-sidebar--top {
  container-type: inline-size;
}

.p-farmgoods-sidebar--post-list {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@container (min-width: 300px) {
  .p-farmgoods-sidebar--post-list {
    display: grid;
    gap: 0 2em;
    grid-template-columns: repeat(2, auto);
  }
}
@container (min-width: 450px) {
  .p-farmgoods-sidebar--post-list {
    grid-template-columns: repeat(3, auto);
  }
}
@container (min-width: 768px) {
  .p-farmgoods-sidebar--post-list {
    grid-template-columns: repeat(4, auto);
  }
}

.p-farmgoods-sidebar--post-list li {
  width: -moz-fit-content;
  width: fit-content;
}

.p-farmgoods-sidebar--post-list li:before {
  content: "●";
  font-size: 60%;
}

.p-farmgoods-sidebar--bottom {
  container-type: inline-size;
}

.p-farmgoods--sadelist--bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 1em;
}
@container (min-width: 500px) {
  .p-farmgoods--sadelist--bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-farmgoods--sadelist--bottom li a {
  display: flex;
  background-color: #fff;
  border-radius: var(--border-radius_s);
  color: var(--color-black);
  align-items: center;
  padding: 0.3em 0 0.5em 1em;
  gap: 8px;
}

@media (any-hover: hover) {
  .p-farmgoods--sadelist--bottom li a:hover {
    background-color: var(--color-yellow);
  }
}
.p-farmgoods--sadelist--bottom li:nth-of-type(4) a {
  padding-left: 0.6em;
}

.p-farmgoods--sadelist--bottom li a p {
  margin-top: 0.3em;
}

.p-farmgoods--sadelist--bottom li a img {
  width: 23px;
  height: 27px;
}

.p-farmgoods--sadelist--bottom li:nth-of-type(4) a img {
  width: 30px;
  height: 27px;
}

.p-farmgoods--sadelist--farmtitle {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 20px;
}

.p-farmgoods--plef-link {
  border: 1px solid #fff;
  border-radius: var(--border-radius_s);
  position: relative;
  margin-top: 2em;
  padding: 1em;
  font-feature-settings: "palt";
}

.p-farmgoods--plef-link h4 {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5em;
}

.p-farmgoods--plef-link .icon_arrow-up-right-from-square {
  width: var(--font-size_m);
  height: var(--font-size_m);
  fill: #fff;
  margin-left: 6px;
}

@media (any-hover: hover) {
  .p-farmgoods--plef-link:hover {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
  }
  .p-farmgoods--plef-link:hover h4 {
    border-color: var(--color-yellow);
  }
  .p-farmgoods--plef-link:hover .icon_arrow-up-right-from-square {
    fill: var(--color-yellow);
  }
}
.p-farmgoods--plef-link--br {
  display: block;
}
@container (min-width: 250px) {
  .p-farmgoods--plef-link--br {
    display: none;
  }
}

/* ==================
　card
 ================== */
.l-contents {
  container-type: inline-size;
}

.p-card-farmgoods__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space_m);
}
@media (min-width: 500px) {
  .p-card-farmgoods__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-card-farmgoods__article {
  position: relative;
  background-color: var(--color-bg_gray);
  border-radius: var(--border-radius_ml);
  padding-bottom: var(--space_s);
}

.p-card-farmgoods__article h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.5em;
}

.p-card-farmgoods__image {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #fff;
  border-radius: var(--border-radius_ml) var(--border-radius_ml) 0 0;
  box-shadow: var(--box-shadow);
}

.p-card-farmgoods__image .image {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}

.p-card-farmgoods__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: var(--transition);
}

@media (any-hover: hover) {
  .p-card-farmgoods__article:hover {
    background-color: var(--color-bg-green);
  }
  .p-card-farmgoods__article:hover .p-card-farmgoods__image img {
    transform: scale(1.1);
  }
  .p-card-farmgoods__article:hover h4 {
    color: var(--color-red);
  }
}
/*
===============
TOP(home共通)
===============
*/
.farm_container .bg-wrapper {
  margin-top: -9.51vw;
}

.l-contents__inner--list.p-farmgoods {
  background-image: url(../images/home/bg_sky.webp);
  width: 100%;
  border-radius: var(--border-radius_ll) var(--border-radius_ll) 0 0;
}
@media (min-width: 1024px) {
  .l-contents__inner--list.p-farmgoods {
    border-radius: 0 var(--border-radius_ll) var(--border-radius_ll) 0;
  }
}

.l-contents__inner--list.p-farmgoods {
  padding: 0;
  overflow: hidden;
}

.l-contents__inner--list.p-farmgoods .farm_container .bg-wrapper {
  margin-top: 0;
  overflow: hidden;
}

.il_gifupref {
  display: block;
  width: 64px;
  height: 76px;
  margin: 0 auto;
}

.farm-p-card--blog {
  margin-top: 32px;
}

@media (any-hover: hover) {
  .farm-p-card--blog li a:hover {
    background-color: var(--color-yellow);
  }
}
.farm-p-card--blog li a {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  background-color: var(--color-bg_white);
  border-radius: var(--border-radius_ml);
  text-align: center;
  box-shadow: var(--box-shadow);
  padding: var(--space_m) 0;
}
@media (min-width: 500px) {
  .farm-p-card--blog li a {
    padding: var(--space_l) 0;
  }
}

.farm-p-card--blog .img_box {
  display: grid;
  place-items: center;
}

.four-grid.farm-p-card--blog .c-card__imgbox img {
  -o-object-fit: contain;
     object-fit: contain;
}

.four-grid.farm-p-card--blog li:nth-child(1) .il_gifupref {
  width: 40px;
}

.four-grid.farm-p-card--blog li:nth-child(2) .il_gifupref {
  width: 45px;
}

.four-grid.farm-p-card--blog li:nth-child(3) .il_gifupref {
  width: 54px;
}

.four-grid.farm-p-card--blog li:nth-child(4) .il_gifupref {
  width: 74px;
}

.farm-p-card--blog .txt_box {
  font-size: var(--font-size_l);
  line-height: 1.3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin-top: 0.5em;
}/*# sourceMappingURL=index.css.map */