@charset "UTF-8";
/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
*,
::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.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[id],
:focus {
  scroll-margin-block-start: var(--scroll-margin);
}

html {
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  background: #FFFFFF;
  color: #000;
  font-size: 1.6rem;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
  --_min-viewport-width: 480px; /* viewportの最小値を下回ったら縮小をやめる */
  --_max-viewport-width: 1440px; /* viewportの最大値を上回ったら拡大をやめる */
  --_zoom-value: clamp(
    tan(atan2(var(--_min-viewport-width), var(--_max-viewport-width))),
    tan(atan2(var(--zoom-factor), var(--_max-viewport-width))),
    1
  );
  --zoom-factor: clamp(
    var(--_min-viewport-width),
    100dvi,
    var(--_max-viewport-width)
  );
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial; /* iOS Safariのバグを修正 */
  /* 768px以下では100%のズーム値を適用 */
}
@media (max-width: 480px) {
  body {
    zoom: 1;
  }
}
body:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
body.fixed {
  position: fixed;
  width: 100%;
}
body.fixed:after {
  z-index: 90;
  opacity: 1;
  visibility: visible;
}
@media (width < 400px) {
  body {
    zoom: progress(100lvw, 0px, 390px);
    --webkit-text-size-adjust: initial;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a, a:link, a:visited {
  color: #212121;
  text-decoration: none;
  transition: 0.5s;
}
a:hover, a:link:hover, a:visited:hover {
  color: #DB3535;
}

@media (min-width: calc(1024px + 1px)) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  a[href*="tel:"]:hover {
    color: #212121;
  }
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
  transition: 0.5s;
}

.container {
  margin: auto;
  width: 83.33%;
  max-width: 1200px;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
.container .innerBox {
  margin: auto;
  width: 81.25%;
  max-width: 1300px;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container .innerBox {
    width: 89.85%;
  }
}

main {
  display: block;
}

/*============================================================================
	header
=============================================================================*/
header {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #headerInner {
  padding-left: 27px;
  display: flex;
  height: 80px;
  align-items: normal;
}
@media (max-width: 1024px) {
  header #headerInner {
    height: 65px;
  }
}
@media (max-width: 480px) {
  header #headerInner {
    height: 60px;
    padding-left: 20px;
  }
}
header #headerInner h1 {
  align-self: center;
  position: relative;
  z-index: 999;
}
header #headerInner h1 a {
  max-width: 200px;
  height: 70px;
  display: flex;
}
@media (max-width: 1024px) {
  header #headerInner h1 a {
    height: 40px;
  }
}
header #headerInner nav {
  gap: 1px;
  margin-left: auto;
  padding-right: 0;
}
header #headerInner nav .snsList {
  background: #DB3535;
  padding: 0 20px;
  margin: 0;
  gap: 10px;
}
@media (max-width: 480px) {
  header #headerInner nav .snsList {
    display: none;
  }
}
header #headerInner nav .snsList li {
  align-self: center;
}
header #headerInner nav .snsList li a figure {
  width: 30px;
}
header #headerInner nav .snsList li a figure img {
  width: 30px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
header #headerInner nav .contactBtn {
  width: 240px;
  height: 100%;
}
header #headerInner nav .contactBtn a {
  display: block grid;
  place-items: center;
  background: #555555;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  border: 2px solid #555555;
}
header #headerInner nav .contactBtn a:hover {
  background: #fff;
  color: #555555;
}
@media (max-width: 480px) {
  header #headerInner nav .contactBtn {
    width: 100px;
  }
  header #headerInner nav .contactBtn a {
    font-size: 1.3rem;
  }
}
header #headerInner nav .onlineBtn {
  width: 240px;
  height: 100%;
}
header #headerInner nav .onlineBtn a {
  display: block grid;
  place-items: center;
  background: #DB3535;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  border: 2px solid #DB3535;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #headerInner nav .onlineBtn a:hover {
  background: #fff;
  color: #DB3535;
}
@media (max-width: 480px) {
  header #headerInner nav .onlineBtn {
    width: 140px;
  }
  header #headerInner nav .onlineBtn a {
    font-size: 1.3rem;
  }
}

/*============================================================================
	drawer menuBtn
=============================================================================*/
.menuBtn {
  margin: auto;
  padding: 15px;
  width: 45px;
  height: 45px;
  text-align: center;
  background: #DB3535;
  outline: 0;
  border: 0;
  position: fixed;
  top: 0;
  left: auto;
  display: none;
  right: 0;
  bottom: auto;
  z-index: 1200;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.menuBtn:hover {
  cursor: pointer;
}
@media (min-width: calc(1024px + 1px)) {
  .menuBtn {
    display: none;
  }
}
.menuBtn .drawer-hamburger-icon {
  margin: auto;
  position: relative;
  display: block;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  left: 0;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before {
  top: -5px;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  top: 5px;
}
.menuBtn.close-btn .drawer-hamburger-icon {
  background-color: transparent;
}
.menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  background-color: #FFFFFF;
  top: 0;
}
.menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*============================================================================
	footer
=============================================================================*/
.lineLink {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 999;
  width: 100px;
  height: 200px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 480px) {
  .lineLink {
    bottom: 20px;
    width: 60px;
    height: 120px;
  }
}
.lineLink.is-visible {
  opacity: 1;
  visibility: visible;
}
.lineLink a {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #45CF5C;
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}
.lineLink a:hover {
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .lineLink a {
    padding: 15px 0;
    gap: 10px;
    font-size: 1.6rem;
  }
  .lineLink a figure {
    width: 35px;
  }
  .lineLink a figure img {
    width: 35px;
  }
}

.snsLink {
  background: #DB3535;
  padding: 15px 0;
  position: fixed;
  border-radius: 20px 0 0 20px;
  bottom: 20px;
  right: 0;
  z-index: 10000;
  width: 60px;
  height: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 480px) {
  .snsLink {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    display: flex;
  }
}
.snsLink.is-visible {
  opacity: 1;
  visibility: visible;
}
.snsLink li a figure {
  width: 20px;
}
.snsLink li a figure img {
  width: 20px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

footer {
  padding: 100px 0 0;
  height: auto;
  position: relative;
  overflow: hidden;
  background: #212121;
}
@media (max-width: 480px) {
  footer {
    padding: 70px 0 0;
  }
}
footer .footerWrap {
  position: relative;
  z-index: 99;
  align-items: center;
}
footer .fcompanyBox {
  width: 31.74%;
}
@media (max-width: 1400px) {
  footer .fcompanyBox {
    width: 100%;
  }
}
@media (max-width: 480px) {
  footer .fcompanyBox {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  footer .fcompanyBox p.flogo {
    max-width: 183px;
  }
}
footer .fcompanyBox .faddressBox {
  margin-top: 60px;
}
@media (max-width: 480px) {
  footer .fcompanyBox .faddressBox {
    margin-top: 40px;
  }
}
footer .fcompanyBox .faddressBox dt {
  font-size: clamp(18.6px, 1.615vw, 31px);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 480px) {
  footer .fcompanyBox .faddressBox dt {
    font-size: 2.1rem;
  }
}
footer .fcompanyBox .faddressBox dd {
  margin-top: 15px;
}
@media (max-width: 480px) {
  footer .fcompanyBox .faddressBox dd {
    margin-top: 10px;
  }
}
footer .fcompanyBox .faddressBox dd p {
  font-size: clamp(13.2px, 1.146vw, 22px);
  letter-spacing: 0;
  line-height: 1.8181818182;
  color: #fff;
}
@media (max-width: 480px) {
  footer .fcompanyBox .faddressBox dd p {
    font-size: 1.5rem;
  }
}
footer .fcompanyBox .snsList {
  margin-top: 50px;
}
@media (max-width: 480px) {
  footer .fcompanyBox .snsList {
    margin-top: 40px;
  }
}
footer .fcompanyBox .snsList li a figure img {
  width: 30px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
footer .fcompanyBox .snsList li + li {
  padding-left: 0.68vw;
}
@media (max-width: 480px) {
  footer .fcompanyBox .snsList li + li {
    padding-left: 13px;
  }
}
footer nav {
  display: flex;
  margin: 0 0 0 10%;
  width: 57.7%;
  justify-content: space-between;
}
@media (max-width: 480px) {
  footer nav {
    display: none;
  }
}
footer nav > ul > li a {
  font-size: clamp(15.6px, 1.354vw, 26px);
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #fff !important;
}
footer nav > ul > li.privacyLink a {
  font-size: clamp(12px, 1.042vw, 20px);
  letter-spacing: 0;
}
footer nav > ul > li + li {
  margin-top: 1.5em;
}
footer nav > ul > li ul {
  margin: 20px 0 0 0;
  padding-left: 1em;
}
footer nav > ul > li ul li {
  padding: 0 0 0 10px;
  list-style: none;
  position: relative;
}
footer nav > ul > li ul li::before {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 0;
  width: 5px;
  height: 1px;
}
footer nav > ul > li ul li a {
  font-size: clamp(13.2px, 1.146vw, 22px);
  letter-spacing: 0;
  color: #fff !important;
}
footer nav > ul > li ul li + li {
  margin-top: 1em;
}
footer nav > ul:nth-of-type(1) {
  width: 37.5%;
}
footer nav > ul:nth-of-type(2) {
  width: 22%;
}
footer nav > ul:nth-of-type(3) {
  width: 24%;
}
@media (max-width: 1400px) {
  footer nav {
    margin-top: min(100px,5.208vw);
    margin-left: 0;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }
  footer nav > ul:nth-of-type(1) {
    width: fit-content;
  }
  footer nav > ul:nth-of-type(2) {
    width: fit-content;
    margin: 0 0 0 10%;
  }
  footer nav > ul:nth-of-type(3) {
    width: fit-content;
    margin: 0 0 0 10%;
  }
}
@media (max-width: 768px) {
  footer nav > ul {
    margin: 0 4% 40px 0;
    width: 48%;
  }
  footer nav > ul:nth-of-type(2n), footer nav > ul:last-of-type {
    margin-right: 0;
  }
}
footer #copyrightArea {
  margin-top: min(80px,4.167vw);
  width: 100%;
  position: relative;
  z-index: 99;
  padding-right: 4.17%;
  text-align: right;
  padding-bottom: 23px;
}
@media (max-width: 480px) {
  footer #copyrightArea {
    margin-top: 50px;
    padding-bottom: 20px;
    text-align: center;
    padding-right: 0;
  }
}
footer #copyrightArea .copy {
  font-size: clamp(10.8px, 0.938vw, 18px);
  letter-spacing: 0;
  color: #727272;
}
@media (max-width: 480px) {
  footer #copyrightArea .copy {
    font-size: 1.3rem;
  }
}

#back_to_top {
  margin: auto;
  width: 12px;
  height: 130px;
  position: fixed;
  right: 6.25vw;
  bottom: 30px;
  z-index: 999;
  transition: 0.3s ease;
  transform: translateY(170px);
}
#back_to_top a {
  color: #006c3b;
  width: 100%;
  height: 100%;
  display: block;
}
#back_to_top a .en {
  font-size: 1.2rem;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 0.1em;
  display: block;
}
#back_to_top a .anibar {
  margin: 10px auto 0 4px;
  width: 1px;
  height: 50px;
  background: #006c3b;
  display: block;
  transform-origin: top;
  animation: bar 3s cubic-bezier(1, 0, 0, 1) infinite;
}
#back_to_top.sc {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  #back_to_top {
    right: 20px;
  }
}
@media (max-width: 480px) {
  #back_to_top {
    width: 10px;
    height: 100px;
    right: 10px;
  }
  #back_to_top a .en {
    font-size: 1rem;
  }
  #back_to_top a .anibar {
    height: 30px;
  }
}

@keyframes bar {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  30% {
    transform: scale(1, 1);
  }
  30.1%, 90% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
  }
}
/*============================================================================
	common parts
=============================================================================*/
p.cTtlWrap {
  position: relative;
  width: fit-content;
}
@media (max-width: 480px) {
  p.cTtlWrap {
    display: flex;
  }
}
p.cTtlWrap span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
p.cTtlWrap span.sub {
  font-size: clamp(10.8px, 0.938vw, 18px);
  color: #fff;
  background: #DB3535;
  letter-spacing: 0;
  display: block;
  position: absolute;
  z-index: 3;
  top: -10%;
  right: -45%;
  padding: 20px 10px;
  line-height: 1.1111111111;
}
@media (max-width: 480px) {
  p.cTtlWrap span.sub {
    font-size: 1.2rem;
    position: relative;
    margin: -12px;
    height: fit-content;
    right: auto;
  }
}
p.cTtlWrap span.main {
  font-size: clamp(24px, 2.083vw, 40px);
  letter-spacing: 0.2em;
  font-weight: 600;
  background: #fff;
  border: 2px solid #212121;
  line-height: 1.25;
  padding: 20px 10px;
}
@media (max-width: 480px) {
  p.cTtlWrap span.main {
    font-size: 2.3rem;
  }
}

.moreBtn {
  width: 12.08vw;
  max-width: 232px;
}
@media (max-width: 480px) {
  .moreBtn {
    width: 100%;
    max-width: 150px;
  }
}
.moreBtn a span {
  font-size: clamp(12.6px, 1.094vw, 21px);
  letter-spacing: 0.2em;
  display: block;
}
@media (max-width: 480px) {
  .moreBtn a span {
    font-size: 1.6rem;
  }
}
.moreBtn a span img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a:hover span img {
  filter: invert(28%) sepia(49%) saturate(3099%) hue-rotate(343deg) brightness(94%) contrast(85%);
}

#breadcrumbs {
  margin-top: min(42px,2.188vw);
}
@media (max-width: 480px) {
  #breadcrumbs {
    margin-top: 40px;
  }
}
#breadcrumbs ol {
  margin: auto;
  width: 90%;
  max-width: 1280px;
}
#breadcrumbs ol li {
  color: #212121;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  #breadcrumbs ol li {
    font-size: 1rem;
  }
}
#breadcrumbs ol li:not(:last-of-type)::after {
  content: "＞";
  margin-left: 10px;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  #breadcrumbs ol li:not(:last-of-type)::after {
    font-size: 1rem;
  }
}
#breadcrumbs ol li + li {
  margin-left: 10px;
}
#breadcrumbs ol li a {
  color: #212121;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  #breadcrumbs ol li a {
    font-size: 1rem;
  }
}
#breadcrumbs ol li a:hover {
  opacity: 0.4;
}

.toggleBtn {
  width: 25px;
  height: 25px;
}
.toggleBtn span {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.toggleBtn span::before, .toggleBtn span::after {
  content: "";
  margin: auto;
  width: 100%;
  height: 4px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 480px) {
  .toggleBtn span::before, .toggleBtn span::after {
    height: 3px;
  }
}
.toggleBtn span::after {
  transform: rotate(90deg);
}
.toggleBtn.active span::before, .toggleBtn.active span::after {
  transform: rotate(180deg);
}

/* accordionBox */
.accordionBox {
  max-width: 1150px;
}
.accordionBox dl + dl {
  margin-top: 40px;
}
@media (max-width: 480px) {
  .accordionBox dl + dl {
    margin-top: 25px;
  }
}
.accordionBox dt.targetBtn {
  position: relative;
  background: #ECECEC;
  padding: 40px 6.52%;
  font-weight: 700;
  cursor: pointer;
}
.accordionBox dt.targetBtn p {
  font-size: 2.3rem;
}
@media (max-width: 480px) {
  .accordionBox dt.targetBtn p {
    font-size: 1.8rem;
  }
}
.accordionBox dt.targetBtn .toggleBtn {
  position: absolute;
  top: 50%;
  right: 4.35vw;
  transform: translateY(-50%);
}
.accordionBox dt.targetBtn .toggleBtn span::before, .accordionBox dt.targetBtn .toggleBtn span::after {
  background: #707070;
}
.accordionBox dt.targetBtn.active .toggleBtn span::before, .accordionBox dt.targetBtn.active .toggleBtn span::after {
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .accordionBox dt.targetBtn {
    padding: 20px 40px 20px 20px;
  }
  .accordionBox dt.targetBtn .toggleBtn {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}
.accordionBox dd.acdInner {
  display: none;
  padding: 5px 6.52% 40px;
  background: #ECECEC;
}
@media (max-width: 480px) {
  .accordionBox dd.acdInner {
    padding: 10px 20px 20px;
  }
}
.accordionBox dd.acdInner p {
  line-height: 2;
  max-width: 960px;
  color: #707070;
  font-weight: 700;
}
.accordionBox dd.acdInner .photoBox {
  margin-top: 30px;
  width: fit-content;
}
.accordionBox dd.acdInner .photoBox figure img {
  border-radius: 0;
  margin-bottom: 0;
}
.accordionBox dd.acdInner .photoBox figure + figure {
  margin-left: 20px;
}
@media (max-width: 480px) {
  .accordionBox dd.acdInner .photoBox figure + figure {
    margin-left: 0;
  }
}
.accordionBox dd.acdInner p.note {
  font-size: 1.4rem;
  margin-top: 15px;
}

#topContactArea {
  background: url("../img/common/contactBg.jpg") no-repeat center center/cover;
  padding: min(108px,5.625vw) 0;
}
@media (max-width: 480px) {
  #topContactArea {
    padding: 60px 0;
  }
}
#topContactArea .container .innerBox {
  align-items: center;
}
#topContactArea .container .innerBox p.ttl {
  font-size: clamp(60px, 5.208vw, 100px);
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  color: #fff;
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox p.ttl {
    writing-mode: horizontal-tb;
    font-size: 5rem;
  }
}
#topContactArea .container .innerBox p.ttl em {
  font-weight: 700;
  color: #DB3535;
  font-style: normal;
}
#topContactArea .container .innerBox .descBox {
  margin: 0 0 0 16.92%;
  width: 73.08%;
  position: relative;
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox .descBox {
    width: 100%;
    margin: 30px auto 0;
  }
}
#topContactArea .container .innerBox .descBox::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox .descBox::before {
    display: none;
  }
}
#topContactArea .container .innerBox .descBox .btnArea p {
  color: #fff;
  font-size: clamp(12.6px, 1.094vw, 21px);
  text-align: center;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .btnArea p {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn {
  background: #DB3535;
  margin-top: min(50px,2.604vw);
  max-width: 360px;
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox .descBox .btnArea .mailBtn {
    max-width: 197px;
    margin: 20px auto 0;
    height: 43px;
    line-height: 43px;
  }
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(15px,0.781vw) 0;
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox .descBox .btnArea .mailBtn a {
    padding: 0;
  }
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a i {
  width: 7.5%;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .btnArea .mailBtn a i {
    height: 15px;
    width: 15px;
  }
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a i figure {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a i figure::before {
  content: "";
  padding-top: 100%;
  width: 100%;
  display: block;
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a i figure source, #topContactArea .container .innerBox .descBox .btnArea .mailBtn a i figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#topContactArea .container .innerBox .descBox .btnArea .mailBtn a span {
  display: block;
  color: #fff;
  font-size: clamp(15.6px, 1.354vw, 26px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 0 5%;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .btnArea .mailBtn a span {
    font-size: 1.5rem;
  }
}
#topContactArea .container .innerBox .descBox .infoBox {
  color: #fff;
  margin: 0 0 0 28.95%;
  text-align: center;
}
@media (max-width: 1024px) {
  #topContactArea .container .innerBox .descBox .infoBox {
    margin: 50px 0 0 0;
    padding-top: 45px;
    border-top: 1px solid #fff;
  }
}
#topContactArea .container .innerBox .descBox .infoBox .textBox .text {
  font-size: clamp(12.6px, 1.094vw, 21px);
  letter-spacing: 0.01em;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .infoBox .textBox .text {
    font-size: 1.5rem;
  }
}
#topContactArea .container .innerBox .descBox .infoBox .textBox .time {
  font-size: clamp(10.8px, 0.938vw, 18px);
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .infoBox .textBox .time {
    font-size: 1.3rem;
  }
}
#topContactArea .container .innerBox .descBox .infoBox p.number {
  margin-top: min(20px,1.042vw);
  font-size: clamp(24px, 2.083vw, 40px);
  letter-spacing: 0.1em;
  font-weight: 500;
}
#topContactArea .container .innerBox .descBox .infoBox p.number a {
  color: #fff;
}
@media (max-width: 480px) {
  #topContactArea .container .innerBox .descBox .infoBox p.number {
    font-size: 3.1rem;
    margin-top: 20px;
  }
}

/*============================================================================
	404
=============================================================================*/
#notfoundWrap {
  margin: min(120px,6.25vw) auto;
}
#notfoundWrap h3 {
  margin-bottom: min(40px,2.083vw);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
#notfoundWrap p {
  text-align: center;
}
#notfoundWrap .moreBtn {
  margin: min(80px,4.167vw) auto 0;
}

/*============================================================================
	regulation
=============================================================================*/
/*============================================================================
	調整用
=============================================================================*/
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.fl-tab {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1024px) {
  .fl-tab {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

.fl-smp {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 480px) {
  .fl-smp {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

.fl-jst {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-cen {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fl-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mt0 {
  margin-top: min(0vw,0px);
}

.mb0 {
  margin-bottom: min(0vw,0px);
}

.pt0 {
  padding-top: min(0vw,0px);
}

.pb0 {
  padding-bottom: min(0vw,0px);
}

.mt40 {
  margin-top: min(3vw,40px);
}

.mb40 {
  margin-bottom: min(3vw,40px);
}

.pt40 {
  padding-top: min(3vw,40px);
}

.pb40 {
  padding-bottom: min(3vw,40px);
}

.mt80 {
  margin-top: min(6vw,80px);
}

.mb80 {
  margin-bottom: min(6vw,80px);
}

.pt80 {
  padding-top: min(6vw,80px);
}

.pb80 {
  padding-bottom: min(6vw,80px);
}

.mt120 {
  margin-top: min(9vw,120px);
}

.mb120 {
  margin-bottom: min(9vw,120px);
}

.pt120 {
  padding-top: min(9vw,120px);
}

.pb120 {
  padding-bottom: min(9vw,120px);
}

.mt160 {
  margin-top: min(12vw,160px);
}

.mb160 {
  margin-bottom: min(12vw,160px);
}

.pt160 {
  padding-top: min(12vw,160px);
}

.pb160 {
  padding-bottom: min(12vw,160px);
}

.mt200 {
  margin-top: min(15vw,200px);
}

.mb200 {
  margin-bottom: min(15vw,200px);
}

.pt200 {
  padding-top: min(15vw,200px);
}

.pb200 {
  padding-bottom: min(15vw,200px);
}

.mt240 {
  margin-top: min(18vw,240px);
}

.mb240 {
  margin-bottom: min(18vw,240px);
}

.pt240 {
  padding-top: min(18vw,240px);
}

.pb240 {
  padding-bottom: min(18vw,240px);
}

.mt280 {
  margin-top: min(21vw,280px);
}

.mb280 {
  margin-bottom: min(21vw,280px);
}

.pt280 {
  padding-top: min(21vw,280px);
}

.pb280 {
  padding-bottom: min(21vw,280px);
}

.mt320 {
  margin-top: min(24vw,320px);
}

.mb320 {
  margin-bottom: min(24vw,320px);
}

.pt320 {
  padding-top: min(24vw,320px);
}

.pb320 {
  padding-bottom: min(24vw,320px);
}

.mt360 {
  margin-top: min(27vw,360px);
}

.mb360 {
  margin-bottom: min(27vw,360px);
}

.pt360 {
  padding-top: min(27vw,360px);
}

.pb360 {
  padding-bottom: min(27vw,360px);
}

.mt400 {
  margin-top: min(30vw,400px);
}

.mb400 {
  margin-bottom: min(30vw,400px);
}

.pt400 {
  padding-top: min(30vw,400px);
}

.pb400 {
  padding-bottom: min(30vw,400px);
}

br {
  display: inline;
}
@media (min-width: calc(1200px + 1px)) {
  br.showPC {
    display: none !important;
  }
}
@media (min-width: calc(1024px + 1px)) {
  br.showTab {
    display: none !important;
  }
}
@media (min-width: calc(480px + 1px)) {
  br.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  br.hdnPC {
    display: none;
  }
  br.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  br.hdnTab {
    display: none;
  }
  br.showTab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  br.hdnSP {
    display: none;
  }
  br.showSP {
    display: inherit;
  }
}

span {
  display: inline-block;
}
@media (min-width: calc(1200px + 1px)) {
  span.showPC {
    display: none !important;
  }
}
@media (min-width: calc(1024px + 1px)) {
  span.showTab {
    display: none !important;
  }
}
@media (min-width: calc(480px + 1px)) {
  span.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  span.hdnPC {
    display: none !important;
  }
  span.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  span.hdnTab {
    display: none !important;
  }
  span.showTab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  span.hdnSP {
    display: none !important;
  }
  span.showSP {
    display: inherit;
  }
}

p, div, figure, ul {
  display: block;
}
@media (min-width: calc(1200px + 1px)) {
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: none !important;
  }
}
@media (min-width: calc(1024px + 1px)) {
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: none !important;
  }
}
@media (min-width: calc(480px + 1px)) {
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  p.hdnPC, div.hdnPC, figure.hdnPC, ul.hdnPC {
    display: none !important;
  }
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  p.hdnTab, div.hdnTab, figure.hdnTab, ul.hdnTab {
    display: none !important;
  }
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  p.hdnSP, div.hdnSP, figure.hdnSP, ul.hdnSP {
    display: none !important;
  }
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: inherit;
  }
}

li {
  display: list-item;
}
@media (min-width: calc(1200px + 1px)) {
  li.showPC {
    display: none !important;
  }
}
@media (min-width: calc(1024px + 1px)) {
  li.showTab {
    display: none !important;
  }
}
@media (min-width: calc(480px + 1px)) {
  li.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  li.hdnPC {
    display: none !important;
  }
  li.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  li.hdnTab {
    display: none !important;
  }
  li.showTab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  li.hdnSP {
    display: none !important;
  }
  li.showSP {
    display: inherit;
  }
}

.ta_cnt {
  text-align: center;
}

.ta_right {
  text-align: right;
}

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

/*============================================================================
	animation
=============================================================================*/
/* scroll */
.fade {
  opacity: 0;
  transition: all 0.8s;
}
.fade.active {
  opacity: 1;
}

.upfade {
  transform: translate(0, 50px);
  opacity: 0;
  transition: all 0.8s;
}
.upfade.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.downfade {
  transform: translate(0, -50px);
  opacity: 0;
  transition: all 0.8s;
}
.downfade.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.sclinWrap {
  overflow: hidden !important;
}

.sclin_right {
  transform: translate(50px, 0);
  opacity: 0;
  transition: all 0.8s;
}
.sclin_right.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.sclin_left {
  transform: translate(-50px, 0);
  opacity: 0;
  transition: all 0.8s;
}
.sclin_left.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.listfade li {
  transform: translate(0, 50px);
  opacity: 0.1;
  transition: all 1s;
}
.listfade li.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.maskBlockBl {
  overflow: hidden;
  position: relative;
}

.maskBlockBl::after {
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  background: #55C0CC;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(var(--blockScale));
  z-index: 10;
}

.maskBlockYe {
  overflow: hidden;
  position: relative;
}

.maskBlockYe::after {
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  background: #FED200;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(var(--blockScale));
  z-index: 10;
}

.maskDoor {
  position: relative;
}

.maskDoor::before, .maskDoor::after {
  content: "";
  margin: auto;
  width: 51%;
  height: 100%;
  background: #FFFFFF;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: scale(var(--myScale), 1);
  z-index: 10;
}

.maskDoor::before {
  left: 0;
  right: auto;
  transform-origin: left;
}

.maskDoor::after {
  left: auto;
  right: 0;
  transform-origin: right;
}

.maskDoorBl {
  position: relative;
}

.maskDoorBl::before, .maskDoorBl::after {
  content: "";
  margin: auto;
  width: 51%;
  height: 100%;
  background: #55C0CC;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: scale(var(--myScale), 1);
  z-index: 10;
}

.maskDoorBl::before {
  left: 0;
  right: auto;
  transform-origin: left;
}

.maskDoorBl::after {
  left: auto;
  right: 0;
  transform-origin: right;
}

.maskDoorYe {
  position: relative;
}

.maskDoorYe::before, .maskDoorYe::after {
  content: "";
  margin: auto;
  width: 51%;
  height: 100%;
  background: #FED200;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: scale(var(--myScale), 1);
  z-index: 10;
}

.maskDoorYe::before {
  left: 0;
  right: auto;
  transform-origin: left;
}

.maskDoorYe::after {
  left: auto;
  right: 0;
  transform-origin: right;
}