@charset "UTF-8";
/*! kiso.css v1.1.6 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

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

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

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

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  */
  list-style-type: "";
}

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

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

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

@media print {
  :where(pre) {
    /* Wraps text when printing. */
    white-space: pre-wrap;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
}

:where(abbr[title]) {
  /* Display an underline. */
  text-decoration-line: underline;
  /* Set the underline style to dotted. */
  text-decoration-style: dotted;
  /* Display a tooltip on mouse hover. */
  cursor: help;
}

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

@media (forced-colors: active) {
  :where(mark) {
    /* In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode. */
    background-color: Highlight;
    color: HighlightText;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

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

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

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

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

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

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

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

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

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

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

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

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

:where(button, [type=button], [type=submit], [type=reset]),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

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

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

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

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

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

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

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

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

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

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

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

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * But `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus:not(:focus-visible)) {
  /* Hide the focus outline to reduce visual clutter unless the element is explicitly `:focus-visible`. */
  outline: none;
}

:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus-visible {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

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

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

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

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

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

.bg-main {
  background: #C53939;
}

.bg-gray {
  background: #eee;
}

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

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

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

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

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

.slick-slide {
  position: relative;
}

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

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

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

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #323232;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
}

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

.c-container {
  position: relative;
  width: 85.066667%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .c-container {
    max-width: 1000px;
  }
}
.c-container-right {
  position: relative;
  width: 89.333333%;
  margin: auto 0 auto auto !important;
}
@media screen and (min-width: 992px) {
  .c-container-right {
    margin: 0 auto !important;
    max-width: 1000px;
    width: 100%;
  }
}
.c-container-left {
  position: relative;
  width: 89.333333%;
  margin: auto auto auto 0 !important;
}
@media screen and (min-width: 992px) {
  .c-container-left {
    margin: 0 auto !important;
    max-width: 1000px;
    width: 100%;
  }
}
.c-container-narrow {
  width: 85.066667%;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .c-container-narrow {
    max-width: 800px;
  }
}
.c-container-wide {
  width: 88.07832%;
  margin: auto;
}
@media screen and (min-width: 1920px) {
  .c-container-wide {
    max-width: 1400px;
  }
}
.c-container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .c-container-image {
    display: none;
  }
}

main p,
main ol,
main ul {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}
main ol,
main ul {
  margin-left: 1em;
}

article {
  /*padding: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem) 0;*/
}

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

/*main {
	margin: 44px auto 0;

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

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

.head {
  position: relative;
}
.head img {
  width: 100%;
  height: auto;
}

.message {
  padding: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem) 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(171, 165, 163) 0%, rgb(167, 161, 159) 29.74%, rgb(154, 150, 147) 60.55%, rgb(134, 130, 127) 91.75%, rgb(127, 124, 120) 100%);
  letter-spacing: 0.15em;
}
.message p {
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
.message p:nth-child(1) {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
}
.message p:nth-child(2) {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
}
.message img {
  max-width: 84%;
  margin: auto;
  padding-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
}
@media screen and (min-width: 992px) {
  .message img {
    max-width: 630px;
  }
}

#cta1 {
  background-color: #f0f0f0;
  padding: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem) 0 clamp(1.563rem, -0.568rem + 9.091vw, 6.25rem);
}
#cta1 .c-container-cta1 {
  width: 89.333333%;
  margin: auto;
}
#cta1 h2 {
  color: #5e5e5e;
  font-size: clamp(1.125rem, 0.614rem + 2.182vw, 2.25rem);
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
#cta1 .content-box {
  margin-top: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  display: flex;
}
#cta1 .content-box:nth-of-type(1) {
  margin-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
}
#cta1 .content-box .icon {
  width: clamp(3.125rem, 1.705rem + 6.061vw, 6.25rem);
  height: clamp(3.125rem, 1.705rem + 6.061vw, 6.25rem);
  aspect-ratio: 1/1;
  margin-right: clamp(1rem, 0.545rem + 1.939vw, 2rem);
}
#cta1 .content-box .title {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  color: #5e5e5e;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#cta1 .content-box .caption {
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
  color: #5e5e5e;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

#bf00 {
  background: url(../images/section01-back-sp.webp) no-repeat, #f0f0f0;
  background-size: cover;
  background-position: center bottom;
  min-height: 320px;
}
@media screen and (min-width: 992px) {
  #bf00 {
    min-height: 640px;
    background: url(../images/section01-back-pc.webp) no-repeat, #f0f0f0;
    background-size: cover;
    background-position: center bottom;
  }
}

#feature {
  background: url("../images/feature-bg.webp");
  background-repeat: repeat-y;
}

#howto {
  background: url("../images/howto-bg.webp");
  background-repeat: repeat;
}

.dryer-content {
  text-align: center;
  padding-top: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem);
  /* 真ん中にテキスト */
}
.dryer-content .grid-lined {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* 線 / テキスト / 線 */
  align-items: center;
  gap: 1rem;
  /* 文字と線の間隔 */
}
.dryer-content .grid-lined::before,
.dryer-content .grid-lined::after {
  content: "";
  border-top: 2px solid currentColor;
  /* 線 */
  opacity: 0.35;
}
.dryer-content .grid-lined > span {
  grid-column: 2;
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
  letter-spacing: 0.1em;
}
.dryer-content__title {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-indent: 0.25em;
  margin-left: -0.25em;
  margin-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  color: #5e5e5e;
  letter-spacing: 0.1em;
}
.dryer-content__price {
  margin-top: clamp(0.375rem, 0.205rem + 0.727vw, 0.75rem);
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  color: #5e5e5e;
}
.dryer-content__price-tax {
  font-size: clamp(0.5rem, 0.273rem + 0.97vw, 1rem);
  color: #5e5e5e;
}
.dryer-content__price-tax:nth-child(1) {
  padding-right: 0.5em;
}
.dryer-content__price-tax:nth-child(2) {
  padding-left: 0.5em;
}
.dryer-content__product {
  display: flex;
  justify-content: center;
  gap: 5.333333%;
  max-width: 69.333333%;
  margin: clamp(1.25rem, 0.739rem + 2.182vw, 2.375rem) auto 0;
}
.dryer-content__product img {
  width: 100%;
  max-width: 120px;
}
@media screen and (min-width: 992px) {
  .dryer-content__product img {
    max-width: 100%;
  }
}
.dryer-content__button {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.dryer-content__button-icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 992px) {
  .dryer-content__button-icon {
    width: 32px;
    height: 32px;
  }
}
.dryer-content__button-gray {
  background-color: #333;
  color: #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  height: 41.99px;
}
.dryer-content__button-gray:hover, .dryer-content__button-gray:focus {
  opacity: 0.8;
}
.dryer-content__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  width: 100%;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  height: 100%;
  color: #fff;
  border-radius: 4px;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .dryer-content__button a {
    padding: 18px 0;
    font-size: 1.5rem;
  }
}

.p-dryer-benefit {
  padding: clamp(1.563rem, -0.284rem + 7.879vw, 5.625rem) 0;
}
.p-dryer-benefit .c-container-left .content {
  position: relative;
  margin-left: 5.333333%;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .p-dryer-benefit .c-container-left .content {
    margin-right: auto;
  }
}
.p-dryer-benefit .c-container-right .content {
  position: relative;
  margin-right: 5.333333%;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .p-dryer-benefit .c-container-right .content {
    margin-left: auto;
  }
}
.p-dryer-benefit .number {
  font-size: clamp(7.5rem, 4.091rem + 14.545vw, 15rem);
  color: #dcdcdc;
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: auto 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-dryer-benefit .title {
  color: #5e5e5e;
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-top: clamp(-0.313rem, 0.398rem - 3.03vw, -1.875rem);
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-dryer-benefit .title {
    letter-spacing: 0.2em;
  }
}
.p-dryer-benefit .text {
  color: #5e5e5e;
  font-size: clamp(0.875rem, 0.477rem + 1.697vw, 1.75rem);
  letter-spacing: 0.1em;
  padding-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .p-dryer-benefit .text {
    letter-spacing: 0.2em;
  }
}
#bf02 .p-dryer-benefit .text {
  letter-spacing: 0.1em;
}

#bf01 {
  padding: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem) 0 clamp(0rem, -2.841rem + 12.121vw, 6.25rem);
  background-color: #f0f0f0;
  position: relative;
}
#bf01 .c-container-bf01 {
  width: 89.333333%;
  margin: auto;
}
#bf01 .content {
  width: 110.666667%;
  margin-left: -10.666667%;
  position: relative;
}
@media screen and (min-width: 992px) {
  #bf01 .content {
    width: 100%;
    margin-left: 0;
  }
}
#bf01 .content .number {
  left: 5.333333%;
}
#bf01 .content .title,
#bf01 .content .text {
  text-align: right;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-right: 5.333333%;
}
@media screen and (min-width: 992px) {
  #bf01 .content .title,
  #bf01 .content .text {
    padding-right: 0;
  }
}
#bf01 .content .title {
  padding-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
  white-space: nowrap;
  overflow: visible;
  /* はみ出す部分を表示 */
  direction: rtl;
  /* テキストの描画方向を右→左にする */
}
#bf01 .content .text {
  padding-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
#bf01 .image {
  padding-top: clamp(2rem, 0.409rem + 6.788vw, 5.5rem);
}
#bf01 .graph-title {
  color: #5e5e5e;
  text-align: center;
  font-size: clamp(0.875rem, 0.477rem + 1.697vw, 1.75rem);
  padding-top: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #bf01 .graph-title {
    background-color: unset;
  }
}
#bf01 .graph {
  padding: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem) 0;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #bf01 .graph {
    background-color: unset;
  }
}
#bf01 .graph img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #bf01::after {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(../images/ffffff-triangle.webp) no-repeat;
    background-size: 100%;
    background-position: center bottom;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}

#bf02 {
  position: relative;
  background-color: #f0f0f0;
  padding-top: clamp(1.25rem, -1.023rem + 9.697vw, 6.25rem);
}
@media screen and (min-width: 992px) {
  #bf02 {
    background-color: #fff;
  }
  #bf02::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(../images/ffffff-triangle.webp) no-repeat;
    background-size: 100%;
    background-position: center bottom;
    position: absolute;
    top: -30px;
    z-index: 1;
  }
}
#bf02 .c-container-bf02 {
  width: 89.333333%;
  margin: auto;
}
#bf02 .content {
  width: 110.666667%;
  margin-right: -10.666667%;
  position: relative;
}
@media screen and (min-width: 992px) {
  #bf02 .content {
    width: 100%;
    margin-left: 0;
  }
}
#bf02 .content .number {
  right: 5.333333%;
}
@media screen and (min-width: 992px) {
  #bf02 .content .number {
    right: 0;
  }
}
#bf02 .content .title,
#bf02 .content .text {
  text-align: left !important;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-right: 5.333333%;
}
@media screen and (min-width: 992px) {
  #bf02 .content .title,
  #bf02 .content .text {
    padding-right: 0;
  }
}
#bf02 .content .title {
  padding-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
  white-space: nowrap;
  overflow: visible;
  /* はみ出す部分を表示 */
  direction: rtl;
  /* テキストの描画方向を右→左にする */
}
#bf02 .content .text {
  padding-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
#bf02 .image {
  padding-top: clamp(2rem, 0.409rem + 6.788vw, 5.5rem);
}
#bf02 .tera-minus-image {
  padding-top: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
  display: flex;
  justify-content: center;
  background-color: #fff;
}
#bf02 .tera-minus-image img {
  width: 80%;
  display: block;
}
@media screen and (min-width: 992px) {
  #bf02 .tera-minus-image img {
    width: 60%;
    background-color: unset;
  }
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 {
    margin: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem) auto 0;
  }
}
#bf02 .section02-01 h1 {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  text-align: right;
  color: #5e5e5e;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 h1 {
    text-align: center;
  }
}
#bf02 .section02-01 .graph01 {
  margin: auto;
  padding-top: clamp(1.25rem, 0.398rem + 3.636vw, 3.125rem);
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 .graph01 {
    max-width: 69%;
  }
}
#bf02 .section02-01 .column {
  padding-top: clamp(1.25rem, -1.307rem + 10.909vw, 6.875rem);
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 .column {
    max-width: 1000px;
  }
}
#bf02 .section02-01 .column .subtitle {
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
}
#bf02 .section02-01 .column .tera-heltz {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 .column .tera-heltz {
    white-space: nowrap;
  }
}
#bf02 .section02-01 .column .image {
  width: 82.5%;
  margin: auto;
}
#bf02 .section02-01 {
  padding: 4.679144%;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-01 {
    padding: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem) 0;
    background-color: unset;
  }
}
#bf02 .section02-02 {
  margin: auto;
  padding: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem) 0 0;
}
#bf02 .section02-02 h1 {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  text-align: center;
  color: #5e5e5e;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-02 h1 {
    text-align: center;
    text-indent: -2em;
  }
}
#bf02 .section02-02 h1 span {
  display: block;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  text-align: left;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-02 h1 span {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  #bf02 .section02-02 h1 {
    white-space: nowrap;
  }
}
@media screen and (min-width: 992px) {
  #bf02 .section02-02 .image {
    max-width: 58%;
    margin: auto;
  }
}
#bf02 .section02-03 {
  padding-left: 5.333333%;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-03 {
    padding-left: 0;
    background-color: unset;
  }
}
#bf02 .section02-03 h1 {
  padding-top: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  text-align: center;
  color: #5e5e5e;
  text-align: left;
  letter-spacing: 0.1em;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-03 h1 {
    text-align: center;
    margin-top: 0;
  }
}
#bf02 .section02-03 h1 span {
  display: block;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  text-align: left;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-03 h1 span {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  #bf02 .section02-03 h1 {
    white-space: nowrap;
  }
}
#bf02 .section02-04 {
  position: relative;
  padding-top: clamp(3.625rem, 2.432rem + 5.091vw, 6.25rem);
  padding-bottom: 48px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-04 {
    background-color: unset;
  }
}
#bf02 .section02-04 h1 {
  text-align: right;
  padding-right: 5.333333%;
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  letter-spacing: 0.1em;
  color: #5e5e5e;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-04 h1 {
    padding-right: 0;
  }
}
#bf02 .section02-04 .image {
  margin-left: auto;
  width: 61.333333%;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-04 .image {
    max-width: 600px;
  }
}
#bf02 .section02-04 .model {
  position: absolute;
  left: -18%;
  bottom: 0;
  top: 48px;
  width: 64.47%;
}
@media screen and (min-width: 992px) {
  #bf02 .section02-04 .model {
    top: 30px;
    left: -200px;
    width: 100%;
    max-width: 540px;
  }
}

#bf03 {
  position: relative;
  background-color: #f0f0f0;
  margin-top: -48px;
}
#bf03 .c-container-bf03 {
  width: 89.333333%;
  margin: auto;
}
#bf03 .content {
  position: relative;
}
@media screen and (min-width: 992px) {
  #bf03 {
    background-color: #fff;
  }
  #bf03::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(../images/ffffff-triangle.webp) no-repeat;
    background-size: 100%;
    background-position: center bottom;
    position: absolute;
    top: -30px;
    z-index: 1;
  }
}
#bf03 .number {
  text-align: right;
  right: 0;
}
#bf03 .title,
#bf03 .text {
  text-align: left !important;
}
#bf03 .text {
  white-space: nowrap;
  padding-bottom: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
}
@media screen and (min-width: 992px) {
  #bf03 .text {
    padding-bottom: 0;
  }
}
#bf03 .compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10%;
  background: #fff;
  padding: 30px 0 0;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #bf03 .compact {
    background: unset;
    margin-top: 0;
  }
}
#bf03 .compact-box {
  flex-basis: 84%;
}
#bf03 .compact-box:not(:first-child) {
  margin-top: clamp(1.875rem, 1.307rem + 2.424vw, 3.125rem);
}
@media screen and (min-width: 992px) {
  #bf03 .compact-box {
    flex-basis: 45%;
    margin-top: 55px;
  }
}
#bf03 .compact-box .caption {
  font-size: clamp(0.875rem, 0.648rem + 0.97vw, 1.375rem);
  text-align: center;
  white-space: nowrap;
}
#bf03 .compact-box .image {
  padding-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
#bf03 .compact-box:nth-child(odd) .caption {
  text-align: left;
}
@media screen and (min-width: 992px) {
  #bf03 .compact-box:nth-child(odd) .caption {
    margin: auto;
    text-align: center;
  }
}
#bf03 .compact-box:nth-child(odd) .image {
  margin-right: -24%;
}
@media screen and (min-width: 992px) {
  #bf03 .compact-box:nth-child(odd) .image {
    margin: auto;
  }
}
#bf03 .compact-box:nth-child(even) .caption {
  text-align: right;
}
@media screen and (min-width: 992px) {
  #bf03 .compact-box:nth-child(even) .caption {
    margin: auto;
    text-align: center;
  }
}
#bf03 .compact-box:nth-child(even) .image {
  margin-left: -24%;
}
@media screen and (min-width: 992px) {
  #bf03 .compact-box:nth-child(even) .image {
    margin: auto;
  }
}

#bf03 {
  background-color: #f0f0f0;
  position: relative;
}
#bf03::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/f0f0f0-triangle.webp) no-repeat;
  background-size: 100%;
  background-position: center bottom;
  position: absolute;
  top: -30px;
  z-index: 1;
}
#bf03 .content {
  width: 110.666667%;
  margin-right: -10.666667%;
  position: relative;
}
#bf03 .content .number {
  text-align: left;
  right: 5.333333%;
}
@media screen and (min-width: 992px) {
  #bf03 .content .number {
    right: 0;
  }
}
#bf03 .content .title,
#bf03 .content .text {
  text-align: left !important;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-right: 5.333333%;
}
@media screen and (min-width: 992px) {
  #bf03 .content .title,
  #bf03 .content .text {
    padding-right: 0;
  }
}
#bf03 .content .title {
  padding-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
  white-space: nowrap;
  overflow: visible;
  /* はみ出す部分を表示 */
  direction: rtl;
  /* テキストの描画方向を右→左にする */
}
#bf03 .content .text {
  padding-top: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  line-height: 1.42857143;
}
@media screen and (min-width: 992px) {
  #bf03::after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background: url(../images/f0f0f0-after-pc.webp) no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: absolute;
    bottom: -40px;
    z-index: 1;
  }
}

#option {
  position: relative;
  padding-bottom: 0;
  padding-top: clamp(3.625rem, 2.432rem + 5.091vw, 6.25rem);
}
#option .number,
#option .title,
#option .text {
  text-align: right;
  color: #5e5e5e;
}
@media screen and (min-width: 992px) {
  #option .number,
  #option .title,
  #option .text {
    text-align: center;
  }
}
#option .number {
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
}
#option .title {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.2em;
}
#option .text {
  margin-top: clamp(0.625rem, -0.511rem + 4.848vw, 3.125rem);
  font-size: clamp(0.875rem, 0.477rem + 1.697vw, 1.75rem);
  letter-spacing: 0;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  #option .text {
    letter-spacing: 0.1em;
    text-align: center;
  }
}
#option .image {
  margin: 50px auto 0;
}
@media screen and (min-width: 992px) {
  #option .image {
    max-width: 640px;
  }
}
#option .fullimage {
  margin-top: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
}

#howto {
  position: relative;
  z-index: -1;
  margin-top: -20px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(171, 165, 163) 0%, rgb(167, 161, 159) 29.74%, rgb(154, 150, 147) 60.55%, rgb(134, 130, 127) 91.75%, rgb(127, 124, 120) 100%);
  color: #fff;
  padding: clamp(2.5rem, 0.795rem + 7.273vw, 6.25rem) 0 0;
}
@media screen and (min-width: 992px) {
  #howto {
    margin-top: -40px;
    padding: 140px 0 0;
  }
}
#howto .article-title {
  text-align: center;
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.2em;
  line-height: 1;
}
#howto .article-subtitle {
  text-align: center;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  letter-spacing: 0.2em;
  margin-top: clamp(0.375rem, -0.136rem + 2.182vw, 1.5rem);
}
#howto .article-content {
  margin-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  text-align: center;
  font-size: clamp(0.875rem, 0.477rem + 1.697vw, 1.75rem);
  letter-spacing: 0.05em;
}

#howto {
  /*.c-container-wide.howto {
  	width: clamp(21.175rem, -12.382rem + 143.176vw, 95rem);
  }*/
}
#howto .howto {
  text-align: center;
  font-size: clamp(0.938rem, 0.511rem + 1.818vw, 1.875rem);
  line-height: 2;
  letter-spacing: 0.1em;
  padding-top: 38px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  #howto .howto {
    padding-top: 0;
    margin-left: auto;
  }
}
#howto .howto .caption {
  font-size: clamp(0.875rem, 0.477rem + 1.697vw, 1.75rem);
  white-space: nowrap;
}
#howto .howto span {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
#howto .howto span.double {
  font-size: clamp(0.938rem, 0.511rem + 1.818vw, 1.875rem);
  line-height: 0.66666667em;
  display: block;
}
#howto .howto-image {
  margin: auto;
}
@media screen and (min-width: 1200px) {
  #howto .howto-image {
    display: none;
  }
}
#howto .howto01 {
  background-image: url("../images/use-01back-sp.webp");
  background-size: cover;
  background-position: center;
  min-height: 164px;
  width: 100%;
  margin-top: clamp(2rem, 0.068rem + 8.242vw, 6.25rem);
}
@media screen and (min-width: 992px) {
  #howto .howto01 {
    background-image: url("../images/use-01back-pc.webp");
    background-size: cover;
    background-position: center;
    min-height: 448px;
  }
}
#howto .howto02 {
  background-image: url("../images/use-02back-sp.webp");
  background-size: cover;
  background-position: center;
  min-height: 336px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  #howto .howto02 {
    background-image: url("../images/use-02back-pc.webp");
    background-size: cover;
    background-position: center;
    min-height: 772px;
  }
}
#howto .howto-content-01 {
  padding: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem) 0;
}
#howto .howto-content-01 .title {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
#howto .howto-content-01 .number {
  font-size: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  padding-right: 0.5em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  display: inline-block;
}
#howto .howto-content-01 .small {
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
  line-height: 1;
  display: inline-block;
}
#howto .howto-content-01 .howto-icon {
  margin-top: clamp(1.5rem, 0.818rem + 2.909vw, 3rem);
  width: clamp(11.875rem, 6.477rem + 23.03vw, 23.75rem);
}
#howto .howto-content-02 {
  padding: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem) 0;
  margin-left: 40%;
}
@media screen and (min-width: 992px) {
  #howto .howto-content-02 {
    margin-left: 50%;
  }
}
#howto .howto-content-02 .title {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
#howto .howto-content-02 .number {
  font-size: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  padding-right: 0.5em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  display: inline-block;
}
#howto .howto-content-02 .small {
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
  line-height: 1;
  display: inline-block;
}
#howto .howto-content-02 .howto-icon {
  margin-top: clamp(1.5rem, 0.818rem + 2.909vw, 3rem);
  width: clamp(11.875rem, 6.477rem + 23.03vw, 23.75rem);
}

#bf00 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
#bf00 p {
  text-align: center;
  color: #fff;
  font-size: clamp(0.75rem, 0.409rem + 1.455vw, 1.5rem);
  letter-spacing: 0.2em;
  line-height: 3;
}

.lineup-list {
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .lineup-list {
    max-width: 800px;
    flex-wrap: nowrap;
  }
}

.lineup-list-item {
  background: none;
  flex-basis: 120px;
  gap: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .lineup-list-item {
    flex-basis: 240px;
  }
}

.lineup-title {
  font-size: clamp(1rem, 0.545rem + 1.939vw, 2rem);
}

.lineup-price {
  color: #5e5e5e;
}

.lineup-group {
  margin-top: clamp(2.5rem, 1.08rem + 6.061vw, 5.625rem);
}
.lineup-group:first-child {
  margin-top: clamp(1.875rem, -0.114rem + 8.485vw, 6.25rem);
}

.cta1-circle-item {
  border: 1px solid #5e5e5e;
  width: clamp(7.5rem, 4.091rem + 14.545vw, 15rem);
  height: clamp(7.5rem, 4.091rem + 14.545vw, 15rem);
  aspect-ratio: 1/1;
  font-size: clamp(1.125rem, 0.614rem + 2.182vw, 2.25rem);
  color: #5e5e5e;
}

#cta3 h2 {
  color: #5e5e5e;
}
#cta3 h2 + div {
  color: #5e5e5e;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  font-family: "Ropa Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}/*# sourceMappingURL=common.css.map */