@charset "UTF-8";
/*! kiso.css v1.1.6 | 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. */
  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.
  */
  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) {
    /* Wraps text when printing. */
    white-space: pre-wrap;
  }
}
/* ======================================================
//  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;
}

:where(abbr[title]) {
  /* Display an underline. */
  text-decoration-line: underline;
  /* Set the underline style to dotted. */
  text-decoration-style: dotted;
  /* Display a tooltip on mouse hover. */
  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. */
    background-color: Highlight;
    color: HighlightText;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
: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 `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) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

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

/* ======================================================
//  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([type=radio], [type=checkbox]) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

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

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

@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):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], [type=submit], [type=reset]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button, [type=button], [type=submit], [type=reset]),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

:where(button,
label[for],
select,
[type=button],
[type=submit],
[type=reset],
[role=tab],
[role=button],
[role=option]),
::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.
  */
  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:not(:focus-visible)) {
  /* Hide the focus outline to reduce visual clutter unless the element is explicitly `:focus-visible`. */
  outline: none;
}

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

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

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

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

html {
  color: #4a4a4a;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

main {
  padding-top: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}

main.home {
  margin-top: calc(var(--header-height) * -1);
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  main.home {
    padding-bottom: 0;
  }
}

main.services {
  padding-bottom: 0;
}

main.archive {
  background-color: #f5f5f5;
}

.c-container {
  position: relative;
  width: 89.333333%;
  max-width: 1200px;
  margin: auto;
}

/* クリックエリア拡張 */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

p {
  line-height: 1.7;
}

:target::before {
  content: "";
  display: block;
  height: var(--header-height);
  margin-top: calc(var(--header-height) * -1);
  visibility: hidden;
}

.bg-main {
  background: #3366cc;
}

.bg-gray {
  background: #eaf4fc;
}

@media screen and (min-width: 992px) {
  br.sp {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 992px) {
  .sp-none {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .pc-none {
    display: none;
  }
}

.l-footer {
  background: #004686;
  padding-top: clamp(60px, 60px + (80 - 60) * (100vw - 375px) / (1200 - 375), 80px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(40px, 40px + (80 - 40) * (100vw - 375px) / (1200 - 375), 80px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.l-footer-layout {
  display: grid;
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 992px) {
  .l-footer-layout {
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(3, auto);
  }
}
.l-footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.l-footer-nav ul li a:link, .l-footer-nav ul li a:visited, .l-footer-nav ul li a:hover, .l-footer-nav ul li a:active {
  color: #fff !important;
  text-decoration: none;
}
.l-footer-nav.info .logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}
.l-footer-nav.info .logo a:link, .l-footer-nav.info .logo a:visited, .l-footer-nav.info .logo a:hover, .l-footer-nav.info .logo a:active {
  color: #fff !important;
  text-decoration: none;
}
.l-footer-nav.info .addr,
.l-footer-nav.info .tel {
  letter-spacing: 0.1em;
  color: #fff;
  font-size: clamp(0.75rem, 0.75rem + 4 * (100vw - 375px) / 825, 1rem);
}
.l-footer-nav.info .addr {
  margin-top: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1200 - 375), 40px);
}
.l-footer-nav.link {
  grid-row: 3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: clamp(40px, 40px + (58 - 40) * (100vw - 375px) / (1200 - 375), 58px);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(0.625rem, 0.625rem + 4 * (100vw - 375px) / 825, 0.875rem);
}
.l-footer-nav.link ul {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.l-footer-nav.link li:not(:first-child) {
  border-left: 1px solid #fff;
  padding-left: 1em;
}
@media screen and (min-width: 992px) {
  .l-footer-nav.link ul {
    display: initial;
  }
  .l-footer-nav.link li:not(:first-child) {
    padding-top: 20px;
    padding-left: 0;
    border-left: none;
  }
  .l-footer-nav.link li a:link, .l-footer-nav.link li a:visited {
    text-decoration: none;
  }
  .l-footer-nav.link li a:hover, .l-footer-nav.link li a:active {
    opacity: 0.5;
  }
  .l-footer-nav.link {
    grid-column: 1;
    grid-row: 2;
  }
}
.l-footer-nav.content {
  grid-row: 2;
  letter-spacing: 0.1em;
  margin-top: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1rem, 1rem + 4 * (100vw - 375px) / 825, 1.25rem);
}
.l-footer-nav.content li:not(:first-child) {
  padding-top: clamp(30px, 30px + (40 - 30) * (100vw - 375px) / (1200 - 375), 40px);
}
.l-footer-nav.content li a:link, .l-footer-nav.content li a:visited {
  text-decoration: none;
}
.l-footer-nav.content li a:hover, .l-footer-nav.content li a:active {
  opacity: 0.5;
}
@media screen and (min-width: 992px) {
  .l-footer-nav.content {
    margin-top: 0;
    justify-self: end;
    grid-row: 1/4;
  }
}
.l-footer-nav.copyright {
  color: #fff;
  grid-row: 4;
  margin-top: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: clamp(0.5rem, 0.5rem + 2 * (100vw - 375px) / 825, 0.625rem);
}
@media screen and (min-width: 992px) {
  .l-footer-nav.copyright {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }
}

:root {
  --header-height: 40px;
}
@media screen and (min-width: 992px) {
  :root {
    --header-height: 60px;
  }
}

header {
  position: relative;
  z-index: 10;
  height: var(--header-height);
}

@media screen and (min-width: 992px) {
  body#profile .nav-item:nth-child(1) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
  body .page-template-page-service .nav-item:nth-child(2),
  body page-template-page-service-index .nav-item:nth-child(2) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
  body#productflow .nav-item:nth-child(3) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
  body.tax-workscat .nav-item:nth-child(4), body.single-works .nav-item:nth-child(4), body.tax-workstag .nav-item:nth-child(4) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
  body.page-template-page-faq .nav-item:nth-child(5) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
  body#contactus .nav-item:nth-child(6) {
    box-shadow: 0 -3px 0 0 #3366cc inset;
  }
}
@media screen and (min-width: 992px) {
  #header-menu {
    position: absolute;
    right: 0;
  }
}
.c-button {
  border-radius: 100vh;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  margin-top: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1200 - 375), 60px);
  width: 100%;
  background: #fff;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .c-button {
    max-width: 400px;
  }
}
.c-button a {
  color: #004686;
  display: block;
  padding: clamp(20px, 20px + (30 - 20) * (100vw - 375px) / (1200 - 375), 30px);
}
.c-button:hover {
  background: #004686;
  color: #fff;
}
.c-button:hover a {
  color: #fff;
}
.c-button.blue {
  background: #004686;
  position: relative;
}
.c-button.blue a {
  color: #fff;
}
.c-button.blue:hover {
  background: #fff;
  color: #004686;
}
.c-button.blue:hover a {
  color: #004686;
}
.c-button.transparent {
  background: transparent;
  position: relative;
  border: 2px solid #fff;
}
.c-button.transparent a {
  color: #fff;
}
.c-button.transparent:hover {
  background: #fff;
  color: #004686;
}
.c-button.transparent:hover a {
  color: #004686;
}
.c-button.transparent:after {
  content: "";
  position: absolute;
  right: 40px;
  top: calc(50% - 10px);
  background-image: url(../images/common/ex-link.svg);
  background-size: 20px 20px;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.c-button.ja {
  margin-top: 0;
  border: 2px solid #004686;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  letter-spacing: 0.1em;
}
.c-button.ja:after {
  content: "";
  position: absolute;
  right: 40px;
  top: calc(50% - 3px);
  background-image: url(../images/common/arrow-bottom.svg);
  background-size: 12px 6px;
  background-position: center center;
  width: 12px;
  height: 6px;
}
.c-button.center {
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
.c-button.returntop {
  margin: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1200 - 375), 60px);
  border: 2px solid #004686;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  letter-spacing: 0.1em;
  margin-inline: auto;
}

.c-breadcrumb-pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-breadcrumb-pc {
    display: block;
    letter-spacing: 0.1em;
    padding-top: 60px;
  }
}

.c-breadcrumb-sp {
  letter-spacing: 0.1em;
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .c-breadcrumb-sp {
    display: none;
  }
}

.breadcrumb-item {
  color: #000;
}
@media screen and (min-width: 992px) {
  .breadcrumb-item {
    color: #fff;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "ー";
  padding-inline: 0.3em;
  color: #000;
}
@media screen and (min-width: 992px) {
  .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
  }
}

ol.breadcrumb {
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: clamp(0.5rem, 0.5rem + 12 * (100vw - 375px) / 825, 1.25rem);
}
ol.breadcrumb li {
  white-space: nowrap;
}

.c-header {
  align-items: center;
  /* カスタマイズしてください */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  /* カスタマイズしてください */
  width: 100%;
}

.c-header__logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.25rem, 1.25rem + 10 * (100vw - 375px) / 825, 1.875rem);
  color: #fff;
  /* カスタマイズしてください */
  min-width: 80px;
  /* カスタマイズしてください */
  text-decoration: none;
}
.c-header__logo.change {
  color: #004686;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
  color: #fff;
}

.c-header__list-item {
  list-style: none;
}

.c-header__list-link {
  color: #fff;
  /* カスタマイズしてください */
  display: block;
  margin-right: 20px;
  /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0;
  /* カスタマイズしてください */
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.c-header__list-link:after {
  position: absolute;
  left: 0;
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: 0.3s;
}
.c-header__list-link:hover::after {
  transform: scale(1, 1);
}
.c-header__list-link.change {
  color: #000;
}
.c-header__list-link.change:after {
  background: #004686;
}

.c-header__list-link:hover {
  /* filter: opacity(1); */
  /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 5.333333%;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #fff;
  /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.8;
  /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* カスタマイズしてください */
    height: 32px;
    /* カスタマイズしてください */
    justify-content: center;
    width: 32px;
    /* カスタマイズしてください */
  }
}
.c-hamburger-menu__button-mark {
  background-color: #fff;
  /* カスタマイズしてください */
  display: block;
  height: 1px;
  /* カスタマイズしてください */
  transition: 0.3s;
  /* カスタマイズしてください */
  width: 20px;
  /* カスタマイズしてください */
}
.c-hamburger-menu__button-mark.change {
  background-color: #004686;
}

@media screen and (max-width: 750px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }
}
.c-page-title {
  min-height: 100px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-page-title {
    min-height: 460px;
  }
}
.c-page-title .title {
  font-size: clamp(1.25rem, 1.25rem + 20 * (100vw - 375px) / 825, 2.5rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .c-page-title .title {
    top: 240px;
  }
}
.c-page-title .sub-title {
  font-size: clamp(0.5rem, 0.5rem + 12 * (100vw - 375px) / 825, 1.25rem);
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
@media screen and (min-width: 992px) {
  .c-page-title .sub-title {
    top: 300px;
  }
}
.c-page-title.news {
  background: url(../images/common/title-news.avif);
  background-position: center bottom;
  background-size: cover;
}
.c-page-title.services {
  background: url(../images/common/title-services.avif);
  background-position: center bottom;
  background-size: cover;
}
.c-page-title.company {
  background: url(../images/common/title-company.avif);
  background-position: center bottom;
  background-size: cover;
}
.c-page-title.contact {
  background: url(../images/common/title-contact.avif);
  background-position: center bottom;
  background-size: cover;
}
.c-page-title.policy {
  background: url(../images/common/title-policy.avif);
  background-position: center bottom;
  background-size: cover;
}

.l-section-title {
  font-size: 1rem;
  font-weight: bold;
  font-family: "M PLUS 1p", sans-serif;
}

.services-title {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  position: relative;
  height: clamp(1.75rem, -0.693rem + 10.424vw, 7.125rem);
  /* 28-114px */
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-title span {
  position: relative;
  z-index: 1;
}
.services-title:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-height: clamp(1.75rem, -0.693rem + 10.424vw, 7.125rem);
  z-index: 0;
}
.services-title.delivery:after {
  background: url(../images/services/subtitle-jointdelivery.avif) no-repeat center center;
  background-size: contain;
}
.services-title.logistics:after {
  background: url(../images/services/subtitle-logistics.avif) no-repeat center center;
  background-size: contain;
}
.services-title.freshness:after {
  background: url(../images/services/subtitle-freshness.avif) no-repeat center center;
  background-size: contain;
}

.ggmap {
  position: relative;
  padding-bottom: 25%;
  padding-top: 30px;
  /* height: 0; */
  height: 400px;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-loading {
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
}

.u-loading i {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
}

.u-pagetop {
  font-size: 2rem;
  margin: 1em 0;
  animation: fluffy1 3s ease infinite;
}
.u-pagetop a {
  display: block;
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.pagination__btn--last,
.pagination__btn--first,
.pagination__btn--next,
.pagination__btn--prev,
.pagination__item a,
.pagination__item--current {
  box-sizing: border-box;
  display: block;
  color: #004686;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border-radius: 50%;
  min-width: 2.4em;
  transition: all 0.2s;
  margin: 0 0.4em 0 0;
  padding: 0.7em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.pagination__btn--last:hover,
.pagination__btn--first:hover,
.pagination__btn--next:hover,
.pagination__btn--prev:hover,
.pagination__item a:hover,
.pagination__item--current:hover {
  color: #FFF;
  background: #004686;
}

.pagination {
  background: #FFF;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 1.6em;
  margin: 0 auto;
  padding: 0.4em 1em;
}

.pagination__list {
  display: none;
}

.pagination__pos {
  order: 2;
  color: #004686;
  margin: 0 1em;
}

.pagination__btn--prev {
  order: 1;
}

.pagination__btn--next {
  order: 3;
}

.pagination__btn--first {
  display: none;
}

.pagination__btn--last {
  display: none;
}

@media (min-width: 520px) {
  .pagination__list {
    order: 2;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination__item {
    margin: 0;
  }
  .pagination__item--current {
    background: #004686;
    color: #FFF;
    font-weight: bold;
    margin: 0 0.4em 0 0;
  }
  .pagination__pos {
    display: none;
  }
}
@media (min-width: 960px) {
  .pagination .pagination__list {
    order: 3;
  }
  .pagination .pagination__btn--prev {
    order: 2;
  }
  .pagination .pagination__btn--next {
    order: 4;
  }
  .pagination .pagination__btn--first {
    order: 1;
    display: block;
    width: 2.4em;
    padding-left: 0;
    padding-right: 0;
  }
  .pagination .pagination__btn--last {
    order: 5;
    display: block;
    width: 2.4em;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-blog-content {
  margin-top: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
}
.p-blog-content date {
  color: #004686;
  letter-spacing: 0.1em;
  font-size: clamp(0.625rem, 0.625rem + 10 * (100vw - 375px) / 825, 1.25rem);
}
.p-blog-content .title {
  margin-top: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1200 - 375), 20px);
  margin-bottom: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1200 - 375), 60px);
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: clamp(0.875rem, 0.875rem + 6 * (100vw - 375px) / 825, 1.25rem);
}

/* ===== グリッドコンテナ ===== */
.p-page-blog-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 6.666667%;
  /* PC: 列間ギャップ */
  max-width: 1660px;
  margin: 0 auto;
  padding-top: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
}

/* ===== カード共通 ===== */
.archive-item {
  /* PC: 3列 = (100% - gap×2) / 3 */
  flex: 0 0 28.8888886667%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  cursor: pointer;
}

/* サムネイル */
.archive-item .image {
  width: 100%;
  overflow: hidden;
}

.archive-item .image img {
  width: 100%;
  aspect-ratio: 5/3;
  /* 1.6667:1 */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.archive-item:hover .image img {
  transform: scale(1.04);
}

/* テキストエリア */
.archive-item .body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 日付 */
.archive-item .date {
  color: #004686;
  letter-spacing: 0.1em;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 500;
  margin: 20px 30px 0;
}

/* カテゴリタグ */
.archive-item .category {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 10px;
  align-self: flex-start;
}

/* タイトル */
.archive-item .title {
  font-weight: normal;
  letter-spacing: 0.1em;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.6;
  /* 2行で切る */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a1a;
  margin: 20px 30px 30px;
}

/* 本文抜粋 */
.archive-item .excerpt {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* もっと読む */
.archive-item .read-more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 11px;
  color: #004686;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.archive-item .read-more::after {
  content: "→";
  transition: transform 0.2s;
}

.archive-item:hover .read-more::after {
  transform: translateX(4px);
}

/* ===== SP: 1列 ===== */
@media (max-width: 768px) {
  .p-page-blog-archive {
    gap: 20px;
  }
  .archive-item {
    flex: 0 0 100%;
    margin-bottom: 0;
  }
  .archive-item .title {
    font-size: 15px;
    margin: 12px 18px 18px;
  }
  .archive-item .date {
    font-size: 11px;
    margin: 18px 18px 0;
  }
}
.p-blog-nav {
  margin-top: 60px;
}

.c-contact {
  background: url(../images/common/back-contact.avif) center center;
  background-size: cover;
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.c-contact .title,
.c-contact .sub-title {
  text-align: center;
  line-height: 1;
  color: #fff;
}
.c-contact .title {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
  font-weight: normal;
}
.c-contact .sub-title {
  margin-top: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1200 - 375), 20px);
  font-size: clamp(1.875rem, 1.875rem + 10 * (100vw - 375px) / 825, 2.5rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.c-contact .message {
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1200 - 375), 40px);
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
}

.p-contact-caption {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
  padding-top: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(30px, 30px + (80 - 30) * (100vw - 375px) / (1200 - 375), 80px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}

.smf-text-control__control {
  border-radius: 100vh !important;
}

.smf-textarea-control__control {
  border-radius: 30px !important;
}

div[data-name=checkboxes-1jiviokjn] {
  text-align: center;
  margin: 2em auto;
  margin-inline: auto !important;
}

p.privacy-link {
  text-align: center;
}

.smf-button-control__control {
  border-radius: 100vh !important;
  margin-top: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1200 - 375), 60px);
  width: 100%;
  background: #fff;
  text-align: center;
  margin-inline: auto;
  padding: 20px !important;
}
@media screen and (min-width: 992px) {
  .smf-button-control__control {
    max-width: 400px;
  }
}
.smf-button-control__control {
  color: #fff !important;
  display: block;
  background: #004686 !important;
}

.p-createflow-list li {
  margin: 2em 0;
}

.p-home-catch {
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-home-catch {
    text-align: center;
  }
}
.p-home-catch .c-container {
  color: #fff;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
@media screen and (min-width: 992px) {
  .p-home-catch .c-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}
.p-home-catch .c-container .title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.5rem, 2.5rem + 40 * (100vw - 375px) / 825, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  text-wrap: pretty;
}
.p-home-catch .c-container .sub-title {
  font-size: clamp(0.875rem, 0.875rem + 10 * (100vw - 375px) / 825, 1.5rem);
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: normal;
  margin-top: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1200 - 375), 40px);
  text-wrap: pretty;
}
.p-home-catch .c-container .lead-pc {
  display: none;
  text-wrap: pretty;
}
@media screen and (min-width: 992px) {
  .p-home-catch .c-container .lead-pc {
    display: block;
    font-size: 1rem;
  }
}
.p-home-catch-sp {
  padding: 60px 0;
  background-color: #f5f5f5;
}
@media screen and (min-width: 992px) {
  .p-home-catch-sp {
    display: none;
  }
}
.p-home-catch .lead-sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-home-catch .lead-sp {
    display: block;
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}
.p-home-mv.sp {
  display: none;
}
@media (max-width: 767px) {
  .p-home-mv.pc {
    display: none;
  }
  .p-home-mv.sp {
    display: block;
    width: 100%;
  }
}
.p-home main {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .p-home main {
    margin-top: 60px;
  }
}
.p-home__section {
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.p-home__section:nth-child(even) {
  background-color: #f5f5f5;
}
@media screen and (min-width: 992px) {
  .p-home__section:nth-child(odd) {
    background-color: #fff;
  }
  .p-home__section:nth-child(even) {
    background-color: #f5f5f5;
  }
}
.p-home__section.services {
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(0px, 0px + (120 - 0) * (100vw - 375px) / (1200 - 375), 120px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.p-home__section.company {
  background: none;
  padding: 0;
}
.p-home__section .title,
.p-home__section .sub-title {
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-home__section .title.left,
  .p-home__section .sub-title.left {
    text-align: left;
  }
}
.p-home__section .title {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
  font-weight: normal;
}
.p-home__section .sub-title {
  margin-top: clamp(10px, 10px + (20 - 10) * (100vw - 375px) / (1200 - 375), 20px);
  font-size: clamp(1.875rem, 1.875rem + 10 * (100vw - 375px) / 825, 2.5rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #004686;
}
.p-home__section-content {
  padding-top: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1200 - 375), 60px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1200 - 375), 60px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.p-home__section-content p.caption {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
  text-wrap: pretty;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .p-home__section-content p.caption {
    text-align: center;
  }
}
.p-home__section-content.services {
  display: grid;
  grid-template-rows: repeat(3, auto);
}
@media screen and (min-width: 992px) {
  .p-home__section-content.services {
    gap: 5.333333%;
  }
}
.p-home__section-content.services p.caption {
  grid-row: 1;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.services p.caption {
    grid-row: 2;
  }
}
.p-home__section-content.services ul.services-list {
  grid-row: 2;
  margin-top: 5.333333%;
  width: 112%;
  margin-left: -6%;
}
.p-home__section-content.services ul.services-list li {
  position: relative;
  overflow: hidden;
}
.p-home__section-content.services ul.services-list li:before {
  content: "";
  position: absolute;
  background-size: 100%;
  inset: 0;
  transition: transform 0.4s ease;
  z-index: 0;
}
.p-home__section-content.services ul.services-list li:hover:before {
  transform: scale(1.1);
}
.p-home__section-content.services ul.services-list li:nth-child(1):before {
  background: url(../images/home/services01back-sp.avif) center/cover no-repeat;
}
.p-home__section-content.services ul.services-list li:nth-child(2):before {
  background: url(../images/home/services02back-sp.avif) center/cover no-repeat;
}
.p-home__section-content.services ul.services-list li:nth-child(3):before {
  background: url(../images/home/services03back-sp.avif) center/cover no-repeat;
}
.p-home__section-content.services ul.services-list li:not(:first-child) {
  margin-top: 20px;
}
.p-home__section-content.services ul.services-list img {
  width: auto;
  position: relative;
  z-index: 1;
  height: 33.333333%;
  object-fit: contain;
}
.p-home__section-content.services ul.services-list a {
  display: block;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.services ul.services-list {
    grid-row: 1;
    margin: auto;
    padding-inline: 80px;
    width: 100%;
    display: flex;
    gap: 6.666667%;
    justify-content: center;
    align-items: self-end;
  }
  .p-home__section-content.services ul.services-list li {
    max-width: 300px;
    max-height: 300px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 100vh;
    position: relative;
  }
  .p-home__section-content.services ul.services-list img {
    max-height: unset;
    object-fit: unset;
  }
  .p-home__section-content.services ul.services-list li:nth-child(1):before {
    background: url(../images/home/services01back-pc.avif) center/cover no-repeat;
  }
  .p-home__section-content.services ul.services-list li:nth-child(2):before {
    background: url(../images/home/services02back-pc.avif) center/cover no-repeat;
  }
  .p-home__section-content.services ul.services-list li:nth-child(3):before {
    background: url(../images/home/services03back-pc.avif) center/cover no-repeat;
  }
}
.p-home__section-content.company {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.company {
    flex-direction: row;
    justify-content: space-around;
    gap: 80px;
  }
}
.p-home__section-content.company .c-container {
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.company .c-container {
    magin-inline: 0;
  }
}
.p-home__section-content.company table.outline {
  margin-top: clamp(40px, 40px + (60 - 40) * (100vw - 375px) / (1200 - 375), 60px);
  font-size: 0.75rem;
}
.p-home__section-content.company table.outline th,
.p-home__section-content.company table.outline td {
  font-weight: normal;
  vertical-align: top;
  letter-spacing: 0.05em;
  line-height: 2;
  text-wrap: pretty;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.company table.outline th,
  .p-home__section-content.company table.outline td {
    letter-spacing: 0.1em;
  }
}
.p-home__section-content.company table.outline th {
  white-space: nowrap;
  text-align: right;
}
.p-home__section-content.company table.outline td {
  padding-left: 1em;
}
.p-home__section-content.news {
  padding-bottom: 0;
}
.p-home__section-content.news .news-item {
  border-bottom: 1px solid #969696;
  padding-top: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1200 - 375), 40px);
  padding-right: clamp(10px, 10px + (40 - 10) * (100vw - 375px) / (1200 - 375), 40px);
  padding-bottom: clamp(20px, 20px + (40 - 20) * (100vw - 375px) / (1200 - 375), 40px);
  padding-left: clamp(10px, 10px + (40 - 10) * (100vw - 375px) / (1200 - 375), 40px);
  position: relative;
}
.p-home__section-content.news .news-item:first-child {
  border-top: 1px solid #969696;
}
.p-home__section-content.news .news-item:after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 8px);
  background-image: url(../images/common/arrow-right.svg);
  background-size: 6px 12px;
  background-position: center center;
  width: 6px;
  height: 12px;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.news .news-item:after {
    right: 40px;
  }
}
.p-home__section-content.news .news-item a {
  display: flex;
  align-items: center;
}
.p-home__section-content.news date {
  padding-right: 2em;
  white-space: nowrap;
  color: #004686;
  font-size: clamp(0.625rem, 0.625rem + 10 * (100vw - 375px) / 825, 1.25rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 992px) {
  .p-home__section-content.news date {
    padding-right: 2em;
  }
}
.p-home__section-content.news p {
  width: 60%;
  /* 幅を制限する */
  white-space: nowrap;
  /* 改行させない */
  overflow: hidden;
  /* はみ出た部分を隠す */
  text-overflow: ellipsis;
  /* 省略記号(...)を表示 */
  letter-spacing: 0.1em;
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
}
.p-home-news li date {
  display: inline-block;
  margin-right: 1em;
}
.p-home-news li p {
  display: inline-block;
}
.p-home-news li p .newMark {
  background: #f00;
  color: #fff;
  font-size: 81.25%;
  padding: 0.2em;
}

.mv.sp {
  display: none;
}

@media (max-width: 767px) {
  .mv.pc {
    display: none;
  }
  .mv.sp {
    display: block;
  }
}
.p-policy-list {
  line-height: 2;
  margin-top: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1200 - 375), 60px);
  margin-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  margin-bottom: clamp(30px, 30px + (60 - 30) * (100vw - 375px) / (1200 - 375), 60px);
  margin-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
  counter-reset: list-no;
}

.p-policy-list li {
  margin-top: 2em;
  margin-left: 1em;
}
.p-policy-list li::marker {
  counter-increment: list-no;
  content: counter(list-no) ".";
}

.p-works-image {
  height: 300px;
  overflow: hidden;
  border: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-works-image {
    height: 250px;
  }
}
@media screen and (min-width: 992px) {
  .p-works-image {
    height: 400px;
  }
}
.p-works-image img {
  width: 100%;
  height: auto;
  padding: 20px;
}
.p-works-detail {
  margin-top: 20px;
}
.p-works-detail-caption {
  margin-bottom: 1em;
}
.p-works-detail-update:before {
  content: "制作・更新";
}
.p-works-detail-client:before {
  content: "クライアント";
}
.p-works-detail-url:before {
  content: "URL";
}
.p-works-detail-update, .p-works-detail-client, .p-works-detail-url {
  margin-bottom: 0.3em;
}
.p-works-detail-update:before, .p-works-detail-client:before, .p-works-detail-url:before {
  border: #a1a1a1 1px solid;
  padding: 0.1em 0.3em;
  margin-right: 0.6em;
  width: 8em;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.p-works-single-pagecaption {
  margin: 1em 0;
  font-size: 125%;
  font-weight: bold;
  color: #3366cc;
}
.p-works-single-tag {
  margin: 0.3em 0 0.6em;
}
.p-works-single-tag a {
  background: #eaf4fc;
  padding: 0.3em;
  font-size: 87.5%;
  border-radius: 3px;
  display: inline-block;
  margin-right: 0.3em;
}
.p-works-single-date {
  margin: 0.3em 0 0.6em;
  text-align: right;
}
.p-works-single-date:before {
  content: "制作/更新｜";
}
.p-works-single-date:after {
  content: "年";
}
.p-works-single-image {
  max-height: 300px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-works-single-image {
    max-height: 800px;
  }
}
.p-works-single-image img {
  width: 100%;
  height: auto;
}
.p-works-single-title {
  font-size: 125%;
  padding-left: 0.3em;
  border-left: solid 3px #3366cc;
}
.p-works-single-works-single-title {
  font-size: 125%;
  padding-left: 0.3em;
  border-left: solid 3px #3366cc;
}
.p-works-single-works-single-image img {
  width: 100%;
  height: auto;
}
.p-works-single article {
  margin: 2em 0;
}
.p-works-single-table {
  margin: 3em 0 1em;
}
.p-works-single-table .table th, .p-works-single-table .table td {
  font-weight: normal;
  border-top: initial;
  border-bottom: 1px solid #eaf4fc;
}

section.select {
  margin-top: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
  margin-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  margin-bottom: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
  margin-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
section.select .select-caption {
  font-size: clamp(0.75rem, 0.75rem + 8 * (100vw - 375px) / 825, 1.25rem);
}
section.select .select-button {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 30px;
  margin-top: clamp(40px, 40px + (80 - 40) * (100vw - 375px) / (1200 - 375), 80px);
}
section.select .select-button li {
  width: 100%;
}
@media screen and (min-width: 992px) {
  section.select .select-button {
    gap: 60px;
    flex-wrap: nowrap;
  }
}

section.delivery {
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  background: url(../images/services/back-jointdelivery.avif) no-repeat;
  background-size: cover;
}

section.logistics {
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  background: url(../images/services/back-logistics.avif) no-repeat;
  background-size: cover;
}

section.freshness {
  padding-top: clamp(60px, 60px + (120 - 60) * (100vw - 375px) / (1200 - 375), 120px);
  background: url(../images/services/back-freshness.avif) no-repeat;
  background-size: cover;
}

.chapter {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
  padding-right: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
  padding-bottom: clamp(30px, 30px + (120 - 30) * (100vw - 375px) / (1200 - 375), 120px);
  padding-left: clamp(0px, 0px + (0 - 0) * (100vw - 375px) / (1200 - 375), 0px);
}
.chapter-text {
  width: 44.6666665vw;
  max-width: 600px;
  margin-left: calc((100vw - min(89.333333vw, 1200px)) / 2);
  padding-right: 60px;
  flex-shrink: 0;
}
.chapter .chapter-title {
  color: #fff;
  font-weight: normal;
  font-size: clamp(0.9375rem, 0.9375rem + 15 * (100vw - 375px) / 825, 1.875rem);
  letter-spacing: 0.1em;
}
.chapter .chapter-title span {
  font-size: clamp(0.625rem, 0.625rem + 10 * (100vw - 375px) / 825, 1.25rem);
}
.chapter .chapter-title:after {
  display: block;
  content: "";
  background-color: #fff;
  height: 2px;
  width: 6em;
  margin-top: 20px;
}
.chapter .chapter-caption {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(0.625rem, 0.625rem + 10 * (100vw - 375px) / 825, 1.25rem);
  line-height: 2;
  letter-spacing: 0.1em;
}
.chapter-image {
  flex: 1;
}
.chapter-image picture,
.chapter-image img {
  width: 100%;
  height: auto;
  display: block;
}
.chapter.reverse {
  flex-direction: row-reverse;
}
.chapter.reverse .chapter-text {
  margin-left: 0;
  margin-right: calc((100vw - min(89.333333vw, 1200px)) / 2);
  padding-right: 0;
  padding-left: 60px;
}
@media screen and (max-width: 991px) {
  .chapter {
    flex-direction: column;
    width: 100%;
    left: 0;
    transform: none;
  }
  .chapter, .chapter.reverse {
    flex-direction: column;
  }
  .chapter .chapter-text, .chapter.reverse .chapter-text {
    width: 89.333333%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .chapter .chapter-image, .chapter.reverse .chapter-image {
    margin-top: 30px;
    width: 112%;
  }
}

@media screen and (min-width: 992px) {
  .p-company {
    background: url(../images/company/back-pc.jpg) center center;
  }
  .p-company-outer {
    background: #fff;
    border-radius: 55px;
    padding: 80px;
    margin-top: -60px;
  }
}
.p-company-table {
  border-collapse: separate;
  border-spacing: 10px;
  width: 100%;
}
.p-company-table th,
.p-company-table td {
  font-weight: normal;
  padding: 20px 10px;
}
.p-company-table th {
  text-align: center;
  color: #004686;
  border-bottom: 1px solid #004686;
  white-space: nowrap;
}
.p-company-table td {
  border-bottom: 1px solid #969696;
}
.p-company-table tr:last-child th,
.p-company-table tr:last-child td {
  border: none;
}/*# sourceMappingURL=style.css.map */