@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: "URW DIN Semi Condensed";
  src: url("../font/Demi/URWDINSemiCond-Demi.woff") format("woff"), url("../font/Demi/URWDINSemiCond-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "URW DIN Semi Condensed";
  src: url("../font/Medium/URWDINSemiCond-Medium.woff") format("woff"), url("../font/Medium/URWDINSemiCond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*! 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);
}

/*============================================================================
	contentsArea
=============================================================================*/
div#main-column > img {
  display: none;
}

#main-column {
  box-sizing: border-box;
  float: unset;
  width: 100%;
  margin: 0;
}
@media (max-width: 480px) {
  #main-column {
    padding: 0;
  }
}

#main-column h2 {
  border: none;
  padding: 0;
}

#sub-column {
  display: none !important;
  float: none;
  width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  #sub-column {
    position: relative;
    right: 0;
    padding: 0;
    background-color: unset;
  }
  #sub-column h2 {
    background-color: unset;
  }
  #sub-column div.subc_cal_cont {
    margin: 0;
  }
}
#subc_calendar {
  max-width: 500px;
  width: 90% !important;
  margin: 0 auto min(80px, 11.112vw) !important;
}

#subc_calendar .cap-info {
  background-color: unset;
}

@media (max-width: 1024px) {
  #subc_calendar {
    width: 90%;
  }
}
#contents #main-column .footer_area .cont {
  display: none !important;
}

#bread-crumb {
  display: none;
}

article h2 {
  border: none;
}

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

#Journal h1 {
  display: none !important;
}
#Journal > article > h2 > a {
  display: none !important;
}
#Journal > article > .state_r {
  display: none !important;
}

html {
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 62.5%;
  color: #000000;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
  background: #FFFFFF;
  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-color: #333333;
  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 {
  position: fixed;
  width: 100%;
}
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: #000000;
  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: 1360px;
  width: 94%;
  height: auto;
}
.container .inner {
  width: 90%;
}

.inner {
  margin: auto;
  max-width: 1216px;
  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;
}

.cContactArea {
  padding: clamp(75px, 13.0215vw, 125px) 0;
  position: relative;
  z-index: 3;
}
.cContactArea .parts {
  position: absolute;
  top: 5.5555555556vw;
  left: auto;
  right: 5.5555555556vw;
  width: 22.64%;
}
@media (max-width: 820px) {
  .cContactArea .parts {
    top: auto;
    right: 10px;
    bottom: -60px;
  }
}
.cContactArea .parts figure {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.cContactArea .parts figure::before {
  content: "";
  padding-top: 191.72%;
  display: block;
}
.cContactArea .parts figure img, .cContactArea .parts figure source {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.cContactArea h2 {
  margin-bottom: 30px;
}
.cContactArea h2 span {
  font-size: clamp(16px, 3vw, 35px);
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: inline-block;
  position: relative;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  -webkit-text-decoration: underline;
  -webkit-text-underline-offset: 3px;
  -webkit-text-decoration-thickness: 1px;
}
@media (max-width: 480px) {
  .cContactArea h2 span {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.cContactArea p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  max-width: 618px;
}
@media (max-width: 480px) {
  .cContactArea p {
    line-height: 1.7;
  }
}

#commonFlowArea {
  margin: clamp(64px, 13.3332vw, 160px) 0 0;
}
#commonFlowArea h2.mainTtl {
  text-align: center;
  color: #000000;
  margin-bottom: clamp(36px, 6.2505vw, 60px);
}
#commonFlowArea .flowList ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1124px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul {
    max-width: 800px;
    gap: 4%;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .flowList ul {
    gap: 40px;
  }
}
#commonFlowArea .flowList ul li {
  display: block grid;
  place-items: center;
}
#commonFlowArea .flowList ul li .imgBox {
  position: relative;
  background: #fff;
  border-radius: 50%;
  display: block grid;
  place-items: center;
  width: 200px;
  aspect-ratio: 1/1;
  border: 3px solid #000000;
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul li .imgBox {
    width: 140px;
  }
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul li .imgBox figure {
    width: 60px;
  }
}
#commonFlowArea .flowList ul li p.ttl {
  text-align: center;
  margin-top: clamp(24px, 4.167vw, 40px);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul li p.ttl {
    white-space: normal;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .flowList ul li p.ttl {
    line-height: 1.5;
  }
}
#commonFlowArea .flowList ul li p.ttl span {
  display: block;
  font-size: clamp(14px, 2vw, 16px);
}
@media (max-width: 480px) {
  #commonFlowArea .flowList ul li p.ttl span {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
#commonFlowArea .flowList ul li:not(:last-child) {
  position: relative;
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox {
  position: relative;
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle {
  position: absolute;
  top: 50%;
  right: -25%;
  display: block;
  width: 10px;
  height: 10px;
  background: #000000;
  border-top-left-radius: 30%;
  transform: rotate(0deg) skewY(30deg) scaleX(0.86666) translate(0, -50%);
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle {
    right: -30%;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle {
    right: -25px;
  }
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle::before, #commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle::after {
  width: 10px;
  height: 10px;
  background: #000000;
  content: "";
  position: absolute;
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle::before {
  border-top-right-radius: 30%;
  transform: skewX(-45deg) translateX(50%);
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox i.triangle::after {
  border-bottom-left-radius: 30%;
  transform: skewY(-45deg) translateY(50%);
}
#commonFlowArea .flowList ul li:not(:last-child) .imgBox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  width: 23px;
  height: 21px;
  translate: 0 -50%;
  background: url("../img/common/icon_arrow.svg") no-repeat center center/contain;
}
@media (max-width: 1024px) {
  #commonFlowArea .flowList ul li:not(:last-child) .imgBox::after {
    right: -40%;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .flowList ul li:not(:last-child) .imgBox::after {
    right: -35px;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .flowList.horizontal {
    overflow-x: scroll;
    padding: 10px 20px;
    margin: 0 5%;
  }
  #commonFlowArea .flowList.horizontal::-webkit-scrollbar {
    width: 10px; /* スクロールバーの幅 */
    height: 10px; /* スクロールバーの高さ */
  }
  #commonFlowArea .flowList.horizontal::-webkit-scrollbar-track {
    background: #f1f1f1; /* スクロールバーの背景色 */
    border-radius: 5px; /* 角丸にする */
  }
  #commonFlowArea .flowList.horizontal::-webkit-scrollbar-thumb {
    background: #888; /* スクロールバーの操作部分の背景色 */
    border-radius: 5px; /* 角丸にする */
  }
  #commonFlowArea .flowList.horizontal::-webkit-scrollbar-thumb:hover {
    background: #555; /* ホバー時のスクロールバーの操作部分の背景色 */
  }
  #commonFlowArea .flowList.horizontal .horizontalInner ul {
    display: block grid;
    grid-auto-flow: column;
  }
}
#commonFlowArea .btnBox {
  margin: clamp(54px, 9.375vw, 90px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  #commonFlowArea .btnBox {
    gap: 4%;
  }
}
@media (max-width: 480px) {
  #commonFlowArea .btnBox {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
}

#commonWorksArea {
  margin: clamp(80px, 16.6668vw, 200px) 0 0;
}
#commonWorksArea h2.mainTtl {
  text-align: center;
  color: #000000;
  margin-bottom: clamp(36px, 6.2505vw, 60px);
}
#commonWorksArea .worksList ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1124px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  #commonWorksArea .worksList ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 30px;
    justify-content: center;
  }
}
#commonWorksArea .worksList ul li a {
  display: block;
  width: 100%;
}
#commonWorksArea .worksList ul li a .imgBox {
  width: 100%;
  height: 100%;
}
#commonWorksArea .worksList ul li a .imgBox figure {
  aspect-ratio: 376/300;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid #000000;
  display: block;
  width: 100%;
  height: 100%;
}
#commonWorksArea .worksList ul li a .imgBox figure :where(img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#commonWorksArea .worksList ul li a .txtBox {
  margin-top: clamp(16.8px, 2.916vw, 28px);
}
#commonWorksArea .worksList ul li a .txtBox p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 480px) {
  #commonWorksArea .worksList ul li a .txtBox p {
    line-height: 1.5;
  }
}
#commonWorksArea .worksList ul li a:hover .imgBox figure {
  border-color: #2680EB;
}
#commonWorksArea .worksList ul li a:hover .txtBox p {
  color: #2680EB;
}
#commonWorksArea .moreBtn {
  margin: clamp(36px, 6.2505vw, 60px) auto 0;
}

#notfoundWrap {
  margin: clamp(96px, 20.0004vw, 240px) auto 0;
  text-align: center;
}
#notfoundWrap p {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
#notfoundWrap p.moreBtn {
  margin: clamp(36px, 6.2505vw, 60px) auto 0;
}

#contents article #main-column #shopGuide_wrap {
  max-width: 1100px;
  margin: clamp(72px, 12.4995vw, 120px) auto 0;
  width: 90%;
}
#contents article #main-column #shopGuide_wrap section #guide p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #000000;
}
#contents article #main-column #shopGuide_wrap section #guide h1 {
  border: none;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: clamp(36px, 6.2505vw, 60px);
  padding: 0;
  color: #000000;
}
#contents article #main-column #shopGuide_wrap section #guide section.chart h2.ttlShop {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: clamp(12px, 2.0835vw, 20px);
  color: #000000;
}
#contents article #main-column #shopGuide_wrap section #guide section.chart table th {
  font-size: clamp(14px, 2vw, 18px);
  color: #000000;
  line-height: 1.7;
}
#contents article #main-column #shopGuide_wrap section #guide section.chart table td {
  font-size: clamp(14px, 2vw, 18px);
  color: #000000;
  line-height: 1.7;
}

#contact .mainCont table td {
  font-size: 1.6rem !important;
}

ul.option_style li {
  font-size: 1.4rem !important;
}

dialog {
  background: #fff;
  border: none;
  z-index: 100;
  transition: opacity 1s, translate 1s;
}
dialog[open] {
  opacity: 1;
  translate: 0 0;
}
@starting-style {
  dialog[open] {
    opacity: 0;
    translate: 0 20px;
  }
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
dialog .dialog-inner {
  position: relative;
}
dialog .dialog-inner .modalClose {
  margin: auto;
  width: 40px;
  height: 40px;
  background: #000000;
  display: block;
  border-radius: 50%;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: absolute;
  top: max(-25px,-3.472vw);
  right: max(-15px,-2.084vw);
}
dialog .dialog-inner .modalClose span {
  margin: auto;
  width: 20px;
  display: block;
  position: relative;
}
dialog .dialog-inner .modalClose span::before, dialog .dialog-inner .modalClose span::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 4px;
  -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;
}
dialog .dialog-inner .modalClose span::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
dialog .dialog-inner .modalClose span::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*============================================================================
	電話問い合わせ
=============================================================================*/
dialog.phoneBox {
  padding: clamp(24px, 4.167vw, 40px) clamp(18px, 3.1245vw, 30px);
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}
dialog.phoneBox .dialog-inner h2 {
  margin: 0 auto 10px;
  font-size: clamp(14px, 2vw, 20px);
  text-align: center;
}
dialog.phoneBox .dialog-inner .phone a {
  padding: clamp(12px, 2.0835vw, 20px) 10px;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: #2680EB;
}
dialog.phoneBox .dialog-inner .phone a .telno {
  margin-left: 12px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
dialog.phoneBox .dialog-inner .phone a .telno::before {
  content: "";
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_tel.svg") no-repeat center center/contain;
  display: block;
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(144deg) brightness(103%) contrast(101%);
}
dialog.phoneBox .dialog-inner .phone + .phone {
  margin-top: 20px;
}

/*============================================================================
	header
=============================================================================*/
/*============================================================================
	drawer menuBtn
=============================================================================*/
.menuBtn {
  margin: 0 0 0 auto;
  padding: 15px 10px;
  width: 70px;
  height: 70px;
  text-align: center;
  background: none;
  display: block;
  outline: 0;
  border: none;
  border-radius: 0;
  border: 3px solid #000000;
  border-radius: 50%;
  position: relative;
  z-index: 9999;
  -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;
}
.menuBtn .drawer-hamburger-icon {
  margin: auto;
  width: 100%;
  height: 2px;
  -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: relative;
  display: block;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  content: "";
  width: 100%;
  height: 2px;
  -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);
  border-radius: 12px;
  background: #000000;
  width: 23px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before {
  top: -5px;
}
.menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  top: 5px;
}
.menuBtn.close-btn {
  border: 3px solid #fff;
}
.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 {
  top: 0;
  background: #fff;
}
.menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:before {
  rotate: 45deg;
  translate: -50% 0;
}
.menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:after {
  rotate: -45deg;
  translate: -50% 0;
}
.menuBtn.cross .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn.cross .drawer-hamburger-icon.drawer-hamburger-icon:after {
  background: #fff;
}
@media (max-width: 1024px) {
  .menuBtn {
    width: 50px;
    height: 50px;
    padding: 10px 5px;
  }
  .menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn .drawer-hamburger-icon.drawer-hamburger-icon:after {
    width: 16px;
  }
  .menuBtn.close-btn {
    border: 2px solid #fff;
  }
  .menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:before, .menuBtn.close-btn .drawer-hamburger-icon.drawer-hamburger-icon:after {
    background: #fff;
  }
}

header, #cart-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header #headerBox, #cart-header #headerBox {
  padding: 16px 40px;
}
@media (max-width: 480px) {
  header #headerBox, #cart-header #headerBox {
    padding: 12px 20px;
  }
}
header #headerBox .hlogoBox, #cart-header #headerBox .hlogoBox {
  display: flex;
  align-items: center;
  gap: clamp(48px, 8.334vw, 80px);
}
header #headerBox .hlogoBox #hlogo a, #cart-header #headerBox .hlogoBox #hlogo a {
  display: block;
  width: 167px;
  height: 42px;
}
header #headerBox .hlogoBox p, #cart-header #headerBox .hlogoBox p {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  header #headerBox .hlogoBox #hlogo a, #cart-header #headerBox .hlogoBox #hlogo a {
    width: 120px;
    height: 32px;
  }
  header #headerBox .hlogoBox p, #cart-header #headerBox .hlogoBox p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  header #headerBox .hlogoBox #hlogo a, #cart-header #headerBox .hlogoBox #hlogo a {
    width: 100px;
    height: 26px;
  }
  header #headerBox .hlogoBox p, #cart-header #headerBox .hlogoBox p {
    display: none;
  }
}
header #headerBox #gnaviWrap, #cart-header #headerBox #gnaviWrap {
  margin: 0;
  padding: clamp(64px, 13.3332vw, 160px) 100px clamp(60px, 10.416vw, 100px) 50px;
  width: fit-content;
  height: auto;
  background: #2680EB;
  border-radius: 0 0 0 20px;
  position: fixed;
  top: 0;
  right: -100vw;
  -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);
}
header #headerBox #gnaviWrap.open, #cart-header #headerBox #gnaviWrap.open {
  right: 0;
  display: block;
  z-index: 15;
}
header #headerBox #gnaviWrap > ul.mainNav > li > a, #cart-header #headerBox #gnaviWrap > ul.mainNav > li > a {
  color: #fff;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
}
header #headerBox #gnaviWrap > ul.mainNav > li + li, #cart-header #headerBox #gnaviWrap > ul.mainNav > li + li {
  margin-top: 1em;
}
header #headerBox #gnaviWrap > ul.subNav, #cart-header #headerBox #gnaviWrap > ul.subNav {
  margin-top: 40px;
}
header #headerBox #gnaviWrap > ul.subNav > li > a, #cart-header #headerBox #gnaviWrap > ul.subNav > li > a {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
header #headerBox #gnaviWrap > ul.subNav > li + li, #cart-header #headerBox #gnaviWrap > ul.subNav > li + li {
  margin-top: 0.5em;
}
@media (max-width: 480px) {
  header #headerBox #gnaviWrap, #cart-header #headerBox #gnaviWrap {
    padding-top: 80px;
  }
  header #headerBox #gnaviWrap > ul, #cart-header #headerBox #gnaviWrap > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header #headerBox #gnaviWrap > ul > li, #cart-header #headerBox #gnaviWrap > ul > li {
    width: 100%;
  }
  header #headerBox #gnaviWrap > ul > li.parent, #cart-header #headerBox #gnaviWrap > ul > li.parent {
    width: 100%;
  }
}
header #headerBox .hbtnBox, #cart-header #headerBox .hbtnBox {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
header #headerBox .hbtnBox .mypageBtn, #cart-header #headerBox .hbtnBox .mypageBtn {
  position: relative;
  z-index: 9998;
}
header #headerBox .hbtnBox .mypageBtn a, #cart-header #headerBox .hbtnBox .mypageBtn a {
  width: 42px;
  height: 44px;
  display: block;
}
header #headerBox .hbtnBox .mypageBtn a img, #cart-header #headerBox .hbtnBox .mypageBtn a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header #headerBox .hbtnBox .cartBtn, #cart-header #headerBox .hbtnBox .cartBtn {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
header #headerBox .hbtnBox .cartBtn a, #cart-header #headerBox .hbtnBox .cartBtn a {
  position: relative;
  display: block;
  width: 100%;
}
header #headerBox .hbtnBox .cartBtn a span.item_cnt, #cart-header #headerBox .hbtnBox .cartBtn a span.item_cnt {
  position: absolute;
  top: -8px;
  right: -5px;
  width: auto;
  min-width: 30px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF7600;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border-radius: 50%;
}
header #headerBox .hbtnBox .cartBtn a span.item_cnt span.number_comma, #cart-header #headerBox .hbtnBox .cartBtn a span.item_cnt span.number_comma {
  line-height: 0;
}
header #headerBox .hbtnBox.open .mypageBtn a img, #cart-header #headerBox .hbtnBox.open .mypageBtn a img {
  filter: brightness(0) invert(1);
}
header #headerBox .hbtnBox.open .cartBtn a img, #cart-header #headerBox .hbtnBox.open .cartBtn a img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1024px) {
  header #headerBox .hbtnBox, #cart-header #headerBox .hbtnBox {
    gap: 20px;
  }
  header #headerBox .hbtnBox .mypageBtn a, #cart-header #headerBox .hbtnBox .mypageBtn a {
    width: 32px;
    height: 34px;
  }
  header #headerBox .hbtnBox .cartBtn, #cart-header #headerBox .hbtnBox .cartBtn {
    width: 46px;
    height: 46px;
  }
  header #headerBox .hbtnBox .cartBtn a span.item_cnt, #cart-header #headerBox .hbtnBox .cartBtn a span.item_cnt {
    top: -6px;
    padding: 3px;
    font-size: 1.2rem;
    min-width: 20px;
  }
}

#cart-header {
  background: #fff !important;
  position: relative;
}

/*============================================================================
	footer
=============================================================================*/
#goTop {
  width: 80px;
  height: 140px;
  background: #01B901;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 9;
  border-radius: 20px 0 0 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
@media (max-width: 480px) {
  #goTop {
    width: 50px;
    height: 80px;
  }
}
#goTop a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
#goTop i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}
@media (max-width: 480px) {
  #goTop i {
    width: 30px;
    height: 30px;
  }
  #goTop i img {
    width: 15px;
  }
}
#goTop span {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #FFFFFF;
  font-family: "URW DIN Semi Condensed", sans-serif;
  text-align: center;
  margin: 5px auto 0;
}
@media (max-width: 480px) {
  #goTop span {
    font-size: 1.4rem;
  }
}
#goTop.active {
  opacity: 1;
}
#goTop:hover {
  opacity: 0.5;
}

#commonReviewArea {
  background: #E0E0E0;
  padding: clamp(72px, 12.4995vw, 120px) 0;
}
#commonReviewArea h2.mainTtl {
  text-align: center;
  margin-bottom: clamp(33px, 5.7285vw, 55px);
}
@media (max-width: 480px) {
  #commonReviewArea .container {
    width: 85%;
  }
}
#commonReviewArea .container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5%;
}
@media (max-width: 480px) {
  #commonReviewArea .container ul {
    flex-direction: column;
    row-gap: 30px;
  }
}
#commonReviewArea .container ul li {
  width: 22.75%;
  border-radius: 20px;
  border: 3px solid #000000;
  background: #fff;
  padding: clamp(24px, 4.167vw, 40px) clamp(19.2px, 3.333vw, 32px);
  min-height: 500px;
}
@media (max-width: 1024px) {
  #commonReviewArea .container ul li {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  #commonReviewArea .container ul li {
    width: 100%;
  }
}
#commonReviewArea .container ul li p.name {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #000000;
  margin-bottom: clamp(12px, 2.0835vw, 20px);
}
#commonReviewArea .container ul li .descBox .star {
  width: 130px;
}
#commonReviewArea .container ul li .descBox .txtBox {
  margin-top: 15px;
}
#commonReviewArea .container ul li .descBox .txtBox p {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 480px) {
  #commonReviewArea .container ul li .descBox .txtBox p {
    font-size: 1.4rem;
  }
}
#commonReviewArea .container .moreBtn {
  margin: clamp(36px, 6.2505vw, 60px) auto 0;
}

#commonInstagramArea {
  margin-top: clamp(72px, 12.4995vw, 120px);
}
#commonInstagramArea h2.mainTtl {
  text-align: center;
  margin-bottom: clamp(33px, 5.7285vw, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
}
#commonInstagramArea h2.mainTtl span {
  margin-top: 20px;
  margin-left: 20px;
}
#commonInstagramArea h2.mainTtl i {
  display: inline-block;
  width: 60px;
  height: 60px;
}
#commonInstagramArea h2.mainTtl i img {
  vertical-align: baseline;
  margin-top: 10px;
  width: 100%;
  height: 100%;
}
#commonInstagramArea #instaFeed ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  #commonInstagramArea #instaFeed ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#commonInstagramArea #instaFeed ul li a figure {
  aspect-ratio: 1/1;
}
#commonInstagramArea #instaFeed ul li a figure :where(img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#commonNewsArea {
  margin-top: clamp(64px, 13.3332vw, 160px);
}
@media (max-width: 480px) {
  #commonNewsArea {
    margin-top: 90px;
  }
}
#commonNewsArea h2.mainTtl {
  text-align: center;
  margin-bottom: clamp(27px, 4.6875vw, 45px);
}
#commonNewsArea ul li {
  --_inline-size: 1036;
  --_fluid-ratio: calc(1 / var(--_inline-size) * 100cqi);
  container-type: inline-size;
  inline-size: min(var(--_inline-size) * 1px, 100%);
  margin-inline: auto;
  display: block grid;
  grid-template-columns: max-content auto 1fr;
}
#commonNewsArea ul li a {
  display: block grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  column-gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 40px;
  align-items: center;
}
@media (max-width: 480px) {
  #commonNewsArea ul li a {
    row-gap: 8px;
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}
#commonNewsArea ul li a .date {
  flex-shrink: 0;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
#commonNewsArea ul li a .category {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  padding-inline: calc(16 * var(--_fluid-ratio));
  text-align: center;
  text-wrap: balance;
  align-self: start;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  border-radius: 4px;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 480px) {
  #commonNewsArea ul li a .category {
    margin-left: 20px;
    justify-self: start;
  }
}
#commonNewsArea ul li a .category.ctg_none {
  visibility: hidden;
}
#commonNewsArea ul li a:hover .category {
  background: #fff;
  color: #000;
}
#commonNewsArea ul li a .title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (max-width: 480px) {
  #commonNewsArea ul li a .title {
    width: 100%;
  }
}

#commonContactArea {
  margin-top: clamp(64px, 13.3332vw, 160px);
  overflow: hidden;
  padding: clamp(60px, 10.416vw, 100px) 0 clamp(78px, 13.542vw, 130px);
  border-radius: 20px;
  background: url(../img/common/contactBg.jpg) no-repeat center center/cover;
  position: relative;
}
#commonContactArea::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.66);
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  z-index: 0;
}
#commonContactArea h2.mainTtl {
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
#commonContactArea .contactBox {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 90%;
  margin: clamp(36px, 6.2505vw, 60px) auto 0;
  gap: 8%;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox {
    flex-direction: column;
    gap: 40px;
  }
}
#commonContactArea .contactBox .descBox, #commonContactArea .contactBox .lineBox {
  width: 90%;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .descBox, #commonContactArea .contactBox .lineBox {
    width: 100%;
  }
}
#commonContactArea .contactBox .descBox .moreBtn {
  width: 100%;
  height: 68px;
  border-radius: 20px;
  border: 3px solid #fff;
  background: transparent;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .descBox .moreBtn {
    height: 50px;
    margin: 0 auto;
  }
}
#commonContactArea .contactBox .descBox .moreBtn span {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 2vw, 25px);
  line-height: 62px;
  text-align: center;
  position: relative;
  color: #fff;
  z-index: 5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#commonContactArea .contactBox .descBox .txtBox {
  text-align: center;
  margin-top: clamp(21.6px, 3.75vw, 36px);
}
#commonContactArea .contactBox .descBox .txtBox .num a {
  font-size: clamp(16px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .descBox .txtBox .num a {
    font-size: 3.2rem;
  }
}
#commonContactArea .contactBox .descBox .txtBox .time {
  margin-top: clamp(10.8px, 1.875vw, 18px);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5714285714;
  color: #fff;
}
#commonContactArea .contactBox .lineBox .moreBtn {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .lineBox .moreBtn {
    margin: 0 auto;
  }
}
#commonContactArea .contactBox .lineBox .txtBox {
  display: flex;
  justify-content: center;
  gap: 13.04%;
  margin-top: clamp(36px, 6.2505vw, 60px);
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .lineBox .txtBox {
    row-gap: 30px;
    flex-direction: column;
    margin-top: 20px;
  }
}
#commonContactArea .contactBox .lineBox .txtBox .txt {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.06em;
  color: #fff;
  max-width: 260px;
  width: 58.26%;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .lineBox .txtBox .txt {
    width: 100%;
    max-width: 100%;
  }
}
#commonContactArea .contactBox .lineBox .txtBox .imgBox {
  text-align: center;
  width: 123px;
}
@media (max-width: 480px) {
  #commonContactArea .contactBox .lineBox .txtBox .imgBox {
    width: 123px;
    margin: 0 auto;
  }
}
#commonContactArea .contactBox .lineBox .txtBox .imgBox p {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #fff;
  margin-top: clamp(12px, 2.0835vw, 20px);
}

footer #fInnerBox, #cart-footer #fInnerBox {
  position: relative;
  padding: clamp(72px, 12.4995vw, 120px) 0 30px;
  background: #fff;
}
@media (max-width: 480px) {
  footer #fInnerBox, #cart-footer #fInnerBox {
    padding-bottom: 30px;
  }
}
footer #fInnerBox .flogoInner, #cart-footer #fInnerBox .flogoInner {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  footer #fInnerBox .flogoInner, #cart-footer #fInnerBox .flogoInner {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer #fInnerBox .flogoInner #flogo, #cart-footer #fInnerBox .flogoInner #flogo {
  width: 310px;
  height: 113px;
}
footer #fInnerBox .flogoInner #flogo a, #cart-footer #fInnerBox .flogoInner #flogo a {
  display: block;
  width: 100%;
}
footer #fInnerBox .flogoInner #flogo a img, #cart-footer #fInnerBox .flogoInner #flogo a img {
  width: 100%;
}
@media (max-width: 480px) {
  footer #fInnerBox .flogoInner #flogo, #cart-footer #fInnerBox .flogoInner #flogo {
    width: 200px;
    height: 70px;
  }
}
footer #fInnerBox .flogoInner .finfo, #cart-footer #fInnerBox .flogoInner .finfo {
  margin: 0 0 0 auto;
}
@media (max-width: 480px) {
  footer #fInnerBox .flogoInner .finfo, #cart-footer #fInnerBox .flogoInner .finfo {
    margin: 20px 0 0 0;
  }
}
footer #fInnerBox .flogoInner .finfo p.name, #cart-footer #fInnerBox .flogoInner .finfo p.name {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.06em;
  font-weight: 400;
}
footer #fInnerBox .flogoInner .finfo p.address, #cart-footer #fInnerBox .flogoInner .finfo p.address {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.06em;
  margin-top: 0.5em;
  font-weight: 400;
}
footer #flinkList, #cart-footer #flinkList {
  margin-top: clamp(48px, 8.334vw, 80px);
  display: flex;
  justify-content: space-between;
  gap: 36px;
}
@media (max-width: 820px) {
  footer #flinkList, #cart-footer #flinkList {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  footer #flinkList, #cart-footer #flinkList {
    row-gap: 20px;
  }
}
@media (max-width: 480px) {
  footer #flinkList > ul, #cart-footer #flinkList > ul {
    width: 100%;
  }
}
footer #flinkList > ul > li, #cart-footer #flinkList > ul > li {
  height: fit-content;
  line-height: 2;
}
footer #flinkList > ul > li a, #cart-footer #flinkList > ul > li a {
  font-size: clamp(14px, 2vw, 16px);
}
@media (max-width: 480px) {
  footer #flinkList > ul > li a, #cart-footer #flinkList > ul > li a {
    font-size: 1.4rem;
  }
}
footer #flinkList > ul > li > ul > li, #cart-footer #flinkList > ul > li > ul > li {
  position: relative;
  line-height: 2;
}
footer #flinkList > ul > li > ul > li a, #cart-footer #flinkList > ul > li > ul > li a {
  font-weight: 500;
  line-height: 1.3;
}
footer #flinkList > ul > li.parent > a, #cart-footer #flinkList > ul > li.parent > a {
  padding-left: 2em;
  position: relative;
}
footer #flinkList > ul > li.parent > a span, #cart-footer #flinkList > ul > li.parent > a span {
  display: inline-block;
  position: relative;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
}
footer #flinkList > ul > li.parent > a span::before, footer #flinkList > ul > li.parent > a span::after, #cart-footer #flinkList > ul > li.parent > a span::before, #cart-footer #flinkList > ul > li.parent > a span::after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
footer #flinkList > ul > li.parent > a span::before, #cart-footer #flinkList > ul > li.parent > a span::before {
  margin-block-end: var(--leading-trim);
}
footer #flinkList > ul > li.parent > a span::after, #cart-footer #flinkList > ul > li.parent > a span::after {
  margin-block-start: var(--leading-trim);
}
footer #flinkList > ul > li.parent > a i.triangle, #cart-footer #flinkList > ul > li.parent > a i.triangle {
  position: absolute;
  top: 35%;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #000000;
  border-top-left-radius: 30%;
  transform: rotate(0deg) skewY(30deg) scaleX(0.86666) translate(0, -50%);
}
footer #flinkList > ul > li.parent > a i.triangle::before, footer #flinkList > ul > li.parent > a i.triangle::after, #cart-footer #flinkList > ul > li.parent > a i.triangle::before, #cart-footer #flinkList > ul > li.parent > a i.triangle::after {
  width: 10px;
  height: 10px;
  background: #000000;
  content: "";
  position: absolute;
}
footer #flinkList > ul > li.parent > a i.triangle::before, #cart-footer #flinkList > ul > li.parent > a i.triangle::before {
  border-top-right-radius: 30%;
  transform: skewX(-45deg) translateX(50%);
}
footer #flinkList > ul > li.parent > a i.triangle::after, #cart-footer #flinkList > ul > li.parent > a i.triangle::after {
  border-bottom-left-radius: 30%;
  transform: skewY(-45deg) translateY(50%);
}
footer #flinkList > ul > li.parent > ul > li, #cart-footer #flinkList > ul > li.parent > ul > li {
  position: relative;
}
footer #flinkList > ul > li.parent > ul > li a, #cart-footer #flinkList > ul > li.parent > ul > li a {
  padding-left: 1.5em;
  position: relative;
  font-weight: 400;
}
footer #flinkList > ul > li.parent > ul > li a::before, #cart-footer #flinkList > ul > li.parent > ul > li a::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  width: 1em;
}
footer #flinkList > ul > li.privacy a, #cart-footer #flinkList > ul > li.privacy a {
  font-weight: 500;
  line-height: 1.3;
}
footer ul.fprivacyLink, #cart-footer ul.fprivacyLink {
  margin-top: clamp(48px, 8.334vw, 80px);
  display: flex;
  justify-content: center;
  position: relative;
}
footer ul.fprivacyLink li a, #cart-footer ul.fprivacyLink li a {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #000000;
}
footer ul.fprivacyLink li + li, #cart-footer ul.fprivacyLink li + li {
  padding-left: 2em;
  position: relative;
}
footer ul.fprivacyLink li + li::before, #cart-footer ul.fprivacyLink li + li::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 1em;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 0.75em;
  background: #000000;
}
@media (max-width: 480px) {
  footer ul.fprivacyLink, #cart-footer ul.fprivacyLink {
    display: block;
  }
  footer ul.fprivacyLink li a, #cart-footer ul.fprivacyLink li a {
    font-size: 1.3rem;
  }
  footer ul.fprivacyLink li + li, #cart-footer ul.fprivacyLink li + li {
    padding-left: 0;
    margin-top: 0.5em;
  }
  footer ul.fprivacyLink li + li::before, #cart-footer ul.fprivacyLink li + li::before {
    display: none;
  }
}
footer .copyright, #cart-footer .copyright {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 1em;
  text-align: center;
}
@media (max-width: 1024px) {
  footer #fleftBox, #cart-footer #fleftBox {
    width: 100%;
  }
  footer #fleftBox #flogo, #cart-footer #fleftBox #flogo {
    width: 70%;
    max-width: 350px;
  }
  footer #frightBox, #cart-footer #frightBox {
    margin-top: clamp(48px, 8.334vw, 80px);
    width: 100%;
  }
}
@media (max-width: 480px) {
  footer .inner, #cart-footer .inner {
    width: 94%;
  }
  footer #fleftBox #flinkList li, #cart-footer #fleftBox #flinkList li {
    margin: 0 4% 20px 0;
    max-width: 250px;
    width: 48%;
  }
  footer #fleftBox #flinkList li:nth-of-type(3n), #cart-footer #fleftBox #flinkList li:nth-of-type(3n) {
    margin-right: 4%;
  }
  footer #fleftBox #flinkList li:nth-of-type(2n), #cart-footer #fleftBox #flinkList li:nth-of-type(2n) {
    margin-right: 0;
  }
  footer #frightBox .companyBox .cname, #cart-footer #frightBox .companyBox .cname {
    margin: 0 auto 5px;
  }
  footer .copyright, #cart-footer .copyright {
    font-size: 1.2rem;
  }
}

div#cart-footer {
  background: none !important;
}

/*============================================================================
	common
=============================================================================*/
.wh {
  color: #FFFFFF;
}

.bl {
  color: #4880D3;
}

.gd {
  color: #E2B623;
}

.gr {
  color: #01B901;
}

.cmnTtl01 {
  font-size: clamp(26px, 5vw, 55px);
  font-family: "URW DIN Semi Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 480px) {
  .cmnTtl01 {
    font-size: 2.8rem;
  }
}

.cmnTtl02 .en {
  font-family: "URW DIN Semi Condensed", sans-serif;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.3;
  display: block;
}
.cmnTtl02 .jp {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  display: block;
  margin-bottom: 15px;
}

.cmnTtl03 .jp {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  display: block;
}
.cmnTtl03 .en {
  margin-top: 10px;
  font-family: "URW DIN Semi Condensed", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  display: block;
}

h2.mainTtl {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

a .arrowBtn {
  width: 45px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
a .arrowBtn::before, a .arrowBtn::after {
  content: "";
  margin: auto;
  width: 24px;
  height: 13px;
  background: url("../img/common/arrow.svg") no-repeat center center/contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
a .arrowBtn::after {
  transform: translateX(-150%);
}
a .arrowBtn.bl {
  background: #4880D3;
}
a .arrowBtn.bl::before, a .arrowBtn.bl::after {
  filter: invert(100%) sepia(9%) saturate(7427%) hue-rotate(269deg) brightness(118%) contrast(94%);
}
a .arrowBtn.wh {
  background: #FFFFFF;
}
a .arrowBtn.wh::before, a .arrowBtn.wh::after {
  filter: invert(64%) sepia(79%) saturate(4357%) hue-rotate(196deg) brightness(88%) contrast(85%);
}
@media (max-width: 820px) {
  a .arrowBtn {
    width: 30px;
  }
  a .arrowBtn::before, a .arrowBtn::after {
    width: 20px;
    height: 10px;
  }
}
a:hover .arrowBtn::before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
a:hover .arrowBtn::after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.moreBtn {
  width: 460px;
  height: 68px;
}
@media (max-width: 1024px) {
  .moreBtn {
    width: 350px;
  }
}
@media (max-width: 480px) {
  .moreBtn {
    width: 100%;
    max-width: 300px;
    height: 50px;
  }
}
.moreBtn a {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 3px solid #000000;
  background: #000000;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 23px;
  height: 21px;
  translate: 0 -50%;
  filter: brightness(0) invert(1);
  background: url("../img/common/icon_arrow.svg") no-repeat center center/contain;
}
@media (max-width: 480px) {
  .moreBtn a::after {
    right: 15px;
    width: 18px;
    height: 16px;
  }
}
.moreBtn a span {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 2vw, 25px);
  line-height: 62px;
  text-align: center;
  position: relative;
  color: #fff;
  z-index: 5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a:hover {
  border: 3px solid #2680EB;
  background: #2680EB;
}
.moreBtn.line a {
  border: 3px solid #01B901;
  background: none;
}
.moreBtn.line a::after {
  filter: invert(37%) sepia(98%) saturate(1350%) hue-rotate(91deg) brightness(104%) contrast(104%);
}
.moreBtn.line a span {
  color: #01B901;
}
.moreBtn.line a:hover {
  background: #01B901;
}
.moreBtn.line a:hover span {
  color: #fff;
}
.moreBtn.line a:hover::after {
  filter: brightness(0) invert(1);
}
.moreBtn.wh a {
  background: #fff;
  border: 3px solid #fff;
}
.moreBtn.wh a::after {
  filter: brightness(0) invert(0);
}
.moreBtn.wh a span {
  color: #000000;
}
.moreBtn.wh a:hover {
  background: #000000;
}
.moreBtn.wh a:hover span {
  color: #fff;
}
.moreBtn.wh a:hover::after {
  filter: brightness(0) invert(1);
}
.moreBtn.border a {
  border: 3px solid #000000;
}
.moreBtn.border a:hover {
  background: #000000;
}
.moreBtn.long {
  max-width: 450px;
  width: 100%;
  height: auto;
  min-height: 50px;
}
.moreBtn.hoverBorderBL a:hover::before {
  border: 1px solid #FFFFFF;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(150%);
  }
}
/* お問い合わせボタン */
.contactBtn a {
  width: 100%;
  height: 140px;
  border-radius: 4px;
  background: #2359AA;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.contactBtn a::before, .contactBtn a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.contactBtn a::before {
  border: 1px solid #2359AA;
  z-index: 2;
}
.contactBtn a::after {
  background: #FFFFFF;
  transform: scale(1, 0);
  transform-origin: center;
  z-index: 1;
}
.contactBtn a span {
  text-align: center;
  display: block;
  position: relative;
  z-index: 5;
}
.contactBtn a .icon {
  margin: 0 auto 15px;
  width: 50px;
}
.contactBtn a .text {
  color: #FFFFFF;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.2;
}
.contactBtn a:hover::before {
  border: 1px solid #E2B623;
}
.contactBtn a:hover::after {
  transform: scale(1, 1);
}
.contactBtn a:hover .text {
  color: #E2B623;
}
@media (max-width: 480px) {
  .contactBtn a {
    height: 100px;
  }
  .contactBtn a .icon {
    width: 30px;
  }
}

/*============================================================================
	animation
=============================================================================*/
.maskText {
  overflow: hidden;
  position: relative;
}
.maskText::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #2680EB;
  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: #E2B623;
  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: #E2B623;
  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;
}