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

.push-button__wrapper {
  text-align: center;
}
.push-button__wrapper.voice {
  margin-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
}
@media screen and (min-width: 1200px) {
  .push-button__wrapper.arrange {
    justify-content: space-between;
  }
}

a.push-button {
  color: #fff;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: bold;
  max-width: 77.38%;
  min-width: 77.38%;
  border: 3px solid #333;
  box-shadow: 0 5px 0 #333;
  border-radius: calc(infinity * 1px);
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.4em;
  padding: 20px 0;
  display: block;
}
@media screen and (min-width: 1200px) {
  a.push-button {
    width: 520px;
    max-width: 520px;
    min-width: unset;
    padding: 40px 0;
  }
}
@media screen and (min-width: 1200px) {
  .arrange a.push-button {
    width: 520px;
    min-width: unset;
    max-width: unset;
  }
}

a.push-button2 {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: bold;
  background: #fff;
  max-width: 70%;
  padding: 20px 0;
  border: 3px solid #333;
  box-shadow: 0 5px 0 #333;
  border-radius: calc(infinity * 1px);
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.4em;
  display: block;
}
@media screen and (min-width: 1200px) {
  a.push-button2 {
    min-width: 43%;
    max-width: 43%;
    padding: 40px 0;
  }
}

a.push-button-instagram {
  color: #fff;
  background: linear-gradient(150deg, rgb(119, 74, 223) 3.9%, rgb(155, 72, 185) 16.41%, rgb(201, 69, 139) 33.87%, rgb(229, 68, 110) 47.3%, rgb(239, 67, 99) 54.98%, rgb(239, 73, 97) 61.43%, rgb(240, 91, 92) 70.43%, rgb(240, 121, 84) 80.92%, rgb(241, 162, 73) 92.44%, rgb(242, 193, 65) 100%);
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: bold;
  padding: 20px 0;
  border: 3px solid #333;
  box-shadow: 0 5px 0 #333;
  border-radius: calc(infinity * 1px);
  display: block;
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.4em;
  max-width: 77.38%;
  min-width: 77.38%;
}
@media screen and (min-width: 1200px) {
  a.push-button-instagram {
    min-width: 43%;
    max-width: 43%;
    padding: 40px 0;
  }
}
@media screen and (min-width: 1200px) {
  .arrange a.push-button-instagram {
    width: 520px;
    min-width: unset;
    max-width: unset;
  }
}

a.push-button:hover,
a.push-button2:hover,
a.push-button-instagram:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #333;
}

.bg-main {
  background: #C53939;
}

.bg-gray {
  background: #eee;
}

.slick-dots {
  bottom: 15px !important;
}
@media screen and (min-width: 1200px) {
  .slick-dots {
    bottom: 30px !important;
  }
}

.slick-dots li button::before {
  font-size: 0.3125rem !important;
}
@media screen and (min-width: 1200px) {
  .slick-dots li button::before {
    font-size: 0.625rem !important;
  }
}

.myslider-slider img {
  width: 100%;
  transform: scale(1);
  /* 初期状態 */
  transition: transform 3s ease;
  /* 3秒間で拡大 */
}

.myslider-slider .active-slide img {
  transform: scale(1.1);
  /* 110%に拡大 */
}

.myslider-outer {
  height: 450px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .myslider-outer {
    height: 900px;
  }
}

.slick-slide {
  position: relative;
}

@media screen and (min-width: 768px) {
  .slick-slide::before {
    display: block;
    content: "";
    position: absolute;
    top: 60px;
    right: 51.73px;
    z-index: 10;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .slick-slide[data-slick-index="0"]::before,
  .slick-slide[data-slick-index="1"]::before,
  .slick-slide[data-slick-index="2"]::before {
    background-image: url("../images/slider/slide-logo.webp");
    width: 74.342px;
    height: 100px;
  }
  .slick-slide[data-slick-index="3"]::before,
  .slick-slide[data-slick-index="4"]::before {
    background-image: url("../images/slider/slide-logo2.webp");
    width: 74.342px;
    height: 100px;
  }
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.c-section-title {
  padding: 75px 0;
  text-align: center;
  color: #fff;
}
.c-section-title img {
  height: 195px;
  width: auto;
  object-fit: cover;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .c-section-title {
    padding: 145px 0;
  }
  .c-section-title img {
    height: 390px;
  }
}
.c-section-title.fb {
  background-image: url(../images/background01.webp);
  background-size: cover;
}
.c-section-title.hc {
  background-image: url(../images/background02.webp);
  background-size: cover;
}
.c-section-title-caption {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 40px;
  line-height: 3;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  white-space: nowrap;
  letter-spacing: 0.3em;
  color: #fff !important;
}
@media screen and (min-width: 1200px) {
  .c-section-title-caption {
    letter-spacing: 0;
  }
}

.anim-box {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
}

.anim-box.is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

* {
  min-height: 0vw;
  min-height: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

main {
  margin-top: 70px !important;
}

.c-container {
  position: relative;
  width: 85.066667%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .c-container {
    max-width: 1520px;
  }
}
.c-container-narrow {
  width: 85.066667%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .c-container-narrow {
    max-width: 1200px;
  }
}
.c-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .c-container-image {
    display: none;
  }
}

main p,
main ol,
main ul {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  color: #333;
}
@media screen and (min-width: 992px) {
  main p,
  main ol,
  main ul {
    font-size: 1.125rem;
  }
}
main ol,
main ul {
  margin-left: 1em;
}

article {
  padding: 0 0 40px !important;
}
@media screen and (min-width: 1200px) {
  article {
    padding: 0 !important;
    display: flex;
    align-items: center;
  }
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

/*main {
	margin: 44px auto 0;

	@include g.mq(lg) {
		margin: 138px auto 0;
	}
}*/
:target {
  scroll-margin-top: 70px;
}

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

.u-slider {
  position: relative;
}
.u-slider__caption {
  position: absolute;
  font-size: 1.25rem;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .u-slider__caption {
    top: 87px;
    left: 99px;
    font-size: 2.5rem;
    transform: initial;
  }
}
.u-slider .slick-slide img {
  width: 100%;
  height: auto;
}

.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.accrdion-area li {
  margin: 0 auto;
  list-style: none;
  position: relative;
}
.accrdion-area li:not(:first-child) {
  margin-top: 50px;
}

.title {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.title:before {
  position: absolute;
  content: "";
  background-image: url(../images/recruit/arrow-w.svg);
  background-size: 30px 15px;
  background-repeat: no-repeat;
  width: 30px;
  height: 15px;
}
@media screen and (min-width: 992px) {
  .title:before {
    background-size: 70px 35px;
    width: 70px;
    height: 35px;
  }
}

.title.right .readme {
  display: none;
}
@media screen and (min-width: 992px) {
  .title.right .readme {
    display: block;
    position: absolute;
    top: 40%;
    right: 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
  }
}

.title.right:before {
  bottom: 24px;
  right: 10%;
  transform-origin: center center;
  transform: rotate(0deg);
}
@media screen and (min-width: 992px) {
  .title.right:before {
    top: 50%;
    right: 25px;
  }
}

.title.left .readme {
  display: none;
}
@media screen and (min-width: 992px) {
  .title.left .readme {
    display: block;
    position: absolute;
    top: 40%;
    left: 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
  }
}

.title.left:before {
  bottom: 24px;
  right: 10%;
  transform-origin: center center;
  transform: rotate(0deg);
}
@media screen and (min-width: 992px) {
  .title.left:before {
    top: 50%;
    left: 25px;
  }
}

.title.close:before {
  transform-origin: center center;
  transform: rotate(180deg);
}

.box {
  display: none;
  margin: 45px 0 0 0;
}

@media screen and (min-width: 992px) {
  .breadcrumb {
    margin: 15px auto;
    font-size: 1.3rem;
  }
  .breadcrumb a:first-child:before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 0.3em;
  }
  .breadcrumb a:link, .breadcrumb a:visited {
    text-decoration: none;
    color: #333;
  }
  .breadcrumb a:hover {
    font-weight: bold;
  }
}

.c-page__breadcrumb {
  margin-top: 56px;
}
@media screen and (min-width: 992px) {
  .c-page__breadcrumb {
    margin-top: 115px;
  }
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/
/*==ナビゲーション全体の設定*/
nav.l-header__nav {
  color: #333;
  text-align: center;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 93px;
  width: 100%;
}

/*ナビゲーションを横並びに*/
nav.l-header__nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  width: 100%;
}

/*2階層目以降は横並びにしない*/
nav.l-header__nav ul ul {
  display: block;
  text-align: left;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav.l-header__nav ul li {
  position: relative;
}
nav.l-header__nav ul li.contactus {
  position: absolute;
  top: -54px;
  right: 191px;
}
nav.l-header__nav ul li.privacypolicy {
  position: absolute;
  top: -54px;
  right: 0;
}

/*ナビゲーションのリンク設定*/
nav.l-header__nav ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0;
  /*padding: 28.2px 0 8.8px;*/
  /*transition: all 0.3s;*/
  /*margin: 0 17.5px;*/
  margin: 0;
  position: relative;
  font-size: 1rem !important;
}

nav.l-header__nav ul li li a {
  /*padding: 10px 35px 10px 20px;*/
  white-space: nowrap;
  padding: 28.2px 0 8.8px;
  margin: 0 17.5px;
}

nav.l-header__nav ul li a:hover {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#home nav.l-header__nav ul li:nth-child(1) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#product nav.l-header__nav ul li:nth-child(2) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#initiative nav.l-header__nav ul li:nth-child(3) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#flow nav.l-header__nav ul li:nth-child(4) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#corporate nav.l-header__nav ul li:nth-child(5) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

body#recruit nav.l-header__nav ul li:nth-child(6) a {
  color: #333;
  border-bottom: 1px solid #f00;
}

nav.l-header__nav ul li.has-child.active:hover a {
  border-bottom: 1px solid #f00;
}

nav.l-header__nav ul li.has-child.active ul li a {
  border-bottom: none !important;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav.l-header__nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 4;
  /*形状を指定*/
  background: rgba(255, 255, 255, 0.8);
  width: auto;
  min-width: 224px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

nav.l-header__nav li.has-child:nth-child(6) ul {
  right: -50%;
  left: auto;
}

/*hoverしたら表示*/
nav.l-header__nav li.has-child:hover > ul,
nav.l-header__nav li.has-child ul li:hover > ul,
nav.l-header__nav li.has-child:active > ul,
nav.l-header__nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav.l-header__nav li.has-child ul li a {
  color: #333;
  border-bottom: none;
  padding: 11.5px 0;
}

nav.l-header__nav li.has-child ul li:first-child a {
  border-bottom: none;
  padding-top: 35.2px;
}

nav.l-header__nav li.has-child ul li:last-child a {
  border-bottom: none;
  padding-bottom: 37.8px;
}

nav.l-header__nav li.has-child ul li a:hover,
nav.l-header__nav li.has-child ul li a:active {
  color: #000;
  font-weight: bold;
}

/*==768px以下の形状*/
@media screen and (max-width: 991px) {
  nav.l-header__nav {
    padding: 0 0 43px;
    height: 100vh;
    overflow: scroll;
    top: 43px;
    overflow: scroll;
    display: none;
    background: #fff;
    width: 106.926%;
    margin-left: -3.0625%;
  }
  nav.l-header__nav ul {
    display: block;
    font-weight: bold;
    width: 95%;
    margin: auto;
  }
  nav.l-hearder__nav a nav.l-header__nav {
    display: none;
  }
  nav.l-header__nav li.has-child ul,
  nav.l-header__nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: block; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
    background: transparent;
    box-shadow: none;
    font-weight: normal;
  }
  nav.l-header__nav li.has-child:nth-child(6) ul {
    right: auto;
    left: 0;
  }
  nav.l-header__nav li.contactus,
  nav.l-header__nav li.privacypolicy {
    position: static !important;
  }
  nav.l-header__nav ul li a {
    border-bottom: 1px solid #ccc !important;
    color: #e9eaee !important;
  }
  /*矢印の位置と向き*/
  nav.l-header__nav ul li.has-child::before {
    left: 20px;
  }
  nav.l-header__nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav.l-header__nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
  nav.l-header__nav ul li li a {
    white-space: normal;
  }
}
.ggmap {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
}

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

.menu-btn {
  position: fixed;
  top: 10px;
  right: 20px;
  display: flex;
  height: 20px;
  width: 20px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 20px;
  border-radius: 3px;
  background-color: #000;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content ul {
  padding: 70px 10px 0;
}
@media screen and (min-width: 992px) {
  .menu-content ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
}

#menu-btn-check:checked ~ .l-header__nav {
  display: block;
}

.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%;
}

div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #C00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #C00;
  font-size: 24px;
}

form#mailformpro {
  padding: 56px 0px;
}
@media screen and (min-width: 992px) {
  form#mailformpro {
    padding: 76px 0px;
    max-width: 1000px;
    margin: auto;
  }
}

form#mailformpro dl dt {
  font-weight: 500;
  font-size: 1rem;
  margin: 0px;
}

form#mailformpro dl dd {
  margin: 3px 0 0 0;
  font-size: 1rem;
  line-height: 1.5em;
  text-align: left;
}

form#mailformpro dl dd ul,
form#mailformpro dl dd ol {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd ul li,
form#mailformpro dl dd ol li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

form#mailformpro dl dt:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  form#mailformpro dl dt:not(:first-child) {
    margin-top: 30px;
  }
}
form#mailformpro dl dt + form#mailformpro dl dd {
  margin-top: 3px;
}

form#mailformpro input,
form#mailformpro select,
form#mailformpro textarea {
  border: 1px solid #a1a1a1;
  width: 100%;
  padding: 5px 10px;
}

form#mailformpro input[type=checkbox] {
  width: auto;
}

form#mailformpro input + input {
  margin-top: 3px;
}
form#mailformpro select + input {
  margin-top: 3px;
}

form#mailformpro .p-privacy__check {
  margin: 30px auto;
}
@media screen and (min-width: 992px) {
  form#mailformpro .p-privacy__check {
    max-width: 1000px;
  }
}
form#mailformpro .p-privacy__check .p-privacy__content {
  width: 100%;
  height: 10em;
  resize: none;
  overflow: auto;
  border: 1px solid #a1a1a1;
  padding: 1em;
}
form#mailformpro .p-privacy__check .p-privacy__content-title {
  font-size: 1.125rem;
}
form#mailformpro .p-privacy__check .p-privacy__content-title + p {
  margin-top: 1em;
}
form#mailformpro .p-privacy__check .p-privacy__content-readme {
  font-size: 1rem;
}
form#mailformpro .p-privacy__check .p-privacy__checkbox:disabled {
  visibility: hidden;
}
form#mailformpro .p-privacy__check .disabled {
  color: lightgray;
}

.must {
  display: inline-block;
  color: #C53939;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0 1em;
}

.optionally {
  display: block;
  background-color: #06C;
  border: solid 2px #06C;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(../mfp.statics/_images/mfp_header.png);
  background-size: 100% 100%;
}

form#mailformpro label {
  border-radius: 3px;
  margin: 3px;
  display: inline-block;
  white-space: nowrap;
}

form#mailformpro label.mfp_checked {
  padding: 3px;
  border: solid 1px #CCC;
  background-color: #E8EEF9;
  box-shadow: 0px 1px 3px #CCC inset;
}

form#mailformpro label.mfp_not_checked {
  padding: 3px;
  border: solid 1px #EEE;
}

table#mfp_confirm_table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table#mfp_confirm_table tr.mfp_colored {
  /*background-color: #F6F7F9;*/
}

table#mfp_confirm_table tr.mfp_achroma {
  /*background-color: #FFF;*/
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  text-align: left;
  font-size: 12px;
  border-top: solid 1px #CCC;
  padding: 5px 10px;
}

table#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 200px;
}

table#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

div#mfp_phase_confirm {
  clear: both;
}

div#mfp_phase_confirm h4 {
  font-size: 36px;
  padding: 10px 0px 0px 0px;
  text-align: center;
}

div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #FFF;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(../mfp.statics/_images/mfp_loading.gif);
}

.mfp_colored {
  /*background-color: #F6F7F9;*/
}

.mfp_achroma {
  /*background-color: #FFF;*/
}

div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 5px 0px 0px 0px;
  padding: 3px 0px 5px 17px;
  color: #F00;
  font-size: 12px;
  line-height: normal;
  background-image: url(../mfp.statics/_images/mfp_error.gif);
  background-repeat: no-repeat;
  background-position: 0px;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_warning {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_price {
  color: #C00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next,
button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
  text-align: center;
}

ul#mfp_phase_stat li {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 0px 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 8px 0px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  box-shadow: 0px 1px 6px #000;
  background-image: url(../mfp.statics/_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #0068B7;
  border: solid 2px #0068B7;
  font-weight: bolder;
  color: #FFF;
  text-shadow: 0px 1px 3px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-image: url(../mfp.statics/_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #EEE;
  border: solid 2px #EEE;
  color: #999;
  box-shadow: 0px 1px 6px #CCC;
}

div#mfp_shopping_cart {
  border: solid 1px #CCC;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #FEE;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #EEE;
  border-bottom: solid 1px #CCC;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th,
table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #CCC;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  margin-top: 35px;
  padding: 10px 0px;
  text-align: center;
}
div.mfp_buttons button[type=submit] {
  background: #C53939;
  color: #fff;
  font-size: 1.0625rem;
  padding: 5px;
  width: 100%;
}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_all {
  max-width: 100%;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
}

.mfp_element_checkbox,
.mfp_element_radio {
  vertical-align: middle;
  margin: 0px 2px;
}

.mfp_element_file {
  font-size: 12px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev {
  border-radius: 5px;
  padding: 5px 10px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  /*text-shadow: 0px 2px 0px #FFF;*/
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

.mfp_element_reset {
  color: #333;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover,
button.mfp_next:hover,
button.mfp_prev:hover {
  background: gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -moz-linear-gradient(top, #FFF, #CCC);
  background: -ms-linear-gradient(top, #FFF 0%, #CCC 100%);
  box-shadow: 0px 2px 15px #CCC;
}

button.mfp_next,
button.mfp_prev {
  font-size: 14px;
}

input#mfp_reserve_item,
input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #CCC;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #FEE;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
  background-color: #E8EEF9;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068B7;
  color: #FFF;
}

td.mfp_reserve_disabled {
  background-color: #CCC;
}

td.mfp_reserve_warning {
  background-color: #FFC;
}

div#mfp_reserve_wrapper table tr td,
div#mfp_reserve_wrapper table tr th {
  border: solid 1px #CCC;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #F00;
  background-color: #FEE;
}

td.mfp_reserve_week_6 {
  color: #00F;
  background-color: #EEF;
}

div.mfp_ok {
  border-radius: 5px;
  background-color: #090;
  border: solid 1px #090;
  display: inline-block;
  line-height: 1.5em;
  padding: 0px 5px;
  margin: 0px 2px;
  color: #FFF;
  font-size: 10px;
  background-image: url(../mfp.statics/_images/mfp_header.png);
  background-size: 100% 100%;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

div.prefcodeResult div:hover {
  background-color: #C9EBFB;
}

div.prefcodeResult div.prefcodeNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(../mfp.statics/_images/mfp_zip_loading.gif) no-repeat center center;
}

div.mfpSuggestWrapper {
  position: relative;
}

div.mfpSuggestResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.mfpSuggestResult div {
  cursor: pointer;
}

div.mfpSuggestResult div:hover {
  background-color: #C9EBFB;
}

div.mfpSuggestResult div.mfpSuggestNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(../mfp.statics/_images/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}

div.mfp_attached_thumbnails {
  display: none;
  padding: 5px;
  margin: 5px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

div.mfp_attached_thumbnails ul {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  border: solid 4px #FFF;
  margin: 5px;
  box-shadow: 0px 2px 5px #999;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
  display: block;
  max-height: 100px;
  overflow: hidden;
}

div.mfp_attached_thumbnails ul li a img {
  display: block;
  max-width: 80px;
}

button.mfp_attached_reset {
  font-size: 14px;
}

div.mfp_draganddrop {
  margin: 5px auto;
  width: 100%;
  height: 200px;
  border: solid 2px #CCC;
  border-radius: 3px;
  background: url(../mfp.statics/_images/draganddrop.png) no-repeat center center #EEE;
  background-size: auto 80%;
}

div.mfp_dragover {
  border: solid 2px #0068B7;
  background-color: #FFF;
}

div.mfp_attached_filelist {
  margin: 5px auto;
  padding: 5px;
  width: 100%;
  border: solid 1px #CCC;
  border-radius: 3px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul,
div.mfp_attached_filelist ul {
  padding: 5px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li,
div.mfp_attached_filelist ul li {
  padding: 5px 5px 5px 2em;
  background: url(../mfp.statics/_images/file.png) no-repeat 5px center;
  background-size: 1.3em 1.3em;
  display: inline-block;
  margin-right: 1em;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li:last-child,
div.mfp_attached_filelist ul li:last-child {
  border: none;
}

div.mfp_guide {
  position: relative;
  width: 1px;
  height: 1px;
}

div.mfp_guide div {
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin-top: -2em;
  white-space: nowrap;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1em;
  font-size: 12px;
  color: #FFF;
  font-weight: bolder;
  background: #F00;
  display: none;
}

div#mfp_numticket_wrapper,
div#mfp_numticket_wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

div#mfp_numticket_wrapper {
  clear: both;
  padding: 15px;
}

div#mfp_numticket_wrapper section#numticket_message_wrapper {
  border: solid 3px #F00;
  border-radius: 5px;
  background: #FEE;
  padding: 15px;
  font-size: 16px;
  line-height: 1.7em;
  margin: 5px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime {
  border: solid 3px #CCC;
  border-radius: 5px;
  background: #FFF;
  padding: 15px;
  font-size: 16px;
  margin: 10px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime strong {
  font-size: 32px;
  display: block;
  text-align: center;
}

div#mfp_numticket_wrapper section#numticket_waitTime p.numticket_center {
  text-align: center;
}

div.mfp_traffic_status {
  max-width: 460px;
  margin: 10px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 15px;
}

div.mfp_traffic_status h3 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: #999;
}

div.mfp_traffic_status table {
  text-align: center;
  width: 100%;
}

div#wrapper div.mfp_traffic_status table tr th,
div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td,
div.mfp_traffic_status table th {
  border: none;
  padding: 0;
}

div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td {
  padding: 0 2px;
}

div#wrapper div.mfp_traffic_status table tr th,
div.mfp_traffic_status table th {
  border-top: solid 1px #CCC;
  font-size: 10px;
  font-weight: normal;
  padding-top: 5px;
  color: #999;
}

div.mfp_traffic_status table td {
  height: 100px;
}

div.mfp_traffic_status table td span {
  display: block;
  background: #7BAAF7;
  border-radius: 3px 3px 0 0;
  border-top: solid 1px #66A1F7;
  border-right: solid 1px #66A1F7;
  border-left: solid 1px #66A1F7;
  min-width: 10px;
  max-width: 30px;
  margin: 0 auto;
  padding-bottom: 10px;
}

div.mfp_traffic_status table td span.mfp_traffic_status_current {
  background: #5D7AF2;
  border-top: solid 1px #546CD1;
  border-right: solid 1px #546CD1;
  border-left: solid 1px #546CD1;
}

.mfp_ok {
  background-color: rgba(0, 255, 0, 0.2);
}

.mfp_ng {
  background-color: rgba(255, 0, 0, 0.2);
}

div#mfp_OperationCheck div#mfp_OperationCheck_inner {
  display: none;
}

div#mfp_OperationCheck strong {
  background: #090;
  display: block;
  color: #222;
  text-align: center;
  border-radius: 3px;
}

div#mfp_OperationCheck * {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p {
  padding: 0px 5px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p a {
  color: #0C0;
  text-decoration: none;
}

div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
  text-decoration: underline;
}

div#mfp_OperationCheck p button {
  border: none;
  background: none;
  color: #0C0;
  cursor: pointer;
}

div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
  line-height: 12px;
  font-size: 12px;
  list-style: none;
  vertical-align: middle;
}

div#mfp_OperationCheck ul li {
  padding: 5px 10px;
}

div#mfp_OperationCheck ul li label {
  text-decoration: underline;
}

button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
  border-radius: 5px;
  padding: 5px 10px 5px 2em;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin: 5px auto;
}

button#mfp_recorder_record {
  background: url(../mfp.statics/_images/mfp_record_disabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_clear {
  background: url(../mfp.statics/_images/mfp_record_remove.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_restore {
  background: url(../mfp.statics/_images/mfp_record_restore.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
  background: url(../mfp.statics/_images/mfp_record_enabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

div#mfp_recorder_wrap {
  border: solid 1px #CCC;
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}

td.request_image {
  width: 100px;
}

td.request_image img {
  max-width: 100px;
}

button.mfp_submit_enable {
  background: none;
  background: #000090;
}

button.mfp_submit_disable {
  background: none;
  background: #FD8282;
}

span.mfp_tips {
  background-image: url(../mfp.statics/_images/mfp_header.png);
  background-size: 100% 100%;
  background-color: #FCC;
  display: block;
  border-radius: 5px;
  padding: 10px;
  margin: 2px;
  box-shadow: 0px 2px 10px #999;
}

span.mfp_tips strong {
  color: #800040;
}

span.mfp_tips span {
  display: block;
  padding: 10px;
  color: #008080;
}

span.mfp_tips em {
  font-style: normal;
  color: #090;
  font-weight: bold;
}

/* cms-pagination */
.cms-pagination {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.cms-pagination ul {
  position: relative;
  float: left;
  left: 50%;
  margin-bottom: 12px;
  padding: 0;
}

.cms-pagination ul li {
  position: relative;
  float: left;
  left: -50%;
  width: 34px;
  height: 38px;
  display: table;
  margin: 0 2px;
  display: none;
}

.cms-pagination ul li.pagination-no-num {
  width: 50px;
  display: table;
  font-size: 1.4rem;
}

.cms-pagination ul li.pagination-no-num span {
  background: #eee;
  border: 1px solid #ddd;
  color: #ccc;
}

.cms-pagination ul li.pagination-sp {
  display: table;
}

.cms-pagination ul li a,
.cms-pagination ul li span {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  border: 1px solid #999;
  background: #fff;
}

.cms-pagination ul li a:before,
.cms-pagination ul li span:before {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%;
}

.cms-pagination ul li span {
  background: #555;
  border: 1px solid #555;
  color: #fff;
}

.pagination-txt {
  clear: both;
  text-align: center;
  margin-bottom: 40px;
}

.pagination-txt span {
  color: #999;
}

@media print, screen and (min-width: 1024px) {
  .cms-pagination ul li {
    width: 40px;
    height: 44px;
    margin: 0 3px;
    display: table;
  }
  .cms-pagination ul li a {
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
  .cms-pagination ul li a:hover {
    background: #ccc;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
  .cms-pagination ul li.pagination-no-num {
    width: 60px;
  }
  .pagination-txt {
    margin-bottom: 60px;
  }
}
.u-pagetop {
  margin: 1em 0;
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 10;
}
.u-pagetop a {
  display: block;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.animation_box-L {
  opacity: 0;
  transform: translateX(-576px);
  transition: 1.5s ease;
}
@media screen and (min-width: 768px) {
  .animation_box-L {
    transform: translateX(-768px);
  }
}
@media screen and (min-width: 992px) {
  .animation_box-L {
    transform: translateX(-992px);
  }
}
@media screen and (min-width: 1200px) {
  .animation_box-L {
    transform: translateX(-1200px);
  }
}
.animation_box-R {
  opacity: 0;
  transform: translateX(576px);
  transition: 1.5s ease;
}
@media screen and (min-width: 768px) {
  .animation_box-R {
    transform: translateX(768px);
  }
}
@media screen and (min-width: 992px) {
  .animation_box-R {
    transform: translateX(992px);
  }
}
@media screen and (min-width: 1200px) {
  .animation_box-R {
    transform: translateX(1200px);
  }
}

/*ベース*/
div.typeA {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}
@media screen and (min-width: 992px) {
  div.typeA {
    gap: 0 15px;
  }
}

div.typeA .tabLabel {
  /* タブ */
  margin-right: 3px;
  padding: 20px 15px;
  flex: 1;
  order: -1;
  color: #fff;
  background: #999;
  transition: 0.3s;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 992px) {
  div.typeA .tabLabel {
    font-size: 1.375rem;
  }
}

div.typeA .tabLabel:nth-last-of-type(1) {
  margin-right: 0;
}

div.typeA input {
  /* ラジオボタン非表示 */
  display: none;
}

div.typeA .content {
  /* 本文 */
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/*アクティブ設定*/
div.typeA input:checked + .tabLabel {
  color: #fff;
  background: rgba(197, 57, 57, 0.8);
}

div.typeA input:checked + .tabLabel + .content {
  padding: 0;
  height: auto;
  overflow: auto;
  transition: 0.3s opacity;
  opacity: 1;
}

iframe.youtube-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

#fb01 {
  background-color: #e9eaee;
}
@media screen and (min-width: 1200px) {
  #fb01 {
    background-image: url(../images/product-fb01-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#fb02 {
  background-color: #f6f9fe;
}
@media screen and (min-width: 1200px) {
  #fb02 {
    background-image: url(../images/product-fb02-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#fb03 {
  background-color: #fffbfa;
}
@media screen and (min-width: 1200px) {
  #fb03 {
    background-image: url(../images/product-fb03-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#fb04 {
  background-color: #f5f5f1;
}
@media screen and (min-width: 1200px) {
  #fb04 {
    background-image: url(../images/product-fb04-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#hc01 {
  background-color: #dcdce4;
}
@media screen and (min-width: 1200px) {
  #hc01 {
    background-image: url(../images/product-hc01-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#hc02 {
  background-color: #e9e4e6;
}
@media screen and (min-width: 1200px) {
  #hc02 {
    background-image: url(../images/product-hc02-pc.jpg);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#hc03 {
  background-color: #f9f9f9;
}
@media screen and (min-width: 1200px) {
  #hc03 {
    background-image: url(../images/product-hc03-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#hc04 {
  background-color: #eff8ff;
}
@media screen and (min-width: 1200px) {
  #hc04 {
    background-image: url(../images/product-hc04-pc.webp);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
}

#series-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  margin: clamp(0rem, -2.841rem + 12.121vw, 6.25rem) auto;
}
@media screen and (min-width: 992px) {
  #series-menu {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
#series-menu a {
  display: block;
  width: 48%;
  text-align: center;
}
#series-menu a:first-child {
  border-right: 1px solid #000;
}
@media screen and (min-width: 1200px) {
  #series-menu a {
    width: 600px;
  }
}
#series-menu img {
  padding: 10px 0;
  margin: auto;
}

@media screen and (min-width: 1200px) {
  .muk-container {
    min-height: 900px;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .muk-container:nth-of-type(odd) .muk-content {
    width: 50%;
    margin-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .muk-container:nth-of-type(even) .muk-content {
    width: 50%;
    margin-left: 50%;
  }
}

.muk-content {
  text-align: center;
}
.muk-content__title {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.2em;
  line-height: 1;
  padding-top: 40px;
  white-space: nowrap;
  text-indent: 0.2em;
  margin-left: -0.2em;
}
@media screen and (min-width: 1200px) {
  .muk-content__title {
    margin-top: 0;
  }
}
.muk-content__type {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  letter-spacing: 0.2em;
  margin-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: 500;
}
.muk-content__color {
  margin-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  list-style-type: none;
  display: flex;
  justify-content: center;
  font-size: clamp(0.75rem, 0.523rem + 0.97vw, 1.25rem);
  gap: 0 9.333333%;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .muk-content__color {
    gap: 0 75px;
  }
}
.muk-content__color li {
  line-height: 1;
}
.muk-content__color span {
  display: block;
  margin: auto;
  border-radius: calc(infinity * 1px);
  border: 1px solid #000;
  width: 20px;
  height: 20px;
  margin-bottom: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1200px) {
  .muk-content__color span {
    width: 40px;
    height: 40px;
  }
}
.muk-content__color span.white {
  background-color: #f5f8fb;
}
.muk-content__color span.black {
  background-color: #414850;
}
.muk-content__color span.greige {
  background-color: #e5e4df;
}
.muk-content__color span.MBE104A-white {
  background-color: #f6f8fd;
}
.muk-content__color span.MBE104A-black {
  background-color: #474f63;
}
.muk-content__color span.MBE103A-white {
  background-color: #faf7f2;
}
.muk-content__color span.MBS002A-pink {
  background-color: #f5bbbf;
}
.muk-content__color i {
  display: block;
  letter-spacing: 0.2em;
  font-size: clamp(0.375rem, 0.205rem + 0.727vw, 0.75rem);
  margin-top: 6px;
  text-align: center;
}
.muk-content__caption {
  margin-top: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  line-height: 2;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.muk-content__size {
  margin-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: 500;
}
.muk-content__button {
  margin-top: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  display: flex;
  justify-content: center;
  gap: 0 5.333333%;
}
@media screen and (min-width: 1200px) {
  .muk-content__button {
    gap: 0 80px;
  }
}
.muk-content__button.none {
  position: relative;
}
.muk-content__button.none:after {
  content: "COMING SOON";
  font-size: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  position: absolute;
  left: auto;
  right: auto;
  color: #a47864;
  display: flex;
  align-items: center;
  line-height: 50px;
}
@media screen and (min-width: 1200px) {
  .muk-content__button.none:after {
    line-height: 92px;
  }
}
.muk-content__button.none a {
  pointer-events: none;
  opacity: 0.5;
}
.muk-content__button-white {
  background-color: #fff;
  border: 1px solid #5e5e5e;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.muk-content__button-white::after {
  display: inline-block;
  content: "";
  background-image: url(../images/arrow-gray.webp);
  background-size: 6px 12px;
  width: 6px;
  height: 12px;
  position: absolute;
  right: 10%;
}
.muk-content__button-white:hover, .muk-content__button-white:focus {
  background-color: #5e5e5e;
  color: #fff;
}
.muk-content__button-white:hover::after, .muk-content__button-white:focus::after {
  background-image: url(../images/arrow-white.webp);
}
.muk-content__button-gray {
  background-color: #5e5e5e;
  border: 1px solid #8b7041;
  color: #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.muk-content__button-gray::after {
  display: inline-block;
  content: "";
  background-image: url(../images/arrow-white.webp);
  background-size: 6px 12px;
  width: 6px;
  height: 12px;
  position: absolute;
  right: 10%;
}
.muk-content__button-gray:hover, .muk-content__button-gray:focus {
  background-color: #fff;
  color: #8b7041;
}
.muk-content__button-gray:hover::after, .muk-content__button-gray:focus::after {
  background-image: url(../images/arrow-charcoal.webp);
}
.muk-content__button-gray.none {
  pointer-events: none;
  position: relative;
  background-color: rgba(94, 94, 94, 0.3);
  color: rgba(139, 112, 65, 0.3);
}
.muk-content__button-gray.none:before {
  content: "COMING SOON";
  font-size: clamp(1rem, 0.602rem + 1.697vw, 1.875rem);
  position: absolute;
  left: auto;
  right: auto;
  color: #a47864;
  display: flex;
  align-items: center;
  line-height: 50px;
  letter-spacing: 0.15em;
  justify-content: center;
  white-space: nowrap;
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .muk-content__button-gray.none:before {
    line-height: 92px;
  }
}
.muk-content__button-charcoalwhite {
  border: 1px solid #a47864;
  color: #a47864;
  background-color: #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.muk-content__button-charcoalwhite::after {
  display: inline-block;
  content: "";
  background-image: url(../images/arrow-charcoal.webp);
  background-size: 6px 12px;
  width: 6px;
  height: 12px;
  position: absolute;
  right: 10%;
}
.muk-content__button-charcoalwhite:hover, .muk-content__button-charcoalwhite:focus {
  background-color: #a47864;
  color: #fff;
}
.muk-content__button-charcoalwhite:hover::after, .muk-content__button-charcoalwhite:focus::after {
  background-image: url(../images/arrow-white.webp);
}
.muk-content__button-charcoal {
  background-color: #a47864;
  border: 1px solid #a47864;
  color: #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.muk-content__button-charcoal::after {
  display: inline-block;
  content: "";
  background-image: url(../images/arrow-white.webp);
  background-size: 6px 12px;
  width: 6px;
  height: 12px;
  position: absolute;
  right: 10%;
}
.muk-content__button-charcoal:hover, .muk-content__button-charcoal:focus {
  background-color: #fff;
  color: #a47864;
}
.muk-content__button-charcoal:hover::after, .muk-content__button-charcoal:focus::after {
  background-image: url(../images/arrow-charcoal.webp);
}
.muk-content__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  width: 47.021943%;
  letter-spacing: 0.2em;
  font-size: clamp(0.75rem, 0.523rem + 0.97vw, 1.25rem);
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .muk-content__button a {
    padding: 30px 0;
    max-width: 300px;
  }
}/*# sourceMappingURL=common.css.map */