@charset "UTF-8";
@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
.zoom-wrapper {
  --_min-viewport-width: 480px; /* viewportの最小値を下回ったら縮小をやめる */
  --_max-viewport-width: 1350px; /* 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) {
  .zoom-wrapper {
    zoom: 1;
  }
}

@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Thin.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 350;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-DemiLight.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/NotoSansCJKjp-Black.otf") format("opentype");
}
/*! kiso.css v1.2.2 | 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.
  * @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;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --shape-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --shape-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --shape-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --shape-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --shape-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --shape-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --shape-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --shape-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  --header-block-size: 0px;
  --scroll-margin: var(--header-block-size);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
/* ハーフ・レディングを打ち消すユーティリティ */
.leading-trim::before, .leading-trim::after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim::before {
  margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  margin-block-start: var(--leading-trim);
}

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

html {
  font-family: "Noto Sans CJK JP", "din 2014", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 62.5%;
  color: #121212;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
  background: #fff;
  overflow-x: hidden;
  position: relative;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
body:after {
  content: "";
  width: 100vw;
  height: 100svh;
  background: rgba(33, 33, 33, 0.8);
  mix-blend-mode: multiply;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
body.fixed:after {
  z-index: 99;
  opacity: 1;
  visibility: visible;
}
@media (width < 390px) {
  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: #121212;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a:hover img, a:link:hover img, a:visited:hover img {
  opacity: 0.6;
}

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

.container {
  margin: auto;
  max-width: 1100px;
  width: 87.5%;
  height: auto;
}
.container .inner {
  width: 90%;
}

.inner {
  margin: auto;
  max-width: 920px;
  width: 85%;
  height: auto;
}

@media (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#notfoundWrap {
  margin: clamp(72px, 12.4995vw, 120px) auto 0;
  text-align: center;
}
#notfoundWrap p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/*============================================================================
	header
=============================================================================*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 9999;
}
header #headerBox {
  height: 127px;
}
@media (max-width: 480px) {
  header #headerBox {
    height: 80px;
  }
}
header #headerBox .hlogoBox {
  display: flex;
  align-items: center;
  margin-left: clamp(46.2px, 8.0205vw, 77px);
}
header #headerBox .hlogoBox #hlogo a {
  display: block;
  width: 182px;
  height: 100px;
}
@media (max-width: 480px) {
  header #headerBox .hlogoBox {
    margin-left: 12px;
    gap: 6px;
  }
  header #headerBox .hlogoBox #hlogo a {
    width: 112px;
    height: 58px;
  }
  header #headerBox .hlogoBox p.hread {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
header #headerBox .reserveBtn {
  margin: 0 clamp(48px, 8.334vw, 80px) 0 auto;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 480px) {
  header #headerBox .reserveBtn {
    margin: 0 12px 0 auto;
  }
}
header #headerBox .reserveBtn a {
  background: #ff7f02;
  border-radius: 0 0 20px 20px;
  width: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
header #headerBox .reserveBtn a i {
  width: 35px;
  height: 32px;
}
header #headerBox .reserveBtn a i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header #headerBox .reserveBtn a span {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 35px;
  color: #fff;
}
@media (max-width: 480px) {
  header #headerBox .reserveBtn a {
    width: 140px;
    height: 50px;
    gap: 8px;
  }
  header #headerBox .reserveBtn a i {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
  }
  header #headerBox .reserveBtn a span {
    font-size: 1.6rem;
    line-height: 22px;
  }
}

/*============================================================================
	footer
=============================================================================*/
footer {
  position: relative;
}

footer nav {
  text-align: center;
}

footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer nav ul a {
  color: #fff;
}

footer nav ul li + li {
  border-top: 1px solid #b3b3b3;
}

footer nav a {
  display: block;
  padding: 0.7em 0;
  text-decoration: none;
  color: #fff;
}

footer nav a:hover {
  text-decoration: underline;
}

footer .footer_copyright_wrap {
  text-align: center;
}

footer .footer_copyright_wrap p {
  padding: 1em 0.3em;
}

@media (min-width: 768px) {
  footer .row:not(:last-child) {
    margin-bottom: 5px;
  }
  footer nav {
    text-align: center;
    padding: 0.7em 0 0;
  }
  footer nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0px;
    font-size: 0rem;
    white-space: normal;
  }
  footer nav ul > li {
    display: inline;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
    font-size: 14px;
    font-size: 1.4rem;
  }
  footer nav ul li {
    line-height: 1.5;
    white-space: normal;
  }
  footer nav ul li + li {
    border: 0;
  }
  footer nav a {
    display: inline;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer nav ul li.tablet-break:after {
    content: "\a";
    white-space: pre;
  }
  footer nav ul li.tablet-break + li:before {
    display: none;
  }
}
/*
 * フッターパターンA(footer pattern A)
 */
footer {
  background: #002f68;
  color: #fff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer .container .row nav a {
  color: #fff;
}

@media (min-width: 768px) {
  footer .container .row .col {
    float: none;
    width: 100%;
  }
  footer .container .row nav ul {
    display: inline-block;
  }
  footer .container .row nav a {
    display: inline-block;
    padding: 0.3em;
    color: #fff;
  }
}
@media (min-width: 768px) {
  footer {
    padding: 70px 0 60px;
  }
  footer nav a {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  footer .footer_copyright_wrap p {
    padding: 50px 0 0;
    font-size: 11px;
    font-size: 1.1rem;
    opacity: 0.6;
  }
}
.pagetop {
  position: fixed;
  bottom: 2.5%;
  right: 2.5%;
  z-index: 100;
}

.pagetop a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 164, 219, 0.9);
}

@media (min-width: 768px) {
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
  transform: translate(-50%, -20%) rotate(45deg);
  transition: 0.2s;
}

@media (max-width: 767px) {
  .sp-hide, .pc-only, .tablet-only {
    display: none !important;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-left {
    text-align: left;
  }
  .sp-text-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .lead {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .text-xxlarge {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .text-xlarge {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .text-large {
    font-size: 20px;
    font-size: 2rem;
  }
  .text-small {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .text-xsmall {
    font-size: 10px;
    font-size: 1rem;
  }
  .pc-hide, .sp-only {
    display: none !important;
  }
  .pc-text-center {
    text-align: center;
  }
  .pc-text-left {
    text-align: left;
  }
  .pc-text-right {
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .tablet-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-hide02, .pc-only02, .tablet-only02 {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .pc-hide02, .sp-only02 {
    display: none !important;
  }
}
@media (max-width: 639px) {
  .sp-hide03, .pc-only03, .tablet-only03 {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .pc-hide03, .sp-only03 {
    display: none !important;
  }
}
/*============================================================================
	animation
=============================================================================*/
.maskText {
  overflow: hidden;
  position: relative;
}
.maskText::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #1a2868;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(var(--maskText));
}

.slipin {
  overflow: hidden;
}
.slipin span {
  transform: translate(0, 100px);
  transform-origin: top;
  transition: all 0.3s ease-out;
}
.slipin span[data-status=active] {
  transform: translate(0, 0);
}

.maskDoor {
  overflow: hidden;
  position: relative;
}
.maskDoor::before, .maskDoor::after {
  content: "";
  margin: auto;
  width: 51%;
  height: 100%;
  background: #ff7f02;
  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;
}

.maskBlock {
  overflow: hidden;
  position: relative;
}
.maskBlock::after {
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  background: #ff7f02;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(var(--blockScale));
  z-index: 10;
}
.maskBlock.fromR::after {
  transform-origin: right;
}

/*============================================================================
	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-sp {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 480px) {
  .fl-sp {
    -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);
}

.mt10 {
  margin-top: min(3vw,10px);
}

.mb10 {
  margin-bottom: min(3vw,10px);
}

.pt10 {
  padding-top: min(3vw,10px);
}

.pb10 {
  padding-bottom: min(3vw,10px);
}

.mt20 {
  margin-top: min(6vw,20px);
}

.mb20 {
  margin-bottom: min(6vw,20px);
}

.pt20 {
  padding-top: min(6vw,20px);
}

.pb20 {
  padding-bottom: min(6vw,20px);
}

.mt30 {
  margin-top: min(9vw,30px);
}

.mb30 {
  margin-bottom: min(9vw,30px);
}

.pt30 {
  padding-top: min(9vw,30px);
}

.pb30 {
  padding-bottom: min(9vw,30px);
}

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

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

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

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

.mt50 {
  margin-top: min(15vw,50px);
}

.mb50 {
  margin-bottom: min(15vw,50px);
}

.pt50 {
  padding-top: min(15vw,50px);
}

.pb50 {
  padding-bottom: min(15vw,50px);
}

.mt60 {
  margin-top: min(18vw,60px);
}

.mb60 {
  margin-bottom: min(18vw,60px);
}

.pt60 {
  padding-top: min(18vw,60px);
}

.pb60 {
  padding-bottom: min(18vw,60px);
}

.mt70 {
  margin-top: min(21vw,70px);
}

.mb70 {
  margin-bottom: min(21vw,70px);
}

.pt70 {
  padding-top: min(21vw,70px);
}

.pb70 {
  padding-bottom: min(21vw,70px);
}

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

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

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

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

.mt90 {
  margin-top: min(27vw,90px);
}

.mb90 {
  margin-bottom: min(27vw,90px);
}

.pt90 {
  padding-top: min(27vw,90px);
}

.pb90 {
  padding-bottom: min(27vw,90px);
}

.mt100 {
  margin-top: min(30vw,100px);
}

.mb100 {
  margin-bottom: min(30vw,100px);
}

.pt100 {
  padding-top: min(30vw,100px);
}

.pb100 {
  padding-bottom: min(30vw,100px);
}

.mt110 {
  margin-top: min(33vw,110px);
}

.mb110 {
  margin-bottom: min(33vw,110px);
}

.pt110 {
  padding-top: min(33vw,110px);
}

.pb110 {
  padding-bottom: min(33vw,110px);
}

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

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

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

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

.mt130 {
  margin-top: min(39vw,130px);
}

.mb130 {
  margin-bottom: min(39vw,130px);
}

.pt130 {
  padding-top: min(39vw,130px);
}

.pb130 {
  padding-bottom: min(39vw,130px);
}

.mt140 {
  margin-top: min(42vw,140px);
}

.mb140 {
  margin-bottom: min(42vw,140px);
}

.pt140 {
  padding-top: min(42vw,140px);
}

.pb140 {
  padding-bottom: min(42vw,140px);
}

br {
  display: inline;
}
@media (min-width: 1301px) {
  br.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  br.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  br.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  br.showSP {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  br.hdn1100 {
    display: none;
  }
  br.show1100 {
    display: inherit;
  }
}
@media (max-width: 1300px) {
  br.hdnPC {
    display: none;
  }
  br.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  br.hdnTab {
    display: none;
  }
  br.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  br.hdnStab {
    display: none;
  }
  br.showStab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  br.hdnSP {
    display: none;
  }
  br.showSP {
    display: inherit;
  }
}

span {
  display: inline-block;
}
@media (min-width: 1301px) {
  span.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  span.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  span.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  span.showSP {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  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: 820px) {
  span.hdnStab {
    display: none !important;
  }
  span.showStab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  span.hdnSP {
    display: none !important;
  }
  span.showSP {
    display: inherit;
  }
}

p, div, figure, ul {
  display: block;
}
@media (min-width: 1301px) {
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  p.showStab, div.showStab, figure.showStab, ul.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  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: 820px) {
  p.hdnStab, div.hdnStab, figure.hdnStab, ul.hdnStab {
    display: none !important;
  }
  p.showStab, div.showStab, figure.showStab, ul.showStab {
    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: 1301px) {
  li.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  li.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  li.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  li.showSP {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  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: 820px) {
  li.hdnStab {
    display: none !important;
  }
  li.showStab {
    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;
}