:root {
  /* コンテンツ幅 */
  --layout-width-inner: 1052px;
  /* フォント */
  --ff-helve: Helvetica, "Open Sans", sans-serif;
  --ff-hiragino: "Hiragino UD Sans Std", "Noto Sans JP", serif;
  --ff-base: var(--ff-hiragino);
  --fw-base: 600;
  /* カラー */
  --color-main: #000;
  --color-base: #FFF;
}

/*! kiso.css v1.2.1 | 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) {

  /* 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;

  /*
  * 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;
  /* 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;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /*
  * 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;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
}

:where(body) {

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
  /*
  * 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;
}

/* ======================================================
// 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) {
  font-size: 2em;
  /*
  * 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;
}

: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) {

  /*
  * 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: "";
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */

:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {

  /* 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;
  /*
  * 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;

  /* 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;
  font-variation-settings: initial;
}

:where(abbr[title]) {
  cursor: help;
  /*
  * 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;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

/* ======================================================
//  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 `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */

:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;

  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */

:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */

:where(button, input, select, textarea),
::file-selector-button {

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  border-style: solid;
  /*
  * 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;
  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) {
  border: unset;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  /*
  * 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;
  padding: 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) {

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
}

: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]) {
  border: unset;
  /*
  * 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;
}

: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) {
  max-block-size: unset;
  /*
  * 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;
}

: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;
}

@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    background-color: unset;
    border-color: unset;
    border-radius: unset;
    border-style: solid;
    /* Apply the same reset as for `<button>` elements. */
    border-width: 1px;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    touch-action: manipulation;
  }

  ::scroll-button(*):enabled {
    /* Make the scroll button indicate interactivity when enabled. */
    cursor: pointer;
  }
}

/* ホバーとフォーカス */

:where(:any-link, :enabled, summary) {
  --default: initial;
  --hover: ;
}

:where(:any-link, :enabled, summary):focus-visible {
  --default: ;
  --hover: initial;
}

/* 使い方 */

/* .button {
  color: var(--default, #246A92) var(--hover, #FFF);
  background-color: var(--hover, #246A92);
  border: 2px solid var(--hover, #246A92);
} */

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi));
  --clamp: clamp(calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
  var(--clamp-preffered-value),
  calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size))));
  font-size: var(--clamp);
}

/* 参考 */

/* https://www.tak-dcxi.com/article/my-blogs-responsive-coding/#font-size%E3%81%AFclamp%E9%96%A2%E6%95%B0%E3%81%A7%E6%8C%87%E5%AE%9A%E3%81%99%E3%82%8B */

body {
  /* スマホデザインカンプの横幅 */
  --clamp-viewport-min: 375;
  /* PCデザインカンプの横幅 */
  --clamp-viewport-max: 1366;
  /* 個別に指定していない箇所のフォントサイズは14〜16pxの間で可変 */
  --clamp-min: 14;
  --clamp-max: 16;

  background-color: var(--color-base);
  color: var(--color-main);
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
}

:where(img) {
  font-style: italic;
}

:where(:focus):not(:where(:focus-visible)) {
  outline: none;
}

:where(:focus-visible) {
  outline: 2px solid #005FCC;
  outline-offset: -2px;
}

:where(a, button) {
  transition: background-color .3s, border-color .3s, color .3s, opacity .3s;
}

:where(svg, circle, path) {
  transition: opacity .3s, fill .3s;
}

.block-concept-wrapper {
  padding: 0 0 50px;
}

.block-concept-mv {
  padding: 0;
  text-align: center;
}

.-txt-center {
  text-align: center !important;
}

.block-topic-path {
  margin-block-start: 45px;
}

.block-concept-mv-text-mv {
  background: url(../img/usr/concept/img_concept_kv_sp.jpg) no-repeat;
  background-size: 100% auto;
  height: 66.667vw;
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-concept-mv-text-inner {
  background: rgba(255, 255, 255, .75);
  padding: 24px 0 24px 14px;
  width: 61.333vw;
}

.block-concept-mv-name {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.block-concept-mv-text-l {
  font-weight: 600;
  font-size: 28px;
  color: #000;
  margin: 5px 0 0;
}

.block-concept-mv-text-s {
  padding: 0 17px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .1em;
  color: #0A0909;
  line-height: calc(30 / 12);
}

.block-concept-mv-text-s + .block-concept-mv-text-s {
  margin-top: 20px;
}

.block-concept-section {
  padding: 50px 18px 0;
}

.block-concept-title {
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}

.block-concept-title-name-l {
  font-size: 28px;
  font-weight: bold;
  font-family: var(--ff-helve);
  text-transform: uppercase;
  padding: 0;
  line-height: 1.1;
  margin: 0;
  border: none;
}

.block-concept-title--name-s {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.block-concept-value-nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
}

.block-concept-value-nav-item {
  width: 48.5%;
}

.block-concept-value-nav-item.value-nav--03 .block-concept-value-nav-desc {
  margin-left: 6px;
}

.block-concept-value-nav-item.value-nav--05 .block-concept-value-nav-desc {
  margin-left: 4px;
}

.block-concept-value-nav-item.value-nav--07 .block-concept-value-nav-desc {
  margin-left: 3px;
}

.block-concept-value-nav-box {
  display: flex;
  align-items: center;
  justify-content: left;
  min-height: 53px;
}

.block-concept-value-nav-num {
  height: 32px;
  width: auto;
  min-width: fit-content;
}

.block-concept-value-nav-num img {
  height: 100%;
  width: auto;
}

.block-concept-value-nav-desc {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #000000;
  width: 100%;
}

.block-concept-value-nav-desc .value-nav-desc-space {
  margin-inline: -4px;
}

.block-concept-value-nav-desc .value-nav-desc-block {
  display: inline-block;
}

.block-concept-value-nav-img {
  margin: 5px 0 0;
}

.block-concept-value-nav-img img {
  width: 100%;
}

.block-concept-value-list {
  margin: 60px 0 0;
}

.block-concept-value-item + .block-concept-value-item {
  margin-top: 50px;
}

.block-concept-value-box {
  display: flex;
  flex-direction: column;
}

.block-concept-value-ttl {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 34px;
}

.block-concept-value-ttl-num {
  height: 34px;
  width: auto;
}

.block-concept-value-ttl-num img {
  height: 100%;
  width: auto;
}

.block-concept-value-ttl-txt {
  margin-left: 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}

.block-concept-value-desc-img {
  order: 2;
  text-align: center;
}

.block-concept-value-desc,
.block-concept-value-desc-note {
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  color: #0A0909;
}

.block-concept-value-desc {
  order: 3;
  margin-top: 16px;
  font-size: 14px;
}

.block-concept-value-desc-list {
  margin-top: 14px;
}

.block-concept-value-desc-list-item {
  line-height: 1.5;
}

.block-concept-value-desc-list-item + .block-concept-value-desc-list-item {
  margin-top: 4px;
}

.value-item--01 .block-concept-value-desc {
  letter-spacing: .02em;
}

.block-concept-value-desc-item + .block-concept-value-desc-item {
  margin-top: 5px;
}

.block-concept-value-desc-item a {
  text-decoration: underline;
  font-size: 12px;
}

.block-concept-value-desc-note {
  order: 4;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}

.block-concept-value-tbl {
  border: 1px solid #000;
  width: 100%;
  border-collapse: collapse;
}

.block-concept-value-tbl-head .block-concept-value-tbl-row {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.block-concept-value-tbl-head .block-concept-value-tbl-txt {
  padding: 7px;
  border-bottom: 1px solid #000;
}

.block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(odd) {
  background: #5A5A5A;

}

.block-concept-value-tbl--01 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(odd) {
  width: 38%;
}

.block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(even) {
  background: #DC6225;
}

.block-concept-value-tbl--01 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(even) {
  width: 62%;
  padding-left: 44px;
}

.block-concept-value-tbl-body .block-concept-value-tbl-row {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.block-concept-value-tbl-txt {
  border: 1px solid #000;
  padding: 2px;
  vertical-align: middle;
  font-weight: 600;
}

.block-concept-value-tbl-body .block-concept-value-tbl-row:nth-child(odd) {
  background: #EBEBEB;
}

.block-concept-value-tbl-txt .value-tbl-txt-pt {
  text-align: right;
  display: inline-block;
  min-width: 75px;
  position: relative;
}

.block-concept-value-tbl-txt .value-tbl-txt-pt .value-tbl-txt-val {
  margin-right: 6px;
}

.block-concept-value-tbl-txt .value-tbl-txt-pt,
.block-concept-value-tbl-txt .value-tbl-txt-price {
  color: #000;
}

.block-concept-value-tbl-txt .value-tbl-txt-per {
  color: #DC6225;
  display: inline-block;
  min-width: 42px;
  text-align: right;
}

.block-concept-value-tbl-txt .value-tbl-txt-per .value-tbl-txt-val {
  font-size: 16px;
  margin-right: 8px;
}

.block-concept-value-tbl-body .block-concept-value-tbl-txt.value-tbl-txt-normal {
  font-weight: 400;
  color: #000;
}

.block-concept-value-tbl-txt .value-tbl-txt-icon {
  display: inline-block;
  width: 24px;
  margin-left: 10px;
}

.block-concept-value-tbl-txt .value-tbl-txt-icon img {
  width: 100%;
  height: auto;
}

.block-concept-value-tbl-txt .value-tbl-txt-pt-last {
  position: absolute;
  right: 0;
  transform: translateX(100%);
}

.block-concept-value-tbl-txt.value-tbl-txt-normal .value-tbl-txt-per {
  font-weight: 400;
  color: #000;
  width: auto;
  padding: 2px 0 1px;
}

.block-concept-value-tbl--02 {
  margin: 32px 0 0;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(1) {
  width: 30%;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(2) {
  width: 30%;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(3) {
  width: 40%;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row {
  font-size: 14px;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-txt {
  padding: 2px;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-body .block-concept-value-tbl-txt {
  padding: 3px;
}

.block-concept-value-tbl--02 .block-concept-value-tbl-txt .value-tbl-txt-pt {
  min-width: 62px;
}

/* .block-concept-value-tbl--02 .block-concept-value-tbl-row:last-child .block-concept-value-tbl-txt:first-child .value-tbl-txt-pt {
  text-align: center;
} */

.block-concept-value-tbl-upper-label {
  background: #EBEBEB;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 6px;
  margin: 0 0 16px;
}

.block-concept-value-tbl-upper-box {
  display: flex;
  align-items: flex-start;
}

.block-concept-value-tbl-upper-img {
  width: 40%;
  max-width: 224px;
}

.block-concept-value-tbl-upper-img img {
  width: 100%;
}

.block-concept-value-tbl-upper-txt {
  flex-grow: 1;
  margin-left: 10px;
}

.block-concept-value-tbl-txt .value-tbl-txt-s {
  display: block;
  font-size: 12px;
}

.block-concept-value-tbl-upper-ttl {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px;
}

.block-concept-value-tbl-upper-item {
  display: flex;
}

.block-concept-value-tbl-upper-term,
.block-concept-value-tbl-upper-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.block-concept-value-tbl {
  margin: 26px 0 0;
}

.block-concept-value-item-img {
  margin: 32px 0 0;
  text-align: center;
}

.block-concept-value-item-img a,
.block-concept-foot-banner a {
  transition: .3s;
}

.block-concept-value-item-img a:hover,
.block-concept-foot-banner a:hover {
  opacity: .7;
}

.block-concept-value-desc-info {
  margin: 24px 0 0;
  order: 4;
}

.block-concept-value-desc-info-left {
  text-align: center;
}

.block-concept-value-desc-info-right {
  margin: 32px 0 0;
  text-align: center;
}

.block-concept-value-intro-box {
  margin: 16px 0 0;
  text-align: center;
  display: flex;
}

.block-concept-value-intro-img {
  flex: 0 0 32.506%;
}

.block-concept-value-intro-img img {
  width: 100%;
}

.block-concept-value-intro-box + .block-concept-value-intro-box {
  margin-top: 28px;
}

.block-concept-value-intro-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 2;
  margin: 0 0 0 8px;
  text-align: left;
}

.block-concept-howto {
  text-align: center;
}

.block-concept-btn-wrap {
  margin: 32px 0 0;
}

.block-concept-btn-wrap .block-concept-btn {
  max-width: 340px;
  width: 100%;
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: #000;
  position: relative;
  border-radius: calc(infinity * 1px);
  scale: var(--hover, 1.03);
  transition: scale .3s;
  will-change: scale;
}

.block-concept-btn-wrap .block-concept-btn:hover {
  text-decoration: none;
}

.block-concept-btn-wrap .block-concept-btn::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/usr/concept/ico_btn_arrow_right.png) no-repeat;
  background-size: 100% auto;
  background-position: center;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.block-concept-lead-faq {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: left;
}

.block-concept-faq {
  margin: 32px 0 0;
}

.block-concept-faq-item + .block-concept-faq-item {
  margin-top: 20px;
}

.block-concept-faq-term {
  min-height: 32px;
  border-bottom: 1px solid #000;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.block-concept-faq-term::before,
.block-concept-faq-term::after {
  content: "";
  display: block;
  margin: auto;
  width: 16px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 0;
  transition: all .3s;
  z-index: -1;
}

.block-concept-faq-term::before {
  top: 0;
  bottom: 0;
  opacity: 1;
}

.block-concept-faq-term.is-open::before {
  opacity: 0;
}

.block-concept-faq-term::after {
  transform: rotate(90deg);
  top: 0;
  bottom: 0;
}

.block-concept-faq-term.is-open::after {
  transform: rotate(180deg);
}

.block-concept-faq-term-btn {
  margin: 0;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background: none !important;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #000 !important;
  line-height: 1.5;
  text-align: left;
  outline: none;
  cursor: pointer;
}

.block-concept-faq-term-btn::before {
  content: "Q.";
  display: block;
  font-family: Helvetica, "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  left: 0;
}

.block-concept-faq-desc {
  margin: 0;
  padding: 0 0 0 26px;
  max-height: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  opacity: 0;
  pointer-events: none;
}

.is-open + .block-concept-faq-desc {
  padding: 20px 0 0 20px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  pointer-events: all;
}

.block-concept-faq-desc::before {
  content: "A.";
  display: block;
  font-family: Helvetica, "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.block-concept-faq-desc em {
  font-style: normal;
  font-weight: 600;
}

.block-concept-faq-desc-list {
  list-style-type: "・";
  padding-left: 1em;
}

.block-concept-faq-desc .faq-txt--1em {
  margin-top: 1em;
}

.block-concept-faq-tbl-wrap {
  margin-left: -20px;
  text-align: center;
}

.block-concept-faq-tbl {
  border: 1px solid #000;
  border-collapse: collapse;
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.block-concept-faq-tbl-th {
  padding: 10px;
  border: 1px solid #000;
  font-size: 10px;
  font-weight: 600;
}

thead .block-concept-faq-tbl-th {
  background: #5a5a5a;
  color: #fff;
}

.block-concept-faq-tbl-th:nth-of-type(1) {
  width: 48%;
}

.block-concept-faq-tbl-th:nth-of-type(2),
.block-concept-faq-tbl-th:nth-of-type(3) {
  width: 26%;
}

tbody .block-concept-faq-tbl-th {
  background: #ebebeb;
}

.block-concept-faq-tbl-td {
  font-weight: 600;
  text-align: center;
  font-size: 10px;
  border: 1px solid #000;
  vertical-align: middle;
}

.block-concept-faq-txt a {
  text-decoration: underline;
}

.block-concept-foot-banner {
  text-align: center;
  position: relative;
}

.block-concept-value-desc-info-txt {
  text-align: left;
  font-size: 12px;
  line-height: 2;
  letter-spacing: .1em;
  font-weight: 400;
  margin-top: 5px;
}

.block-concept-value-desc-info-txt-color {
  color: #DC6225;
}


@media screen and (min-width: 769px) {
  .block-concept-value-nav-list {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    gap: 40px 24px;
  }

  .block-concept-value-nav-item {
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .block-concept-value-nav-box {
    height: 100%;
  }
  
}

@media screen and (min-width: 1024px) {

  .block-topic-path {
    margin-block-start: 97px;
  }

  .container:has(.block-concept-wrapper) {
    max-width: 100%;
  }

  .pane-contents:has(.block-concept-wrapper) {
    padding-top: 30px;
  }

  .block-concept-wrapper {
    padding: 0 0 90px;
  }

  .block-concept-mv {
    background: url(../img/usr/concept/img_concept_kv.jpg) no-repeat;
    background-size: 100% auto;
    aspect-ratio: 683 / 333;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .block-concept-mv-text-mv {
    background: none;
    padding: 0;
    margin: 0;
    height: auto;
  }

  .block-concept-mv-inner {
    width: 700px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .75);
    padding: 20px 0 30px;
  }

  .block-concept-mv-text {
    text-align: center;
  }

  .block-concept-mv-text-inner {
    background: none;
    padding: 0;
    width: auto;
  }

  .block-concept-mv-name {
    font-size: 24px;
  }

  .block-concept-mv-text-l {
    font-size: 38px;
    margin: 0 0 10px;
  }

  .block-concept-mv-text-s {
    padding: 0;
  }

  .block-concept-mv-img {
    width: 100px;
    margin-left: 19px;
  }

  .block-concept-title--name-s {
    margin-top: 5px;
  }

  .block-concept-section {
    padding: 80px 18px 40px;
    max-width: 1036px;
    margin: 0 auto;
  }

  .block-concept-value-nav-item {
    width: 23.1%;
  }

  .block-concept-value-nav-num {
    height: 32px;
    min-width: fit-content;
  }

  .block-concept-value-nav-desc,
  .block-concept-value-nav-item.value-nav--03 .block-concept-value-nav-desc,
  .block-concept-value-nav-item.value-nav--05 .block-concept-value-nav-desc,
  .block-concept-value-nav-item.value-nav--07 .block-concept-value-nav-desc {
    margin-left: 10px;
  }

  .block-concept-value-nav-item.value-nav--07 .block-concept-value-nav-des {
    margin-left: 8px;
  }

  .block-concept-value-nav-desc .value-nav-desc-space {
    margin-inline: 0;
  }

  .block-concept-value-nav-img {
    margin: 10px 0 0;
  }

  .block-concept-value-list {
    max-width: 1000px;
    width: 100%;
    margin: 120px auto 0;
  }

  .block-concept-value-item + .block-concept-value-item {
    margin-top: 112px;
  }

  .block-concept-value-box {
    display: grid;
    justify-content: flex-start;
    grid-column-gap: 32px;
  }

  .block-concept-value-box .value-box--block{
    display: inline-block;
  }

  .block-concept-value-ttl {
    grid-area: 1 / 2 / 2 / 3;
    justify-content: flex-start;
    margin-bottom: 24px;
    margin-top: 5px;
  }

  .block-concept-value-desc {
    grid-area: 2 / 2 / 3 / 3;
    margin-top: 0;
  }

  .block-concept-value-desc-note {
    grid-area: 3 / 2 / 4 / 3;
  }

  .block-concept-value-desc-img {
    grid-area: 1 / 1 / 5 / 2;
    width: 400px;
  }

  .block-concept-value-item:nth-child(even) .block-concept-value-ttl {
    grid-area: 1 / 1 / 2 / 2;
  }

  .block-concept-value-item:nth-child(even) .block-concept-value-desc {
    grid-area: 2 / 1 / 3 / 2;
  }

  .block-concept-value-item:nth-child(even) .block-concept-value-desc-note{
    grid-area: 3 / 1 / 4 / 2;
  }

  .block-concept-value-item:nth-child(even) .block-concept-value-desc-img {
    grid-area: 1 / 2 / 5 / 3;
  }

  .block-concept-value-ttl-num {
    height: 34px;
    width: auto;
  }

  .block-concept-value-ttl-num img {
    height: 100%;
    width: auto;
  }

  .block-concept-value-ttl-txt {
    margin-left: 12px;
    font-size: 28px;
    line-height: 1.333;
  }

  .block-concept-value-desc {
    font-size: 16px;
    line-height: 2;
  }

  li.block-concept-value-desc-item,
  li.block-concept-value-desc-item a {
    font-size: 14px;
  }

  .block-concept-value-desc-list {
    margin-top: 16px;
  }

  .block-concept-value-desc-item + .block-concept-value-desc-item {
    margin-top: 5px;
  }

  .block-concept-value-tbl-outer {
    margin: 32px 0 0;
  }

  .block-concept-value-tbl {
    margin: 0;
  }

  .block-concept-value-tbl-outer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
  }

  .block-concept-value-tbl--01 {
    flex-grow: 1;
  }

  .block-concept-value-tbl-head .block-concept-value-tbl-txt {
    padding: 6px;
  }

  .block-concept-value-tbl--01 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(odd),
  .block-concept-value-tbl--01 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(even) {
    width: 50%;
  }

  .block-concept-value-tbl--02 {
    width: 484px;
    margin: 0;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl {
    margin: 16px 0 0;
  }

  .block-concept-value-tbl-upper-ttl {
    font-size: 16px;
    margin: 0 0 7px;
  }

  .block-concept-value-tbl-upper-img {
    width: 96px;
  }

  .block-concept-value-tbl-upper-term,
  .block-concept-value-tbl-upper-desc {
    font-size: 14px;
  }

  .block-concept-value-tbl-txt .value-tbl-txt-s {
    display: inline;
  }

  .block-concept-value-tbl-txt .value-tbl-txt-pt {
    min-width: 80px;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(1) {
    width: 26%;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(2) {
    width: 27%;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-row .block-concept-value-tbl-txt:nth-child(3) {
    width: 47%;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-head .block-concept-value-tbl-txt {
    padding: 3px;
    font-size: 16px;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-body .block-concept-value-tbl-txt {
    padding: 1px;
  }

  .block-concept-value-tbl--02 .block-concept-value-tbl-txt .value-tbl-txt-pt {
    min-width: 62px;
  }

  .block-concept-value-tbl-txt.value-tbl-txt-normal .value-tbl-txt-per {
    text-align: center;
  }

  .block-concept-value-item-img {
    margin: 40px 0 0;
  }

  .block-concept-value-desc-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 12px 0 0;
  }

  .block-concept-value-desc-info-left {
    margin: 24px 0 0;
  }

  .block-concept-value-desc-info-left img {
    width: 684px;
  }

  .block-concept-value-desc-info-right {
    margin: 0;
  }

  .block-concept-value-desc-info-txt {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin: 8px 0 0;
    line-height: 1.7;
  }

  .block-concept-value-intro {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 34px;

  }

  .block-concept-value-intro-box {
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: 140px auto;
    margin: 40px 0 0;
  }

  .block-concept-value-intro-box + .block-concept-value-intro-box {
    margin: 40px 0 0;
  }

  .block-concept-value-intro-img {
    width: 140px;
  }

  .block-concept-value-intro-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
  }

  .block-concept-lead-faq {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .08em;
    text-align: center;
  }

  .block-concept-faq {
    margin: 60px 0 0;
  }

  .block-concept-faq-term-btn {
    font-size: 18px;
  }

  .block-concept-faq-term-btn::before {
    font-size: 18px;
    top: 11px;
  }

  .block-concept-faq-term::before,
  .block-concept-faq-term::after {
    height: 2px;
    right: 20px;
  }

  .block-concept-faq-desc::before {
    font-size: 18px;
    top: 20px;
  }

  .block-concept-faq-desc {
    font-size: 16px;
    line-height: 1.75;
  }

  .is-open + .block-concept-faq-desc {
    margin-top: 15px;
  }

  .block-concept-faq-item + .block-concept-faq-item {
    margin-top: 40px;
  }

  .block-concept-faq-tbl {
    width: 522px;
  }

  .block-concept-faq-tbl-th,
  .block-concept-faq-tbl-td {
    font-size: 16px;
  }

  .block-concept-faq-desc .faq-txt--credit {
    margin-top: 2em;
  }

  .block-concept-btn-wrap .block-concept-btn {
    font-size: 18px;
    height: 48px;
    font-weight: 400;
  }

  .block-concept-btn-wrap .block-concept-btn::after {
    width: 20px;
  }

}

@media screen and (min-width: 1280px) {
  .block-concept-mv-inner {
    padding: 40px 0 70px;
  }
}