@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='0' x2='40' y2='40' stroke='%23F6A7BB' stroke-width='1' stroke-opacity='0.4'/%3E%3Cline x1='40' y1='0' x2='0' y2='40' stroke='%23F6A7BB' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 40px;
}

.l-wrapper {
  max-width: 1280px;
  margin-inline: auto;
  background-color: var(--color-white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/*! kiso.css v1.2.4 | 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%;
  text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  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(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* 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;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  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):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

: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;
  text-decoration-inset: auto;
  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) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * 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;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* 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(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

: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:lang(en)) {
  /* 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(: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;
}

::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;
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(1080px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* --- ベース --- */
  --color-bg: #fdf2f5;
  --color-bg-pink: #f6a7bb;
  --color-surface: #fff;
  --color-text: #351f17;
  --color-text-sub: #6f5151;
  --color-white: #fff;
  --color-black: #000;
  /* --- アクセント --- */
  --color-accent: #e23061;
  --color-accent-yellow: #f9b30b;
  --color-primary: #e23061;
  --color-secondary: #f6a7bb;
  /* --- 5テーマカラー --- */
  --theme-tanoshimu: #e23061;
  --theme-osyare: #e56328;
  --theme-sukoyaka: #64bea8;
  --theme-sonaeru: #9e5bb4;
  --theme-benri: #3155a5;
  /* --- ナビ --- */
  --nav-bg: #fff;
  --nav-text: #351f17;
  --nav-hover: #e23061;
  --nav-border: #f6a7bb;
  /* --- セクション背景（白・薄ピンク交互） --- */
  --section-bg-a: #fff;
  --section-bg-b: #fdf2f5;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --title-font-family: "Zen Maru Gothic", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* rem helper */
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition */
  --duration: 0.3s;
  /* --- 余白スケール（8pxベース） --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  /* --- 角丸・影 --- */
  --radius: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgb(0 0 0 / 8%);
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}

.l-inner {
  max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-inner) * 2);
  }
}

/* -------------------------------------------------------
   出展企業紹介（company.html / company テーマ詳細）
------------------------------------------------------- */
.p-company {
  background-color: var(--color-white);
}

.p-company__head {
  padding: var(--space-6) 0 var(--space-5);
  text-align: center;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .p-company__head {
    padding: var(--space-7) 0 var(--space-6);
  }
}

.p-company__breadcrumb {
  margin-bottom: var(--space-4);
  text-align: left;
}

.p-company__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
  font-size: calc(12 * var(--to-rem));
  color: var(--color-text-sub);
}

.p-company__breadcrumb-item {
  display: flex;
  align-items: center;
}
.p-company__breadcrumb-item:not(:last-child)::after {
  margin: 0 0.5em;
  content: ">";
}
.p-company__breadcrumb-item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-company__breadcrumb-item a:hover {
  color: var(--color-accent);
}
.p-company__breadcrumb-item[aria-current=page] {
  color: var(--color-text);
}

.p-company__lead {
  max-width: 720px;
  margin: var(--space-4) auto 0;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.9;
  color: var(--color-text);
  text-align: left;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-company__lead {
    font-size: calc(15 * var(--to-rem));
    text-align: center;
  }
}

.p-company__body {
  padding: var(--space-6) 0 var(--space-8);
}
@media screen and (min-width: 768px) {
  .p-company__body {
    padding: var(--space-7) 0 var(--space-8);
  }
}

.p-company__note {
  margin-bottom: var(--space-5);
  font-size: calc(12 * var(--to-rem));
  line-height: 1.7;
  color: var(--color-text-sub);
}
.p-company__note--top {
  margin-top: var(--space-4);
}

/* テーマジャンプ */
.p-company__jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.p-company__jump-link {
  display: inline-block;
  padding: 0.5em 1.2em;
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  transition: opacity var(--duration);
}
.p-company__jump-link:hover {
  opacity: 0.85;
}
.p-company__jump-link--tanoshimu {
  background-color: var(--theme-tanoshimu);
}
.p-company__jump-link--osyare {
  background-color: var(--theme-osyare);
}
.p-company__jump-link--sukoyaka {
  background-color: var(--theme-sukoyaka);
}
.p-company__jump-link--sonaeru {
  background-color: var(--theme-sonaeru);
}
.p-company__jump-link--benri {
  background-color: var(--theme-benri);
}

/* テーマカラー変数 */
.p-company-theme--tanoshimu,
.p-company--tanoshimu {
  --theme-color: var(--theme-tanoshimu);
  --theme-bg: color-mix(in srgb, var(--theme-tanoshimu) 15%, #fff);
  --theme-bg-hover: color-mix(in srgb, var(--theme-tanoshimu) 28%, #fff);
}

.p-company-theme--osyare,
.p-company--osyare {
  --theme-color: var(--theme-osyare);
  --theme-bg: color-mix(in srgb, var(--theme-osyare) 15%, #fff);
  --theme-bg-hover: color-mix(in srgb, var(--theme-osyare) 28%, #fff);
}

.p-company-theme--sukoyaka,
.p-company--sukoyaka {
  --theme-color: var(--theme-sukoyaka);
  --theme-bg: color-mix(in srgb, var(--theme-sukoyaka) 15%, #fff);
  --theme-bg-hover: color-mix(in srgb, var(--theme-sukoyaka) 28%, #fff);
}

.p-company-theme--sonaeru,
.p-company--sonaeru {
  --theme-color: var(--theme-sonaeru);
  --theme-bg: color-mix(in srgb, var(--theme-sonaeru) 15%, #fff);
  --theme-bg-hover: color-mix(in srgb, var(--theme-sonaeru) 28%, #fff);
}

.p-company-theme--benri,
.p-company--benri {
  --theme-color: var(--theme-benri);
  --theme-bg: color-mix(in srgb, var(--theme-benri) 15%, #fff);
  --theme-bg-hover: color-mix(in srgb, var(--theme-benri) 28%, #fff);
}

/* テーマブロック（一覧ページ） */
.p-company-theme {
  padding: var(--space-6) 0;
  border-top: 2px solid var(--theme-color, var(--color-bg-pink));
  scroll-margin-top: 120px;
}
.p-company-theme:first-of-type {
  margin-top: var(--space-4);
}

.p-company-theme__head {
  margin-bottom: var(--space-4);
}

.p-company-theme__title {
  font-family: var(--title-font-family);
  font-size: calc(22 * var(--to-rem));
  font-weight: var(--fw-bold);
}

.p-company-theme__title-link {
  color: var(--theme-color, inherit);
  text-decoration: none;
}
.p-company-theme__title-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-company-theme__desc {
  margin-top: var(--space-2);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.7;
  color: var(--color-text-sub);
}

.p-company-theme__count {
  margin-top: var(--space-2);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--theme-color, var(--color-text));
}
.p-company-theme__count span {
  font-size: calc(20 * var(--to-rem));
}

.p-company-theme__list {
  display: grid;
  gap: var(--space-2);
}
@media screen and (min-width: 768px) {
  .p-company-theme__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

.p-company-theme__link {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 0 var(--space-2);
  height: 100%;
  padding: var(--space-3);
  color: inherit;
  text-decoration: none;
  background-color: var(--theme-bg, var(--color-bg));
  border-left: 3px solid var(--theme-color, var(--color-accent));
  border-radius: var(--radius);
  transition: background-color var(--duration);
}
.p-company-theme__link:hover {
  background-color: var(--theme-bg-hover, var(--color-bg-pink));
}

.p-company-theme__num {
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--theme-color, var(--color-accent));
}

.p-company-theme__company {
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--theme-color, var(--color-text));
}

.p-company-theme__product {
  grid-column: 2/-1;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.5;
  color: var(--color-text-sub);
}

/* テーマ詳細ページ */
.p-company--theme .p-company__theme-desc {
  margin-top: var(--space-3);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.7;
  color: var(--color-text-sub);
}

.p-company__theme-count {
  margin-top: var(--space-2);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--theme-color, var(--color-text));
}
.p-company__theme-count span {
  font-size: calc(20 * var(--to-rem));
}

.p-company__toc {
  margin-bottom: var(--space-5);
}

.p-company__toc-list {
  display: grid;
  gap: var(--space-2);
}
@media screen and (min-width: 768px) {
  .p-company__toc-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

.p-company__toc-link {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 0 var(--space-2);
  height: 100%;
  padding: var(--space-3);
  color: inherit;
  text-decoration: none;
  background-color: var(--theme-bg, var(--color-bg));
  border-left: 3px solid var(--theme-color, var(--color-accent));
  border-radius: var(--radius);
  transition: background-color var(--duration);
}
.p-company__toc-link:hover {
  background-color: var(--theme-bg-hover, var(--color-bg-pink));
}

.p-company__toc-num {
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--theme-color, var(--color-accent));
}

.p-company__toc-company {
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--theme-color, var(--color-text));
}

.p-company__toc-product {
  grid-column: 2/-1;
  font-size: calc(12 * var(--to-rem));
  color: var(--color-text-sub);
}

.p-company__details {
  display: grid;
  gap: var(--space-7);
  margin-top: var(--space-6);
}

/* 企業詳細ブロック */
.p-company-detail {
  padding-top: var(--space-5);
  border-top: 3px solid var(--color-bg-pink);
  scroll-margin-top: 120px;
}

.p-company-detail--tanoshimu {
  border-top-color: var(--theme-tanoshimu);
}

.p-company-detail--osyare {
  border-top-color: var(--theme-osyare);
}

.p-company-detail--sukoyaka {
  border-top-color: var(--theme-sukoyaka);
}

.p-company-detail--sonaeru {
  border-top-color: var(--theme-sonaeru);
}

.p-company-detail--benri {
  border-top-color: var(--theme-benri);
}

.p-company-detail__booth {
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-text-sub);
}

.p-company-detail__booth-num {
  margin-left: 0.5em;
  font-family: var(--title-font-family);
  font-size: calc(24 * var(--to-rem));
  color: var(--color-text);
}

.p-company-detail__main {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-4);
}
@media screen and (min-width: 768px) {
  .p-company-detail__main {
    grid-template-columns: 1fr min(320px, 40%);
    align-items: start;
  }
}

.p-company-detail__product {
  font-family: var(--title-font-family);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .p-company-detail__product {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-company-detail__catch {
  margin-top: var(--space-2);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.7;
  color: var(--color-text-sub);
}

.p-company-detail__badge {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 0.2em 0.8em;
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background-color: var(--color-accent-yellow);
  border-radius: 4px;
}

.p-company-detail__summary {
  margin-top: var(--space-3);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-company-detail__block {
  margin-top: var(--space-4);
}

.p-company-detail__heading {
  padding-bottom: var(--space-2);
  font-family: var(--title-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--theme-color, var(--color-bg-pink));
}

.p-company-detail__text {
  margin-top: var(--space-3);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-company-detail__targets {
  margin-top: var(--space-3);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
.p-company-detail__targets li {
  position: relative;
  padding-left: 1.2em;
}
.p-company-detail__targets li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.p-company-detail__block--company {
  padding: var(--space-4);
  background-color: var(--color-bg);
  border-radius: var(--radius);
}

.p-company-detail__company-name {
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
}

.p-company-detail__info {
  margin-top: var(--space-3);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
}

.p-company-detail__info-row {
  display: grid;
  gap: 0 var(--space-2);
  margin-top: var(--space-2);
}
@media screen and (min-width: 768px) {
  .p-company-detail__info-row {
    grid-template-columns: 5em 1fr;
  }
}
.p-company-detail__info-row dt {
  font-weight: var(--fw-bold);
  color: var(--color-text-sub);
}
.p-company-detail__info-row a {
  color: var(--theme-color, var(--color-accent));
  word-break: break-all;
}

.p-company-detail__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--theme-bg, var(--color-bg)) 0%, var(--theme-bg-hover, var(--color-bg-pink)) 100%);
  border: 2px dashed var(--theme-color, var(--color-bg-pink));
  border-radius: var(--radius);
}

.p-company-detail__photo-label {
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text-sub);
}

/* -------------------------------------------------------
   企画コーナー（corner.html）
------------------------------------------------------- */
.p-corner {
  background-color: var(--color-white);
}

.p-corner__head {
  padding: var(--space-6) 0 var(--space-5);
  text-align: center;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .p-corner__head {
    padding: var(--space-7) 0 var(--space-6);
  }
}

.p-corner__breadcrumb {
  margin-bottom: var(--space-4);
  text-align: left;
}

.p-corner__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
  font-size: calc(12 * var(--to-rem));
  color: var(--color-text-sub);
}

.p-corner__breadcrumb-item {
  display: flex;
  align-items: center;
}
.p-corner__breadcrumb-item:not(:last-child)::after {
  margin: 0 0.5em;
  content: ">";
}
.p-corner__breadcrumb-item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-corner__breadcrumb-item a:hover {
  color: var(--color-accent);
}
.p-corner__breadcrumb-item[aria-current=page] {
  color: var(--color-text);
}

.p-corner__body {
  padding: var(--space-6) 0 var(--space-8);
}
@media screen and (min-width: 768px) {
  .p-corner__body {
    padding: var(--space-7) 0 var(--space-8);
  }
}

.p-corner__content {
  max-width: 800px;
  margin-inline: auto;
  padding: var(--space-5);
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 4px 5px 0 var(--color-bg-pink);
}
@media screen and (min-width: 768px) {
  .p-corner__content {
    padding: var(--space-6) var(--space-7);
  }
}

.p-corner__section-title {
  display: inline-block;
  padding: 0.35em 1em;
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.08em;
  background-color: var(--color-accent);
  border-radius: 999px;
}

.p-corner__event-title {
  margin-top: var(--space-5);
  padding-bottom: var(--space-3);
  font-family: var(--title-font-family);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.55;
  color: var(--color-text);
  border-bottom: 2px dashed var(--color-bg-pink);
}
@media screen and (min-width: 768px) {
  .p-corner__event-title {
    font-size: calc(26 * var(--to-rem));
    line-height: 1.45;
  }
}

.p-corner__event-subtitle {
  display: block;
  margin-top: var(--space-2);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .p-corner__event-subtitle {
    display: inline;
    margin-top: 0;
    margin-left: 0.25em;
    font-size: calc(20 * var(--to-rem));
  }
}

.p-corner__text {
  margin-top: var(--space-4);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.95;
  color: var(--color-text);
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-corner__text {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-corner__text p + p {
  margin-top: var(--space-3);
}

.p-corner__figure {
  margin-top: var(--space-6);
}

.p-corner__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: var(--color-bg);
  border: 2px solid var(--color-bg-pink);
  border-radius: var(--radius);
  box-shadow: 3px 4px 0 var(--color-bg-pink);
}

.p-corner__image-label {
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text-sub);
}

.p-corner__caption {
  margin-top: var(--space-2);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text-sub);
  text-align: center;
}

.p-corner__supervisor {
  margin-top: var(--space-7);
  padding: var(--space-5);
  background-color: var(--color-bg);
  border: 2px solid var(--color-bg-pink);
  border-radius: var(--radius);
}
@media screen and (min-width: 768px) {
  .p-corner__supervisor {
    padding: var(--space-6);
  }
}

.p-corner__supervisor-label {
  display: inline-block;
  padding: 0.2em 0.9em;
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 4px;
}

.p-corner__profile {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
@media screen and (min-width: 768px) {
  .p-corner__profile {
    grid-template-columns: 140px 1fr;
    gap: var(--space-5);
    align-items: start;
  }
}

.p-corner__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(140px, 70%);
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--color-white);
  border: 2px solid var(--color-bg-pink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--color-bg-pink);
}
@media screen and (min-width: 768px) {
  .p-corner__photo {
    width: 140px;
    margin-inline: 0;
  }
}

.p-corner__photo-label {
  font-size: calc(11 * var(--to-rem));
  color: var(--color-text-sub);
}

.p-corner__profile-body {
  min-width: 0;
}

.p-corner__profile-name {
  font-family: var(--title-font-family);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .p-corner__profile-name {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-corner__profile-name span {
  margin-left: 0.15em;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
}

.p-corner__profile-titles {
  margin-top: var(--space-3);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.75;
  color: var(--color-text-sub);
}
.p-corner__profile-titles li {
  position: relative;
  padding-left: 1em;
}
.p-corner__profile-titles li::before {
  position: absolute;
  left: 0;
  color: var(--color-accent);
  content: "・";
}
.p-corner__profile-titles li + li {
  margin-top: var(--space-1);
}

.p-corner__profile-bio {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.95;
  color: var(--color-text);
  border-top: 1px dashed var(--color-bg-pink);
}

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

.p-footer__bottom {
  padding: var(--space-5) 0;
}

.p-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    justify-content: flex-start;
  }
}

.p-footer__nav-item a {
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    color: var(--color-white);
  }
}

.p-footer__copyright {
  font-size: calc(12 * var(--to-rem));
  color: rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------------
   ヘッダー全体
------------------------------------------------------- */
.p-header {
  position: sticky;
  top: 0;
  z-index: var(--z-index-header);
  background-color: var(--color-white);
}

/* -------------------------------------------------------
   ロゴ行
------------------------------------------------------- */
.p-header__logo-row {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--nav-border);
}

.p-header__logo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-right: calc(40px + var(--space-4) + var(--space-2));
}
@media screen and (min-width: 1024px) {
  .p-header__logo-inner {
    height: 88px;
    padding-right: var(--padding-inner);
  }
}

.p-header__logo-inner.l-inner {
  max-width: 900px;
}
@media screen and (min-width: 1024px) {
  .p-header__logo-inner.l-inner {
    max-width: 1200px;
  }
}

.p-header__logo {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  flex: 1;
  min-width: 0;
  max-width: 560px;
}
@media screen and (min-width: 1024px) {
  .p-header__logo {
    flex: 0 1 auto;
  }
}

.p-header__logo-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__logo-link:hover {
    opacity: 0.85;
  }
}

.p-header__logo-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: calc(var(--space-3) + 2px);
  line-height: 1.35;
}
.p-header__logo-text::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 3px;
  content: "";
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}
@media screen and (min-width: 768px) {
  .p-header__logo-text {
    flex-flow: row wrap;
    gap: 0.35em 0.55em;
    align-items: baseline;
  }
}

.p-header__logo-lead {
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-header__logo-lead {
    font-size: calc(14 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-header__logo-lead {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-header__logo-tail {
  display: inline-flex;
  gap: 0.35em;
  align-items: center;
}

.p-header__logo-plus {
  font-family: var(--title-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-header__logo-plus {
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-header__logo-plus {
    font-size: calc(18 * var(--to-rem));
  }
}

.p-header__logo-year {
  display: inline-block;
  padding: 0.12em 0.55em;
  font-family: var(--title-font-family);
  font-size: calc(10 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--color-text);
  background-color: var(--color-accent-yellow);
  border-radius: var(--radius-pill);
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-header__logo-year {
    font-size: calc(12 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-header__logo-year {
    font-size: calc(13 * var(--to-rem));
  }
}

.p-header__social {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.p-header__x-link {
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-white);
  background-color: #000;
  border-radius: 8px;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__x-link:hover {
    opacity: 0.75;
  }
}

/* -------------------------------------------------------
   ナビ行（PC）
------------------------------------------------------- */
.p-header__nav-row {
  display: none;
  background-color: var(--color-accent);
}
@media screen and (min-width: 1024px) {
  .p-header__nav-row {
    display: block;
  }
}

.p-header__nav {
  padding-inline: 0;
}

.p-header__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.p-header__nav-item {
  position: relative;
  display: flex;
  flex: 1;
  align-items: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.p-header__nav-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.p-header__nav-item > a,
.p-header__nav-item > span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-3);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-header__nav-item > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

/* HOMEだけイエロー */
.p-header__nav-item--home > a {
  color: var(--color-accent-yellow);
}

/* 出展企業紹介 ドロップダウン */
.p-header__nav-item--has-child > a {
  gap: 6px;
}
.p-header__nav-item--has-child > a::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  transform: rotate(45deg) translateY(-2px);
}
@media (any-hover: hover) {
  .p-header__nav-item--has-child:hover > a {
    background-color: rgba(255, 255, 255, 0.12);
  }
  .p-header__nav-item--has-child:hover .p-header__nav-child {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.p-header__nav-child {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 160px;
  overflow: hidden;
  visibility: hidden;
  background-color: var(--color-white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity var(--duration), transform var(--duration), visibility var(--duration);
  transform: translateY(-6px);
}
.p-header__nav-child li {
  border-top: 1px solid var(--nav-border);
}
.p-header__nav-child li:first-child {
  border-top: none;
}

.p-header__nav-child-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: background-color var(--duration);
}
.p-header__nav-child-link--tanoshimu {
  color: var(--theme-tanoshimu);
}
.p-header__nav-child-link--osyare {
  color: var(--theme-osyare);
}
.p-header__nav-child-link--sukoyaka {
  color: var(--theme-sukoyaka);
}
.p-header__nav-child-link--sonaeru {
  color: var(--theme-sonaeru);
}
.p-header__nav-child-link--benri {
  color: var(--theme-benri);
}
@media (any-hover: hover) {
  .p-header__nav-child-link:hover {
    background-color: var(--color-bg);
  }
}

.p-header__nav-external {
  font-size: 0.85em;
}

/* -------------------------------------------------------
   ハンバーガー（SP）
------------------------------------------------------- */
.p-header__hamburger {
  position: absolute;
  top: 50%;
  right: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  transition: opacity var(--duration), transform var(--duration);
}
.p-header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.p-header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------
   ドロワー（SP）
------------------------------------------------------- */
.p-header__drawer {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  z-index: calc(var(--z-index-header) - 1);
  width: min(320px, 100%);
  overflow-y: auto;
  background-color: var(--color-white);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--duration);
  transform: translateX(100%);
}
@media screen and (min-width: 1024px) {
  .p-header__drawer {
    display: none;
  }
}
.p-header__drawer[aria-hidden=false] {
  transform: translateX(0);
}

.p-header__drawer-nav {
  padding: var(--space-4) 0;
}

.p-header__drawer-item {
  border-bottom: 2px dashed var(--nav-border);
}
.p-header__drawer-item > a,
.p-header__drawer-item > button {
  display: block;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-family: var(--title-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
}

.p-header__drawer-item--home > a {
  color: var(--color-accent-yellow);
  background-color: var(--color-accent);
}

.p-header__drawer-accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.p-header__drawer-accordion-title::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  transition: transform var(--duration);
  transform: rotate(45deg);
}
.p-header__drawer-accordion-title[aria-expanded=true]::after {
  transform: rotate(-135deg);
}

.p-header__drawer-accordion-list {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration);
}
.p-header__drawer-accordion-list[aria-hidden=false] {
  max-height: 400px;
}

.p-header__drawer-accordion-item > a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  text-decoration: none;
}
.p-header__drawer-accordion-item--tanoshimu > a {
  color: var(--theme-tanoshimu);
}
.p-header__drawer-accordion-item--osyare > a {
  color: var(--theme-osyare);
}
.p-header__drawer-accordion-item--sukoyaka > a {
  color: var(--theme-sukoyaka);
}
.p-header__drawer-accordion-item--sonaeru > a {
  color: var(--theme-sonaeru);
}
.p-header__drawer-accordion-item--benri > a {
  color: var(--theme-benri);
}

/* -------------------------------------------------------
   規約・方針ページ（privacy / terms / exhibitor 共通）
------------------------------------------------------- */
.p-legal {
  background-color: var(--color-white);
}

.p-legal__head {
  padding: var(--space-7) 0 var(--space-5);
  text-align: center;
  background-color: var(--color-bg);
}
@media screen and (min-width: 768px) {
  .p-legal__head {
    padding: var(--space-8) 0 var(--space-6);
  }
}

.p-legal__subtitle {
  margin-top: var(--space-3);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
}

.p-legal__body {
  padding: var(--space-6) 0 var(--space-8);
}
@media screen and (min-width: 768px) {
  .p-legal__body {
    padding: var(--space-7) 0 var(--space-8);
  }
}

.p-legal__content {
  max-width: 800px;
  margin-inline: auto;
  padding: var(--space-5);
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 4px 5px 0 var(--color-bg-pink);
}
@media screen and (min-width: 768px) {
  .p-legal__content {
    padding: var(--space-6) var(--space-7);
  }
}

.p-legal__lead {
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.9;
  color: var(--color-text);
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-legal__lead {
    font-size: calc(15 * var(--to-rem));
  }
}

.p-legal__section {
  padding-top: var(--space-5);
  margin-top: var(--space-5);
  border-top: 2px dashed var(--nav-border);
}
.p-legal__section:first-of-type {
  padding-top: var(--space-6);
  margin-top: var(--space-6);
}

.p-legal__heading {
  display: inline-block;
  padding: 0.3em 1em;
  margin-bottom: var(--space-3);
  font-family: var(--title-font-family);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: 0.04em;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-legal__heading {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-legal__text {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
  color: var(--color-text);
  font-feature-settings: "palt";
}
.p-legal__text + .p-legal__text {
  margin-top: var(--space-3);
}
@media screen and (min-width: 768px) {
  .p-legal__text {
    font-size: calc(15 * var(--to-rem));
  }
}

.p-legal__list {
  margin-top: var(--space-3);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .p-legal__list {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-legal__list--ordered {
  padding-left: 1.4em;
  list-style: decimal;
}
.p-legal__list--unordered {
  padding-left: 1.2em;
  list-style: disc;
}
.p-legal__list li + li {
  margin-top: var(--space-2);
}

.p-legal__link {
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-underline-offset: 3px;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-legal__link:hover {
    opacity: 0.75;
  }
}

.p-legal__footer {
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  text-align: right;
  border-top: 2px dashed var(--nav-border);
}

.p-legal__enacted,
.p-legal__sign {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text-sub);
}

.p-legal__sign {
  margin-top: var(--space-2);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

/* -------------------------------------------------------
   セクション共通見出し
------------------------------------------------------- */
/* タイトルをブロック中央寄せ */
.l-top__news .l-inner,
.l-top__outline .l-inner,
.l-top__together .l-inner,
.l-top__contact .l-inner,
.l-top__archive .l-inner {
  text-align: center;
}

.p-section-title {
  position: relative;
  display: inline-block;
  padding: 0.2em 1.4em 0.25em;
  font-family: var(--title-font-family);
  font-size: calc(22 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.1em;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .p-section-title {
    font-size: calc(30 * var(--to-rem));
  }
}
.p-section-title::before {
  position: absolute;
  inset: -10% -5%;
  z-index: -1;
  content: "";
  background-image: var(--brush-svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

/* テーマ別ブラシカラー（SVGをURLエンコードして埋め込み） */
/* たのしむ：マゼンタ #E23061 → 薄め #F5A8BA */
.p-section-title--tanoshimu {
  --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 80' preserveAspectRatio='none'%3E%3Cpath d='M 12 44 C 8 32, 18 20, 40 18 C 65 15, 100 20, 140 17 C 175 14, 200 12, 235 15 C 270 18, 305 14, 330 20 C 350 24, 358 34, 354 46 C 350 56, 335 64, 308 62 C 275 60, 240 66, 205 63 C 170 60, 135 68, 98 64 C 68 61, 38 60, 18 54 C 8 50, 10 46, 12 44 Z' fill='%23F5A8BA' opacity='0.85'/%3E%3C/svg%3E");
}

/* おしゃれ：オレンジ #E56328 → 薄め #FACBA8 */
.p-section-title--osyare {
  --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 80' preserveAspectRatio='none'%3E%3Cpath d='M 12 44 C 8 32, 18 20, 40 18 C 65 15, 100 20, 140 17 C 175 14, 200 12, 235 15 C 270 18, 305 14, 330 20 C 350 24, 358 34, 354 46 C 350 56, 335 64, 308 62 C 275 60, 240 66, 205 63 C 170 60, 135 68, 98 64 C 68 61, 38 60, 18 54 C 8 50, 10 46, 12 44 Z' fill='%23FACBA8' opacity='0.85'/%3E%3C/svg%3E");
}

/* すこやか：グリーン #64BEA8 → 薄め #B2E2D8 */
.p-section-title--sukoyaka {
  --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 80' preserveAspectRatio='none'%3E%3Cpath d='M 12 44 C 8 32, 18 20, 40 18 C 65 15, 100 20, 140 17 C 175 14, 200 12, 235 15 C 270 18, 305 14, 330 20 C 350 24, 358 34, 354 46 C 350 56, 335 64, 308 62 C 275 60, 240 66, 205 63 C 170 60, 135 68, 98 64 C 68 61, 38 60, 18 54 C 8 50, 10 46, 12 44 Z' fill='%23B2E2D8' opacity='0.85'/%3E%3C/svg%3E");
}

/* そなえる：パープル #9E5BB4 → 薄め #D4AEDE */
.p-section-title--sonaeru {
  --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 80' preserveAspectRatio='none'%3E%3Cpath d='M 12 44 C 8 32, 18 20, 40 18 C 65 15, 100 20, 140 17 C 175 14, 200 12, 235 15 C 270 18, 305 14, 330 20 C 350 24, 358 34, 354 46 C 350 56, 335 64, 308 62 C 275 60, 240 66, 205 63 C 170 60, 135 68, 98 64 C 68 61, 38 60, 18 54 C 8 50, 10 46, 12 44 Z' fill='%23D4AEDE' opacity='0.85'/%3E%3C/svg%3E");
}

/* べんり：ブルー #3155A5 → 薄め #A8BADE */
.p-section-title--benri {
  --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 80' preserveAspectRatio='none'%3E%3Cpath d='M 12 44 C 8 32, 18 20, 40 18 C 65 15, 100 20, 140 17 C 175 14, 200 12, 235 15 C 270 18, 305 14, 330 20 C 350 24, 358 34, 354 46 C 350 56, 335 64, 308 62 C 275 60, 240 66, 205 63 C 170 60, 135 68, 98 64 C 68 61, 38 60, 18 54 C 8 50, 10 46, 12 44 Z' fill='%23A8BADE' opacity='0.85'/%3E%3C/svg%3E");
}

.p-section-title-wrap {
  position: relative;
  display: inline-block;
}

.p-section-title-deco-wrap {
  position: absolute;
  top: 50%;
  display: block;
  line-height: 0;
  pointer-events: none;
}

.p-section-title-deco-wrap--left {
  right: calc(100% + 0.4em);
  height: clamp(40px, 12vw, 76px);
  transform: translateY(-52%) rotate(-8deg);
}

.p-section-title-deco-wrap--right {
  left: calc(100% + 0.4em);
  height: clamp(32px, 10vw, 60px);
  transform: translateY(-48%) rotate(10deg);
}

.p-section-title-deco {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

@media screen and (width < 768px) {
  .p-section-title-deco-wrap--left {
    right: calc(100% + 0.15em);
  }
  .p-section-title-deco-wrap--right {
    left: calc(100% + 0.15em);
  }
}
/* -------------------------------------------------------
   コンセプト
------------------------------------------------------- */
.l-top__concept {
  position: relative;
  padding: var(--space-7) 0;
}
@media screen and (min-width: 768px) {
  .l-top__concept {
    padding: var(--space-8) 0;
  }
}
.l-top__concept .l-inner {
  position: relative;
  z-index: 1;
}

.p-concept__deco,
.p-outline__deco {
  position: absolute;
  z-index: 0;
  width: auto;
  height: clamp(100px, 18vw, 140px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  pointer-events: none;
}

.p-concept__deco--left,
.p-outline__deco--left {
  top: 4%;
  left: max(var(--space-2), 2%);
}

.p-concept__deco--right,
.p-outline__deco--right {
  top: 4%;
  right: max(var(--space-2), 2%);
}

.p-concept__intro {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.p-concept__title {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-bold);
}

.p-concept__voices {
  display: block;
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.85;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-concept__voices {
    font-size: calc(18 * var(--to-rem));
    line-height: 1.9;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__voices-br {
    display: none;
  }
}

.p-concept__lead {
  display: block;
  margin-top: var(--space-4);
  font-size: calc(28 * var(--to-rem));
  line-height: 1.45;
  color: var(--color-accent);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-concept__lead {
    margin-top: var(--space-5);
    font-size: calc(40 * var(--to-rem));
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__lead-br {
    display: none;
  }
}

.p-concept__body {
  max-width: 640px;
  margin-top: var(--space-5);
  margin-inline: auto;
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.85;
  color: var(--color-text-sub);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-concept__body {
    margin-top: var(--space-6);
    font-size: calc(16 * var(--to-rem));
    line-height: 1.8;
  }
}

/* -------------------------------------------------------
   セクション区切り線
------------------------------------------------------- */
.p-section-divider {
  width: 90%;
  height: 6px;
  margin: 0 auto;
  background-image: linear-gradient(to right, var(--color-accent) 10px, transparent 10px), linear-gradient(to right, var(--color-bg-pink) 6px, transparent 6px);
  background-repeat: repeat-x;
  background-position: left top, left bottom;
  background-size: 18px 3px, 18px 3px;
  border: none;
  opacity: 0.5;
}

/* -------------------------------------------------------
   セクション共通余白・波線区切り
------------------------------------------------------- */
.l-top__concept,
.l-top__news,
.l-top__outline,
.l-top__together,
.l-top__contact,
.l-top__archive {
  padding: var(--space-7) 0;
}
@media screen and (min-width: 768px) {
  .l-top__concept,
  .l-top__news,
  .l-top__outline,
  .l-top__together,
  .l-top__contact,
  .l-top__archive {
    padding: var(--space-8) 0;
  }
}

/* セクション間の波線デコレーター */
.p-section-wave {
  display: block;
  width: 100%;
  height: 40px;
  overflow: hidden;
  line-height: 0;
}
.p-section-wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* -------------------------------------------------------
   KV
------------------------------------------------------- */
.p-kv {
  background-color: var(--color-bg-pink);
}

.p-kv__inner {
  max-width: 1600px;
  margin-inline: auto;
}

.p-kv__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* KVがない間のプレースホルダー */
.p-kv__placeholder {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: var(--space-8) var(--space-4);
  text-align: center;
  background-color: var(--color-bg-pink);
}
@media screen and (min-width: 768px) {
  .p-kv__placeholder {
    min-height: 440px;
  }
}

.p-kv__placeholder-title {
  font-family: var(--title-font-family);
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-kv__placeholder-title {
    font-size: calc(44 * var(--to-rem));
  }
}

.p-kv__placeholder-date {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  font-family: var(--title-font-family);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-kv__placeholder-date {
    font-size: calc(20 * var(--to-rem));
  }
}

/* -------------------------------------------------------
   5テーマ
------------------------------------------------------- */
.p-themes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-7);
}
@media screen and (min-width: 768px) {
  .p-themes__list {
    grid-template-columns: repeat(5, 1fr);
    margin-top: var(--space-8);
  }
}

.p-themes__item {
  overflow: hidden;
  border-radius: var(--radius);
}
.p-themes__item--tanoshimu {
  --theme-color: var(--theme-tanoshimu);
  --theme-bg: color-mix(in srgb, var(--theme-tanoshimu) 18%, #fff);
}
.p-themes__item--osyare {
  --theme-color: var(--theme-osyare);
  --theme-bg: color-mix(in srgb, var(--theme-osyare) 18%, #fff);
}
.p-themes__item--sukoyaka {
  --theme-color: var(--theme-sukoyaka);
  --theme-bg: color-mix(in srgb, var(--theme-sukoyaka) 18%, #fff);
}
.p-themes__item--sonaeru {
  --theme-color: var(--theme-sonaeru);
  --theme-bg: color-mix(in srgb, var(--theme-sonaeru) 18%, #fff);
}
.p-themes__item--benri {
  --theme-color: var(--theme-benri);
  --theme-bg: color-mix(in srgb, var(--theme-benri) 18%, #fff);
}

.p-themes__link {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  height: 100%;
  padding: var(--space-4);
  text-decoration: none;
  background-color: var(--theme-bg);
  /* 旧サイト風の太いoffsetシャドウ */
  border-radius: var(--radius);
  outline: 2px solid var(--theme-color);
  box-shadow: 4px 5px 0 var(--theme-color);
  transition: box-shadow var(--duration), transform var(--duration);
}
@media (any-hover: hover) {
  .p-themes__link:hover {
    box-shadow: 2px 2px 0 var(--theme-color);
    transform: translate(2px, 3px);
  }
}

.p-themes__tag {
  display: inline-block;
  min-width: 5.5em;
  padding: 0.45em 1.1em;
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.08em;
  background-color: var(--theme-color);
  border: 1.5px solid var(--color-text);
  border-radius: var(--radius-pill);
  box-shadow: 2px 2px 0 color-mix(in srgb, var(--theme-color) 50%, var(--color-text));
}
@media screen and (min-width: 768px) {
  .p-themes__tag {
    min-width: 6em;
    padding: 0.5em 1.25em;
    font-size: calc(15 * var(--to-rem));
  }
}

.p-themes__desc {
  font-size: calc(12 * var(--to-rem));
  line-height: 1.7;
  color: var(--color-text-sub);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-themes__desc {
    font-size: calc(13 * var(--to-rem));
  }
}

/* -------------------------------------------------------
   新着情報
------------------------------------------------------- */
.p-news__list {
  max-width: 760px;
  margin-top: var(--space-6);
  margin-right: auto;
  margin-left: auto;
  border-top: 2px dashed var(--nav-border);
}

.p-news__item {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  align-items: baseline;
  padding: var(--space-4) 0;
  border-bottom: 2px dashed var(--nav-border);
}

.p-news__date {
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-text-sub);
  white-space: nowrap;
}

.p-news__tag {
  display: inline-block;
  padding: 2px var(--space-3);
  font-family: var(--title-font-family);
  font-size: calc(11 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.p-news__text {
  font-size: calc(14 * var(--to-rem));
  color: var(--color-text);
}

/* -------------------------------------------------------
   開催概要
------------------------------------------------------- */
.l-top__outline {
  position: relative;
  --outline-accent: var(--color-accent);
  --outline-shadow: var(--color-bg-pink);
}
.l-top__outline .l-inner {
  position: relative;
  z-index: 1;
}

.p-outline__table {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin-top: var(--space-6);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-outline__table {
    gap: var(--space-4);
    margin-top: var(--space-7);
  }
}

.p-outline__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding: var(--space-4);
  background-color: var(--color-white);
  border: 2px solid var(--outline-accent);
  border-radius: var(--radius);
  box-shadow: 3px 4px 0 var(--outline-shadow);
}
@media screen and (min-width: 768px) {
  .p-outline__row {
    grid-template-columns: 9.5em 1fr;
    gap: var(--space-5);
    align-items: start;
    padding: var(--space-4) var(--space-5);
  }
}

.p-outline__term {
  align-self: start;
  width: fit-content;
  padding: 0.35em 1.15em;
  font-family: var(--title-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: 0.06em;
  background-color: var(--outline-accent);
  border-radius: var(--radius-pill);
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .p-outline__term {
    justify-self: start;
    min-width: 9.5em;
    margin-top: 0.1em;
    font-size: calc(13 * var(--to-rem));
    text-align: center;
  }
}

.p-outline__desc {
  padding: 0;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.85;
  color: var(--color-text);
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-outline__desc {
    padding-top: 0.15em;
    font-size: calc(15 * var(--to-rem));
  }
}

.p-outline__free-badge {
  display: inline-block;
  padding: 0.4em 1.1em;
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.04em;
  background-color: var(--color-accent-yellow);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-pill);
  box-shadow: 2px 3px 0 var(--outline-accent);
}

.p-outline__link {
  display: inline-flex;
  gap: 0.3em;
  align-items: center;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
  text-underline-offset: 4px;
  transition: color var(--duration), text-decoration-color var(--duration);
}
.p-outline__link::after {
  font-size: 0.9em;
  line-height: 1;
  content: "↗";
}
@media (any-hover: hover) {
  .p-outline__link:hover {
    color: var(--outline-shadow);
    text-decoration-color: var(--outline-shadow);
  }
}

/* -------------------------------------------------------
   お問い合わせ
------------------------------------------------------- */
.p-contact__body {
  max-width: 740px;
  margin-top: var(--space-6);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    padding-inline: var(--space-6);
  }
}

.p-contact__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: var(--space-6);
    align-items: center;
    /* 縦線（中央列） */
  }
  .p-contact__row::before {
    position: static;
    grid-row: 1;
    grid-column: 2;
    width: 1px;
    height: 90px;
    content: "";
    background-color: var(--color-bg-pink);
    transform: none;
  }
}

.p-contact__inform {
  font-family: var(--title-font-family);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-text-sub);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__inform {
    grid-row: 1;
    grid-column: 1;
    padding-right: var(--space-4);
  }
}

.p-contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    grid-row: 1;
    grid-column: 3;
    padding-left: var(--space-4);
  }
}

.p-contact__item {
  position: relative;
  padding-left: 44px;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  /* SVGアイコンを::beforeで表示 */
}
.p-contact__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.p-contact__item--tel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E23061' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}
.p-contact__item--mail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E23061' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.p-contact__item .p-contact__tel-sp {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-contact__item .p-contact__tel-sp:hover {
    color: var(--color-accent);
  }
}
@media screen and (min-width: 768px) {
  .p-contact__item .p-contact__tel-sp {
    display: none;
  }
}
.p-contact__item .p-contact__tel-pc {
  display: none;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .p-contact__item .p-contact__tel-pc {
    display: block;
  }
}
.p-contact__item a:not(.p-contact__tel-sp) {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-contact__item a:not(.p-contact__tel-sp):hover {
    color: var(--color-accent);
  }
}

.p-contact__item-small {
  display: block;
  margin-top: 0.25em;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-regular);
  color: var(--color-text-sub);
}
@media screen and (min-width: 768px) {
  .p-contact__item-small {
    font-size: calc(16 * var(--to-rem));
  }
}

/* -------------------------------------------------------
   同時開催
------------------------------------------------------- */
.p-together__body {
  max-width: 454px;
  margin-top: var(--space-6);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-together__body {
    margin-top: var(--space-7);
  }
}

.p-together__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 3px 4px 0 var(--color-bg-pink);
}

/* -------------------------------------------------------
   過去開催
------------------------------------------------------- */
.p-archive__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
  max-width: 520px;
  margin-top: var(--space-6);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    gap: var(--space-4);
  }
}
@media screen and (min-width: 1024px) {
  .p-archive__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 980px;
  }
}

.p-archive__item {
  display: flex;
  justify-content: center;
}

.p-archive__item > a {
  display: block;
  width: 100%;
  max-width: 230px;
  overflow: hidden;
  line-height: 0;
  border-radius: var(--radius);
  box-shadow: 3px 4px 0 var(--color-bg-pink);
  transition: box-shadow var(--duration), transform var(--duration);
}
@media (any-hover: hover) {
  .p-archive__item > a:hover {
    box-shadow: 1px 2px 0 var(--color-bg-pink);
    transform: translate(2px, 2px);
  }
}

.p-archive__banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}