@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400..700&family=Noto+Sans+JP:wght@300..900&display=swap");

/* 基盤スタイル: ブラウザ差異を吸収するリセット（kiso.css）
* LP 固有のスタイルは各 .astro の <style lang="scss"> に記述する
* 変数・mixin は astro.config.mjs でグローバル注入済み（@use 不要）
* 定義: src/styles/_variables.scss, src/styles/_mixins.scss
*/
/*! kiso.css v1.2.4 | 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.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  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(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* 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;
}
@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  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):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
: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;
  text-decoration-inset: auto;
  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) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}
:where(a:any-link) {
  /*
  * 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;

  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* 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(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}
: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:lang(en)) {
  /* 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 / 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-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;
}
/* 以下kiso.cssを補うためのこのプロジェクト独自スタイル */
:where(h1) {
  margin-block: 0;
}
:where(img, svg, picture, video, audio, canvas, modal, iframe, embed, object) {
  width: 100%;
}
html {
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/* 固定ヘッダー高さ分だけスクロール位置をオフセット（ページ内アンカー用） */
#anchor-premium,
#anchor-standard {
  scroll-margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  #anchor-premium,
  #anchor-standard {
    scroll-margin-top: 13.3333333333vw;
  }
}
/* ヘッダーナビからプランセクションへスクロールするとき（タブボタンも見える位置を基準にする） */
#plan-section {
  scroll-margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  #plan-section {
    scroll-margin-top: 13.3333333333vw;
  }
}
/* モーダル・ドロワー表示中はページ全体のスクロールを止める */
body.is-modal-open,
body.is-drawer-open {
  overflow: hidden;
}
/* モーダル表示制御・フェード（[hidden] を使わず .is-open クラスのみで制御） */
.c-modal {
  transition: opacity 0.25s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
/* 閉じるアニメーション中は表示を維持し、opacity のみフェードアウト */
.c-modal.is-closing {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
}
sup {
  vertical-align: super;
  font-size: 70%;
}
button {
  border: none;
  padding: 0;
}
img {
  image-rendering: auto;
}
/* スクリーンリーダー用のスタイル */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* utility */
.u-sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}
.u-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media only screen and (max-width: 1280px) {
  .u-container {
    max-width: 96.875vw;
    padding-inline: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .u-container {
    max-width: 100%;
    padding-inline: 5.3333333333vw;
  }
}
.u-animation-underline {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease;
  z-index: 1;
  white-space: nowrap;
}
.u-animation-underline::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.4em);
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 10px;
  background-color: #feec96;
  transition: width 0.8s ease-out;
  z-index: -1;
}
.is-fade-show .under-line::before {
  animation: liner 1s ease-in-out forwards;
  animation-delay: 0.5s;
}
.u-color-orange {
  color: #ff8303;
}
.u-color-red {
  color: #ff6161;
}
.u-color-blue {
  color: #02b3e5;
}
.u-color-blue-sub {
  color: #0488d4;
}
.u-link-underline {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-link-underline:hover {
    text-decoration: none;
  }
}
.c-btn[data-astro-cid-6ygtcg62] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-btn[data-astro-cid-6ygtcg62] {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }
  .c-btn[data-astro-cid-6ygtcg62]:hover {
    color: #fff;
  }
}
.c-btn--primary[data-astro-cid-6ygtcg62] {
  background: #ff6161;
  color: #fff;
}
.c-btn--gradient-red[data-astro-cid-6ygtcg62] {
  position: relative;
  background: linear-gradient(90deg, #ff6161 0%, #ff8f8f 100%);
  color: #fff;
  overflow: hidden;
}
.c-btn--gradient-red[data-astro-cid-6ygtcg62] > [data-astro-cid-6ygtcg62]:not(.c-btn__icon) {
  position: relative;
  z-index: 1;
}
.c-btn--gradient-red[data-astro-cid-6ygtcg62]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f83737;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--gradient-red[data-astro-cid-6ygtcg62]:hover::before {
    opacity: 1;
  }
}
.c-btn--gradient-pink[data-astro-cid-6ygtcg62] {
  position: relative;
  background: linear-gradient(90deg, #ff8f8f 2.51%, #f985ef 94.49%);
  color: #fff;
  overflow: hidden;
}
.c-btn--gradient-pink[data-astro-cid-6ygtcg62] > [data-astro-cid-6ygtcg62]:not(.c-btn__icon) {
  position: relative;
  z-index: 1;
}
.c-btn--gradient-pink[data-astro-cid-6ygtcg62]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f76767 0%, #fc6cb7 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--gradient-pink[data-astro-cid-6ygtcg62]:hover::before {
    opacity: 1;
  }
}
.c-btn--gradient-blue[data-astro-cid-6ygtcg62] {
  position: relative;
  background: var(--grd, linear-gradient(90deg, #7f7efe 0%, #5ff9d5 100%));
  color: #fff;
  overflow: hidden;
}
.c-btn--gradient-blue[data-astro-cid-6ygtcg62] > [data-astro-cid-6ygtcg62]:not(.c-btn__icon) {
  position: relative;
  z-index: 1;
}
.c-btn--gradient-blue[data-astro-cid-6ygtcg62]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5f5eff 0%, #17f0bd 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--gradient-blue[data-astro-cid-6ygtcg62]:hover::before {
    opacity: 1;
  }
}
.c-btn--gradient-blue[data-astro-cid-6ygtcg62] .small {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  .c-btn--gradient-blue[data-astro-cid-6ygtcg62] .small {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn--gradient-blue[data-astro-cid-6ygtcg62] .small {
    font-size: 3.4666666667vw;
  }
}
.c-btn--gradient-sky[data-astro-cid-6ygtcg62] {
  position: relative;
  border-radius: 70px;
  background: linear-gradient(90deg, #02b3e5 0%, #47d7ff 100%);
  color: #fff;
  overflow: hidden;
}
.c-btn--gradient-sky[data-astro-cid-6ygtcg62] > [data-astro-cid-6ygtcg62]:not(.c-btn__icon) {
  position: relative;
  z-index: 1;
}
.c-btn--gradient-sky[data-astro-cid-6ygtcg62]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #00a4d2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-btn--gradient-sky[data-astro-cid-6ygtcg62]:hover::before {
    opacity: 1;
  }
}
.c-btn--gradient-sky[data-astro-cid-6ygtcg62] .small {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  .c-btn--gradient-sky[data-astro-cid-6ygtcg62] .small {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn--gradient-sky[data-astro-cid-6ygtcg62] .small {
    font-size: 3.4666666667vw;
  }
}
.c-btn--arrow[data-astro-cid-6ygtcg62] {
  position: relative;
  text-align: center;
}
.c-btn__icon[data-astro-cid-6ygtcg62] {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-btn__icon[data-astro-cid-6ygtcg62] {
    width: 9.6vw;
    height: 9.6vw;
  }
}
.c-btn--modal-blue[data-astro-cid-6ygtcg62] {
  background: linear-gradient(90deg, #7f7efe 0%, #5ff9d5 100%);
  color: #fff;
}
.c-btn[data-astro-cid-6ygtcg62]:active {
  transform: translateY(0);
  box-shadow: none;
}
.header[data-astro-cid-qlfjksao] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background-color: #fff;
}
@media only screen and (max-width: 1280px) {
  .header[data-astro-cid-qlfjksao] {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .header[data-astro-cid-qlfjksao] {
    justify-content: flex-start;
    height: 50px;
  }
}
.header-inner[data-astro-cid-qlfjksao] {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 0 20px;
}
@media only screen and (max-width: 767px) {
  .header-inner[data-astro-cid-qlfjksao] {
    margin-inline: revert;
    padding-inline: 0;
  }
}
.header-contents[data-astro-cid-qlfjksao] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .header-contents[data-astro-cid-qlfjksao] {
    display: block;
  }
}
.header-logo[data-astro-cid-qlfjksao] {
  width: 243px;
}
@media only screen and (max-width: 1280px) {
  .header-logo[data-astro-cid-qlfjksao] {
    width: 18.984375vw;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo[data-astro-cid-qlfjksao] {
    width: 152px;
  }
}
.header-nav[data-astro-cid-qlfjksao] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 1280px) {
  .header-nav[data-astro-cid-qlfjksao] {
    gap: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav[data-astro-cid-qlfjksao] {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%),
      linear-gradient(90deg, #7f7efe 0%, #5ff9d5 100%);
    padding-inline: 30px;
    padding-block: 60px;
    gap: 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: block;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header[data-astro-cid-qlfjksao].is-drawer-open .header-nav[data-astro-cid-qlfjksao] {
    opacity: 1;
    visibility: visible;
  }
}
.header-nav-list[data-astro-cid-qlfjksao] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1280px) {
  .header-nav-list[data-astro-cid-qlfjksao] {
    gap: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav-list[data-astro-cid-qlfjksao] {
    display: block;
    margin-bottom: 9.6vw;
  }
}
.header-nav-item[data-astro-cid-qlfjksao] {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .header-nav-item[data-astro-cid-qlfjksao] + .header-nav-item[data-astro-cid-qlfjksao] {
    margin-top: 9.6vw;
  }
}
.header-nav-link[data-astro-cid-qlfjksao] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s;
}
@media only screen and (max-width: 1280px) {
  .header-nav-link[data-astro-cid-qlfjksao] {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav-link[data-astro-cid-qlfjksao] {
    position: relative;
    display: block;
    padding-inline-start: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  .header-nav-link[data-astro-cid-qlfjksao].-premium:hover {
    color: #ff6161;
  }
  .header-nav-link[data-astro-cid-qlfjksao].-standard:hover {
    color: #02b3e5;
  }
}
.header-nav-link[data-astro-cid-qlfjksao] svg[data-astro-cid-qlfjksao] {
  transform: translateY(-1.5px);
  width: auto;
}
@media only screen and (max-width: 1280px) {
  .header-nav-link[data-astro-cid-qlfjksao] svg[data-astro-cid-qlfjksao] {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav-link[data-astro-cid-qlfjksao] svg[data-astro-cid-qlfjksao] {
    position: absolute;
    top: calc(50% - 0.8vw);
    transform: translateY(-50%);
    left: 0;
    width: 13px;
    height: 9px;
    transform: rotate(-90deg) translate(2px, 0);
  }
}
.buttons[data-astro-cid-qlfjksao] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1280px) {
  .buttons[data-astro-cid-qlfjksao] {
    gap: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .buttons[data-astro-cid-qlfjksao] {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.buttons[data-astro-cid-qlfjksao] .c-btn[data-astro-cid-qlfjksao] {
  width: 160px;
  height: 50px;
}
@media only screen and (max-width: 1280px) {
  .buttons[data-astro-cid-qlfjksao] .c-btn[data-astro-cid-qlfjksao] {
    width: 12.5vw;
    height: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .buttons[data-astro-cid-qlfjksao] .c-btn[data-astro-cid-qlfjksao] {
    width: auto;
  }
}
.header-drawer-buttons[data-astro-cid-qlfjksao] {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-drawer-buttons[data-astro-cid-qlfjksao] .small {
    display: block;
    font-size: 3.4666666667vw;
    transform: translateY(1px);
    margin-bottom: 0.5333333333vw;
  }
  .header-drawer-buttons[data-astro-cid-qlfjksao] .c-btn {
    width: 84vw;
    line-height: 1.2;
    font-size: 4.2666666667vw;
  }
  .header-drawer-buttons[data-astro-cid-qlfjksao] .c-btn + .c-btn[data-astro-cid-qlfjksao] {
    margin-top: 5.3333333333vw;
  }
  .header[data-astro-cid-qlfjksao].is-drawer-open .header-drawer-buttons[data-astro-cid-qlfjksao] {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header[data-astro-cid-qlfjksao].is-drawer-open
    .header-nav[data-astro-cid-qlfjksao]
    .buttons[data-astro-cid-qlfjksao] {
    display: none;
  }
}
.header-menu-button[data-astro-cid-qlfjksao] {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-menu-button[data-astro-cid-qlfjksao] {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
}
.header-menu-button-icon[data-astro-cid-qlfjksao] {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .header-menu-button-icon[data-astro-cid-qlfjksao].is-close {
    opacity: 1;
  }
  .header-menu-button-icon[data-astro-cid-qlfjksao].is-open {
    opacity: 0;
  }
  .header[data-astro-cid-qlfjksao].is-drawer-open .header-menu-button-icon[data-astro-cid-qlfjksao].is-close {
    opacity: 0;
  }
  .header[data-astro-cid-qlfjksao].is-drawer-open .header-menu-button-icon[data-astro-cid-qlfjksao].is-open {
    opacity: 1;
  }
}
.c-modal[data-astro-cid-h5tv27la] {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-modal[data-astro-cid-h5tv27la] {
    display: none;
  }
}
.c-modal__overlay[data-astro-cid-h5tv27la] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.c-modal__dialog[data-astro-cid-h5tv27la] {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-height: calc(100vh - 40px);
  padding: 80px 24px 90px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .c-modal__dialog[data-astro-cid-h5tv27la] {
    width: 78.125vw;
    padding: 6.25vw 1.875vw 7.03125vw;
    border-radius: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__dialog[data-astro-cid-h5tv27la] {
    width: 85.3333333333vw;
    padding: 4.2666666667vw 3.2vw 3.7333333333vw;
    border-radius: 4.2666666667vw;
  }
}
.c-modal__close[data-astro-cid-h5tv27la] {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-modal__close[data-astro-cid-h5tv27la]:hover {
    opacity: 0.7;
  }
}
.c-modal__head[data-astro-cid-h5tv27la] {
  margin-inline: auto;
  margin-block-end: 16px;
  text-align: center;
  width: 258px;
}
@media only screen and (max-width: 1280px) {
  .c-modal__head[data-astro-cid-h5tv27la] {
    width: 20.15625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__head[data-astro-cid-h5tv27la] {
    width: 39.4666666667vw;
  }
}
.c-modal__head[data-astro-cid-h5tv27la] img[data-astro-cid-h5tv27la] {
  display: block;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-modal__head[data-astro-cid-h5tv27la] {
    margin-block-end: 12px;
  }
}
.c-modal__lead[data-astro-cid-h5tv27la] {
  margin: 0 0 32px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .c-modal__lead[data-astro-cid-h5tv27la] {
    margin-block-end: 2.5vw;
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__lead[data-astro-cid-h5tv27la] {
    margin-block-end: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.c-modal__actions[data-astro-cid-h5tv27la] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media only screen and (max-width: 1280px) {
  .c-modal__actions[data-astro-cid-h5tv27la] {
    gap: 0.9375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__actions[data-astro-cid-h5tv27la] {
    flex-direction: column;
    gap: 3.2vw;
  }
}
@media screen and (min-width: 640px) {
  .c-modal__actions[data-astro-cid-h5tv27la] {
    gap: 16px;
  }
}
.c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] {
  width: 390px;
  height: 88px;
  font-size: 21px;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  .c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] {
    width: 30.46875vw;
    height: 6.875vw;
    font-size: 1.640625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] {
    width: 85.3333333333vw;
    height: auto;
    font-size: 4.2666666667vw;
  }
}
.c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] span:not(.c-btn__inner) {
  font-size: 1.125rem;
  line-height: 1.1;
}
@media only screen and (max-width: 1280px) {
  .c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] span:not(.c-btn__inner) {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__actions[data-astro-cid-h5tv27la] .c-btn[data-astro-cid-h5tv27la] span:not(.c-btn__inner) {
    font-size: 3.4666666667vw;
  }
}
.sr-only[data-astro-cid-h5tv27la] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.c-link-button-dark[data-astro-cid-pp73tymo] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #000;
  border: 3px solid #000;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}
.c-link-button-dark[data-astro-cid-pp73tymo] svg[data-astro-cid-pp73tymo] path[data-astro-cid-pp73tymo] {
  fill: #fff;
  transition: fill 0.3s;
}
@media (any-hover: hover) {
  .c-link-button-dark[data-astro-cid-pp73tymo]:hover {
    background-color: #fff;
    color: #000;
  }
  .c-link-button-dark[data-astro-cid-pp73tymo]:hover svg[data-astro-cid-pp73tymo] path[data-astro-cid-pp73tymo] {
    fill: #000;
  }
}
.c-link-button-dark--xlarge[data-astro-cid-pp73tymo] {
  width: 500px;
  height: 80px;
  font-size: 1.375rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] {
    font-size: 1.71875vw;
    width: 39.0625vw;
    height: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] {
    width: 100%;
    height: 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
  font-size: 1.25rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
    font-size: 4.2666666667vw;
  }
}
.c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
  font-size: 1rem;
  line-height: 1;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
    font-size: 3.2vw;
  }
}
.c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
  width: 26px;
  height: 26px;
  right: 17px;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    width: 2.03125vw;
    height: 2.03125vw;
    right: 1.328125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    right: 2.6666666667vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-link-button-dark--large[data-astro-cid-pp73tymo] {
  width: 300px;
  height: 60px;
  font-size: 1rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] {
    font-size: 1.25vw;
    width: 23.4375vw;
    height: 4.6875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] {
    width: 100%;
    height: 10.6666666667vw;
    font-size: 3.2vw;
  }
}
.c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label {
  font-size: 18px;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label {
    font-size: 3.2vw;
  }
}
.c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
  font-size: 1.25rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em {
    font-size: 4.2666666667vw;
  }
}
.c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
  font-size: 1rem;
  line-height: 1;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__label[data-astro-cid-pp73tymo] em.-small {
    font-size: 3.2vw;
  }
}
.c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
  width: 26px;
  height: 26px;
  right: 17px;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    width: 2.03125vw;
    height: 2.03125vw;
    right: 1.328125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    right: 2.6666666667vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-link-button-dark--small[data-astro-cid-pp73tymo] {
  width: 240px;
  height: 40px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--small[data-astro-cid-pp73tymo] {
    width: 18.75vw;
    height: 3.125vw;
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--small[data-astro-cid-pp73tymo] {
    font-size: 3.2vw;
    width: 68vw;
    height: 8vw;
  }
}
.c-link-button-dark--small[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
  width: 20px;
  height: 20px;
  right: 10px;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--small[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    width: 1.5625vw;
    height: 1.5625vw;
    right: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--small[data-astro-cid-pp73tymo] .c-link-button-dark__icon[data-astro-cid-pp73tymo] {
    right: 1.0666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.c-link-button-dark__label[data-astro-cid-pp73tymo] {
  text-align: center;
  line-height: 1.2;
}
.c-link-button-dark__label[data-astro-cid-pp73tymo] em {
  margin-inline-end: 4px;
}
.c-link-button-dark__icon[data-astro-cid-pp73tymo] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-modal[data-astro-cid-djzfojnw] {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal__overlay[data-astro-cid-djzfojnw] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.c-modal__dialog[data-astro-cid-djzfojnw] {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-height: calc(100vh - 40px);
  padding: 80px 24px 90px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
@media only screen and (max-width: 1280px) {
  .c-modal__dialog[data-astro-cid-djzfojnw] {
    width: 78.125vw;
    padding: 6.25vw 1.875vw 7.03125vw;
    border-radius: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__dialog[data-astro-cid-djzfojnw] {
    width: 85.3333333333vw;
    padding: 13.3333333333vw 5.8666666667vw;
    border-radius: 4.2666666667vw;
  }
}
.c-modal__close[data-astro-cid-djzfojnw] {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-modal__close[data-astro-cid-djzfojnw]:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__close[data-astro-cid-djzfojnw] {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.c-modal__head[data-astro-cid-djzfojnw] {
  margin-inline: auto;
  text-align: center;
}
.c-modal__head-text[data-astro-cid-djzfojnw] {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 1280px) {
  .c-modal__head-text[data-astro-cid-djzfojnw] {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__head-text[data-astro-cid-djzfojnw] {
    font-size: 4.2666666667vw;
  }
}
.c-modal__lead[data-astro-cid-djzfojnw] {
  margin-block-end: 32px;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .c-modal__lead[data-astro-cid-djzfojnw] {
    margin-block-end: 2.5vw;
    font-size: 2.03125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__lead[data-astro-cid-djzfojnw] {
    margin-block-end: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.c-modal__actions[data-astro-cid-djzfojnw] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media only screen and (max-width: 1280px) {
  .c-modal__actions[data-astro-cid-djzfojnw] {
    gap: 0.9375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__actions[data-astro-cid-djzfojnw] {
    flex-direction: column;
    gap: 3.2vw;
  }
}
@media screen and (min-width: 640px) {
  .c-modal__actions[data-astro-cid-djzfojnw] {
    gap: 16px;
  }
}
.c-btn {
  width: 500px;
  height: 80px;
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  .c-btn {
    width: 39.0625vw;
    height: 6.25vw;
    font-size: 1.5625vw;
  }
  .c-btn span[data-astro-cid-djzfojnw] {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn {
    width: 85.3333333333vw;
    height: auto;
    font-size: 3.7333333333vw;
  }
  .c-btn span[data-astro-cid-djzfojnw] {
    font-size: 3.4666666667vw;
  }
}
.c-link-button-dark__label {
  font-size: 20px !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark__label {
    font-size: 1.5625vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark__label {
    font-size: 3.7333333333vw !important;
  }
}
.c-link-button-dark__label small[data-astro-cid-djzfojnw] {
  display: block;
  font-size: 1rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark__label small[data-astro-cid-djzfojnw] {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark__label small[data-astro-cid-djzfojnw] {
    font-size: 3.2vw;
  }
}
.c-link-button-dark--xlarge {
  height: 80px !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge {
    height: 6.25vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge {
    height: 13.3333333333vw !important;
  }
}
.c-link-button-dark--xlarge .c-link-button-dark__icon {
  width: 30px !important;
  height: 30px !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge .c-link-button-dark__icon {
    width: 2.34375vw !important;
    height: 2.34375vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge .c-link-button-dark__icon {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-modal__text[data-astro-cid-djzfojnw] {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  margin-block-end: 40px;
}
@media only screen and (max-width: 1280px) {
  .c-modal__text[data-astro-cid-djzfojnw] {
    font-size: 1.25vw;
    margin-block-end: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__text[data-astro-cid-djzfojnw] {
    text-align: left;
    font-size: 3.7333333333vw;
    margin-block-end: 5.3333333333vw;
  }
}
.sr-only[data-astro-cid-djzfojnw] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media only screen and (max-width: 767px) {
  span[data-astro-cid-jzrlwijv].u-sp-only {
    display: inline;
  }
}
span[data-astro-cid-jzrlwijv].u-pc-only {
  display: inline;
}
@media only screen and (max-width: 767px) {
  span[data-astro-cid-jzrlwijv].u-pc-only {
    display: none;
  }
}
.lead[data-astro-cid-jzrlwijv] {
  padding-block: 70px;
}
@media only screen and (max-width: 1280px) {
  .lead[data-astro-cid-jzrlwijv] {
    padding-block: 5.46875vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead[data-astro-cid-jzrlwijv] {
    padding-block: 13.3333333333vw;
  }
}
.lead-title[data-astro-cid-jzrlwijv] {
  text-align: center;
  width: 480px;
  margin-inline: auto;
  margin-bottom: 10px;
  marin-inline: auto;
}
@media only screen and (max-width: 1280px) {
  .lead-title[data-astro-cid-jzrlwijv] {
    width: 37.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-title[data-astro-cid-jzrlwijv] {
    width: 77.6vw;
  }
}
.u-animation-underline[data-astro-cid-jzrlwijv]:has(.notice) {
  margin-block-start: 5px;
}
@media only screen and (max-width: 1280px) {
  .u-animation-underline[data-astro-cid-jzrlwijv]:has(.notice) {
    margin-block-start: 0.390625vw;
  }
}
@media only screen and (max-width: 767px) {
  .u-animation-underline[data-astro-cid-jzrlwijv]:has(.notice) {
    margin-block-start: 0;
  }
}
.u-animation-underline[data-astro-cid-jzrlwijv]:has(.notice)::before {
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .u-animation-underline[data-astro-cid-jzrlwijv]:has(.notice)::before {
    top: calc(50% + 6px);
  }
}
.notice[data-astro-cid-jzrlwijv] {
  position: relative;
  font-size: 1.25rem;
  display: inline-block;
  margin-block-end: 10px;
}
@media only screen and (max-width: 1280px) {
  .notice[data-astro-cid-jzrlwijv] {
    margin-block-end: 0.78125vw;
    font-size: 2.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .notice[data-astro-cid-jzrlwijv] {
    margin-block-end: 0;
    font-size: 3.7333333333vw;
  }
}
.lead-text[data-astro-cid-jzrlwijv] {
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .lead-text[data-astro-cid-jzrlwijv] {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] {
    font-size: 3.7333333333vw;
  }
}
.lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] {
  line-height: 1;
  color: #ff8303;
  font-size: 2rem;
}
@media only screen and (max-width: 1280px) {
  .lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] {
    font-size: 5.3333333333vw;
  }
}
.lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] small[data-astro-cid-jzrlwijv] {
  font-size: 1.75rem;
}
@media only screen and (max-width: 1280px) {
  .lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] small[data-astro-cid-jzrlwijv] {
    font-size: 2.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] small[data-astro-cid-jzrlwijv] {
    font-size: 5.3333333333vw;
  }
}
.lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] .pc-small[data-astro-cid-jzrlwijv] {
  font-size: 1.75rem;
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] strong[data-astro-cid-jzrlwijv] .pc-small[data-astro-cid-jzrlwijv] {
    font-size: 1.25rem;
  }
}
.lead-text[data-astro-cid-jzrlwijv] em[data-astro-cid-jzrlwijv] {
  font-size: 2.25rem;
}
@media only screen and (max-width: 1280px) {
  .lead-text[data-astro-cid-jzrlwijv] em[data-astro-cid-jzrlwijv] {
    font-size: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] em[data-astro-cid-jzrlwijv] {
    font-size: 6.9333333333vw;
  }
}
.lead-text[data-astro-cid-jzrlwijv] .small[data-astro-cid-jzrlwijv] {
  font-size: 1.75rem;
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .lead-text[data-astro-cid-jzrlwijv] .small[data-astro-cid-jzrlwijv] {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .lead-text[data-astro-cid-jzrlwijv] .small[data-astro-cid-jzrlwijv] {
    font-size: 5.3333333333vw;
  }
}
.note[data-astro-cid-jzrlwijv] {
  display: block;
  text-align: center;
  margin-block-start: 10px;
  font-size: 0.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 1280px) {
  .note[data-astro-cid-jzrlwijv] {
    margin-block-start: 0.78125vw;
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .note[data-astro-cid-jzrlwijv] {
    text-align: left;
    margin-block-start: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
.trigger[data-astro-cid-jzrlwijv] {
  margin-block-start: 62px;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .trigger[data-astro-cid-jzrlwijv] {
    margin-block-start: 4.84375vw;
  }
}
@media only screen and (max-width: 767px) {
  .trigger[data-astro-cid-jzrlwijv] {
    text-align: left;
    margin-block-start: 9.6vw;
  }
}
.trigger-text[data-astro-cid-jzrlwijv] {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #ff8303;
}
@media only screen and (max-width: 1280px) {
  .trigger-text[data-astro-cid-jzrlwijv] {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-text[data-astro-cid-jzrlwijv] {
    align-items: flex-end;
    font-size: 3.4666666667vw;
  }
}
@media (any-hover: hover) {
  .trigger-text[data-astro-cid-jzrlwijv] {
    transition: color 0.3s;
  }
  .trigger-text[data-astro-cid-jzrlwijv]:hover {
    color: #ffb05f;
    text-decoration: none;
  }
  .trigger-text[data-astro-cid-jzrlwijv]:hover svg[data-astro-cid-jzrlwijv] circle[data-astro-cid-jzrlwijv] {
    fill: #ffb05f;
  }
}
.trigger-text[data-astro-cid-jzrlwijv] svg[data-astro-cid-jzrlwijv] {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .trigger-text[data-astro-cid-jzrlwijv] svg[data-astro-cid-jzrlwijv] {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.period-wrap[data-astro-cid-adr3axnh] {
  margin-block-start: 42px;
  background-color: #feec96;
  border-radius: 15px;
  border: 4px solid #000;
  padding: 22px 30px;
}
@media only screen and (max-width: 1280px) {
  .period-wrap[data-astro-cid-adr3axnh] {
    margin-block-start: 3.28125vw;
    padding: 1.71875vw 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-wrap[data-astro-cid-adr3axnh] {
    margin-block-start: 8vw;
    border-width: 3px;
    padding: 4.2666666667vw 1.6vw;
  }
}
.period-inner[data-astro-cid-adr3axnh] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1280px) {
  .period-inner[data-astro-cid-adr3axnh] {
    gap: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-inner[data-astro-cid-adr3axnh] {
    flex-direction: column;
    gap: 1.8666666667vw;
  }
}
.period-label[data-astro-cid-adr3axnh] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 9999px;
  padding: 8px 20px 4px;
  line-height: 1;
}
@media only screen and (max-width: 1280px) {
  .period-label[data-astro-cid-adr3axnh] {
    font-size: 1.875vw;
    padding: 0.625vw 1.5625vw 0.3125vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-label[data-astro-cid-adr3axnh] {
    padding: 1.6vw 6.4vw;
    border-width: 2px;
    font-size: 3.7333333333vw;
  }
}
.period-text[data-astro-cid-adr3axnh] {
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (max-width: 1280px) {
  .period-text[data-astro-cid-adr3axnh] {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-text[data-astro-cid-adr3axnh] {
    letter-spacing: 0.01em;
    font-size: 4.8vw;
  }
}
.period-text em {
  display: inline-flex;
  letter-spacing: -0.02em;
  font-size: 2.875rem;
}
@media only screen and (max-width: 1280px) {
  .period-text em {
    font-size: 3.59375vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-text em {
    letter-spacing: 0;
    font-size: 6.4vw;
  }
}
.period-text span {
  font-size: 1.6875rem;
}
@media only screen and (max-width: 1280px) {
  .period-text span {
    font-size: 2.109375vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-text span {
    font-size: 4.2666666667vw;
  }
}
.period-text span:last-child {
  font-size: 32px;
}
@media only screen and (max-width: 1280px) {
  .period-text span:last-child {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-text span:last-child {
    font-size: 5.3333333333vw;
  }
}
.period-note[data-astro-cid-adr3axnh] {
  margin-top: 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (max-width: 1280px) {
  .period-note[data-astro-cid-adr3axnh] {
    margin-top: 0.78125vw;
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .period-note[data-astro-cid-adr3axnh] {
    margin-top: 0.8vw;
    font-size: 2.6666666667vw;
  }
}
.app[data-astro-cid-lvam75m3] {
  margin-block-start: 92px;
}
@media only screen and (max-width: 1280px) {
  .app[data-astro-cid-lvam75m3] {
    margin-block-start: 7.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .app[data-astro-cid-lvam75m3] {
    margin-block-start: 16.5333333333vw;
  }
}
.app-head[data-astro-cid-lvam75m3] {
  width: 484px;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1280px) {
  .app-head[data-astro-cid-lvam75m3] {
    width: 37.8125vw;
    margin-bottom: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-head[data-astro-cid-lvam75m3] {
    width: 73.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.app-text[data-astro-cid-lvam75m3] {
  margin-block-end: 20px;
}
@media only screen and (max-width: 1280px) {
  .app-text[data-astro-cid-lvam75m3] {
    margin-block-end: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-text[data-astro-cid-lvam75m3] {
    padding-inline-start: 24vw;
    margin-block-end: 2.6666666667vw;
  }
}
.app-text-picture[data-astro-cid-lvam75m3] img[data-astro-cid-lvam75m3] {
  width: 475px;
}
@media only screen and (max-width: 1280px) {
  .app-text-picture[data-astro-cid-lvam75m3] img[data-astro-cid-lvam75m3] {
    width: 37.109375vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-text-picture[data-astro-cid-lvam75m3] img[data-astro-cid-lvam75m3] {
    width: 50.1333333333vw;
  }
}
.app-information[data-astro-cid-lvam75m3] {
  text-align: left;
  display: grid;
  position: relative;
  background-color: #feec96;
  border-radius: 15px;
  border: 4px solid #000;
  padding: 28px 36px;
}
@media only screen and (max-width: 1280px) {
  .app-information[data-astro-cid-lvam75m3] {
    padding: 2.1875vw 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information[data-astro-cid-lvam75m3] {
    padding: 4.2666666667vw;
  }
}
.app-information[data-astro-cid-lvam75m3]::before {
  position: absolute;
  bottom: calc(100% + 4px);
  left: calc(50% - 450px);
  content: "";
  width: 170px;
  height: 129px;
  background: url(/about/campaign/opcampaign/assets/images/illust_chibione-app.png) no-repeat center center / 100% auto;
}
@media only screen and (max-width: 1280px) {
  .app-information[data-astro-cid-lvam75m3]::before {
    left: calc(50% - 35.15625vw);
    width: 13.28125vw;
    height: 10.078125vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information[data-astro-cid-lvam75m3]::before {
    left: calc(50% - 37.8666666667vw);
    width: 21.8666666667vw;
    height: 16.5333333333vw;
  }
}
.app-information-text[data-astro-cid-lvam75m3] {
  font-size: 20px;
  font-weight: 700;
  grid-area: 1 / 1 / 2 / 2;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 1280px) {
  .app-information-text[data-astro-cid-lvam75m3] {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information-text[data-astro-cid-lvam75m3] {
    grid-area: auto;
    font-size: 4.2666666667vw;
    text-align: center;
    margin-block-end: 1.6vw;
  }
}
.app-information-list[data-astro-cid-lvam75m3] {
  grid-area: 1 / 2 / 3 / 3;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-block-start: 5px;
}
@media only screen and (max-width: 1280px) {
  .app-information-list[data-astro-cid-lvam75m3] {
    margin-block-start: 0.390625vw;
    gap: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information-list[data-astro-cid-lvam75m3] {
    grid-area: auto;
    margin-block: 0 1.3333333333vw;
    gap: 4vw;
  }
}
.app-information-logo[data-astro-cid-lvam75m3] {
  display: block;
  height: 65px;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1280px) {
  .app-information-logo[data-astro-cid-lvam75m3] {
    height: 5.078125vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information-logo[data-astro-cid-lvam75m3] {
    height: auto;
  }
}
.app-information-logo[data-astro-cid-lvam75m3] img[data-astro-cid-lvam75m3] {
  height: 100%;
}
@media (any-hover: hover) {
  .app-information-logo[data-astro-cid-lvam75m3]:hover {
    opacity: 0.7;
  }
}
.app-information-note[data-astro-cid-lvam75m3] {
  margin-block-start: 2px;
  grid-area: 2 / 1 / 3 / 2;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 1280px) {
  .app-information-note[data-astro-cid-lvam75m3] {
    font-size: 0.859375vw;
    margin-block-start: 0.15625vw;
  }
}
@media only screen and (max-width: 767px) {
  .app-information-note[data-astro-cid-lvam75m3] {
    grid-area: auto;
    font-size: 2.6666666667vw;
    margin-block-start: 1.6vw;
  }
}
.plan-cta[data-astro-cid-ck6tmgbj] {
  margin-block-start: 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px;
}
@media only screen and (max-width: 1280px) {
  .plan-cta[data-astro-cid-ck6tmgbj] {
    margin-block-start: 7.03125vw;
    gap: 4.53125vw;
  }
}
@media only screen and (max-width: 767px) {
  .plan-cta[data-astro-cid-ck6tmgbj] {
    grid-template-columns: 1fr;
    margin-block-start: 16.5333333333vw;
    gap: 5.3333333333vw;
  }
}
.plan-cta[data-astro-cid-ck6tmgbj] .c-btn[data-astro-cid-ck6tmgbj] {
  width: 100%;
  height: 100px;
  font-size: 24px;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  .plan-cta[data-astro-cid-ck6tmgbj] .c-btn[data-astro-cid-ck6tmgbj] {
    font-size: 1.875vw;
    height: 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .plan-cta[data-astro-cid-ck6tmgbj] .c-btn[data-astro-cid-ck6tmgbj] {
    font-size: 4.2666666667vw;
    height: 16vw;
  }
}
.plan-cta[data-astro-cid-ck6tmgbj] .c-btn__icon {
  width: 40px;
  height: 40px;
  right: 30px;
}
@media only screen and (max-width: 1280px) {
  .plan-cta[data-astro-cid-ck6tmgbj] .c-btn__icon {
    width: 3.125vw;
    height: 3.125vw;
    right: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .plan-cta[data-astro-cid-ck6tmgbj] .c-btn__icon {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    right: 4.2666666667vw;
  }
}
.terms[data-astro-cid-qtnfriwc] {
  text-align: left;
  background-color: #ececec;
  margin-block-start: 90px;
  padding: 30px 38px;
  border-radius: 15px;
}
@media only screen and (max-width: 1280px) {
  .terms[data-astro-cid-qtnfriwc] {
    margin-block-start: 7.03125vw;
    padding: 2.34375vw 2.96875vw;
  }
}
@media only screen and (max-width: 767px) {
  .terms[data-astro-cid-qtnfriwc] {
    margin-block-start: 16.5333333333vw;
    padding: 8vw 5.3333333333vw;
  }
}
.terms-title[data-astro-cid-qtnfriwc] {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-block-end: 16px;
}
@media only screen and (max-width: 1280px) {
  .terms-title[data-astro-cid-qtnfriwc] {
    font-size: 1.5625vw;
    margin-block-end: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .terms-title[data-astro-cid-qtnfriwc] {
    font-size: 4.2666666667vw;
    margin-block-end: 2.6666666667vw;
  }
}
.terms-item[data-astro-cid-qtnfriwc] {
  text-indent: -1.2em;
  padding-left: 1.2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  text-decoration: none;
}
@media only screen and (max-width: 1280px) {
  .terms-item[data-astro-cid-qtnfriwc] {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .terms-item[data-astro-cid-qtnfriwc] {
    font-size: 2.6666666667vw;
  }
}
.terms-item[data-astro-cid-qtnfriwc] {
}
.terms-item[data-astro-cid-qtnfriwc] a[data-astro-cid-qtnfriwc] {
  text-decoration: none !important;
}
.terms-action[data-astro-cid-qtnfriwc] {
  margin-block-start: 50px;
}
@media only screen and (max-width: 1280px) {
  .terms-action[data-astro-cid-qtnfriwc] {
    margin-block-start: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .terms-action[data-astro-cid-qtnfriwc] {
    margin-block-start: 5.3333333333vw;
  }
}
.terms-action[data-astro-cid-qtnfriwc] .c-link-button-dark--xlarge {
  height: 80px;
}
@media only screen and (max-width: 1280px) {
  .terms-action[data-astro-cid-qtnfriwc] .c-link-button-dark--xlarge {
    height: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .terms-action[data-astro-cid-qtnfriwc] .c-link-button-dark--xlarge {
    height: 10.6666666667vw;
  }
}
.c-link-button-dark--xlarge .c-link-button-dark__label {
  font-size: 1.375rem;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge .c-link-button-dark__label {
    font-size: 1.71875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge .c-link-button-dark__label {
    font-size: 4vw;
  }
}
.c-link-button-dark--xlarge .c-link-button-dark__icon {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--xlarge .c-link-button-dark__icon {
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--xlarge .c-link-button-dark__icon {
    width: 5.3333333333vw !important;
    height: 5.3333333333vw !important;
  }
}
.tab-content[data-astro-cid-r7zhmkir] {
  box-shadow: 10px 10px 0px 0 rgb(0, 0, 0);
  background-color: #fff;
  text-align: center;
  border: 4px solid #000;
  border-radius: 30px;
  padding-inline: 96px;
  padding-block: 53px 100px;
}
@media only screen and (max-width: 1280px) {
  .tab-content[data-astro-cid-r7zhmkir] {
    padding-inline: 7.5vw;
    padding-block: 5.078125vw 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content[data-astro-cid-r7zhmkir] {
    border-radius: 20px;
    padding: 6.6666666667vw 4vw 7.4666666667vw;
  }
}
.tab-content_head[data-astro-cid-r7zhmkir] {
  padding-inline: 55px 46px;
  display: inline-block;
  color: #ff6161;
  font-weight: 900;
  font-size: 2.625rem;
  background: url("data:image/svg+xml,%3csvg%20width='30'%20height='61'%20viewBox='0%200%2030%2061'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3_1351)'%3e%3cpath%20d='M26.8708%2030.5L0.734869%2026.6261V34.374L26.8708%2030.5Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='2.32'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M29.4109%2014.8766L10.3062%205.75023L13.7204%200.593506L29.4109%2014.8766Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M29.4109%2046.1233L10.3062%2055.2497L13.7204%2060.4064L29.4109%2046.1233Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_3_1351'%3e%3crect%20width='30'%20height='61'%20fill='white'%20transform='matrix(-1%200%200%201%2030%200)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
    no-repeat left center / 30px auto,
    url("data:image/svg+xml,%3csvg%20width='30'%20height='61'%20viewBox='0%200%2030%2061'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_2014_835)'%3e%3cpath%20d='M3.12915%2030.4999L29.2651%2026.626V34.3738L3.12915%2030.4999Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='2.32'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M0.589111%2014.8766L19.6938%205.75023L16.2796%200.593506L0.589111%2014.8766Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M0.589111%2046.1233L19.6938%2055.2497L16.2796%2060.4064L0.589111%2046.1233Z'%20fill='%23FF6161'%20stroke='%23FF6161'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_2014_835'%3e%3crect%20width='30'%20height='61'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
    no-repeat right center / 30px auto;
}
@media only screen and (max-width: 1280px) {
  .tab-content_head[data-astro-cid-r7zhmkir] {
    padding-inline: 4.296875vw 3.59375vw;
    font-size: 3.28125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-r7zhmkir] {
    background-size: 3.7333333333vw auto;
    padding-inline: 6.6666666667vw;
    font-size: 5.0666666667vw;
  }
}
.tab-content_head[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
  line-height: 1.2;
  font-size: 5.25rem;
}
@media only screen and (max-width: 1280px) {
  .tab-content_head[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 6.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 9.8666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-r7zhmkir] span[data-astro-cid-r7zhmkir] {
    display: inline-block;
    transform: translateX(5px);
  }
}
.tab-content_text[data-astro-cid-r7zhmkir] {
  margin-block-start: 36px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.95;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-r7zhmkir] {
    margin-block-start: 2.8125vw;
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-r7zhmkir] {
    line-height: 1.7;
    margin-block-start: 1.6vw;
    font-size: 3.7333333333vw;
  }
}
.tab-content_text[data-astro-cid-r7zhmkir] .u-color-orange[data-astro-cid-r7zhmkir] {
  font-weight: 900;
}
.tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
  color: #ff8303;
  font-size: 1.875rem;
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 5.3333333333vw;
  }
}
.tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] em[data-astro-cid-r7zhmkir] {
  font-size: 2.25rem;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] em[data-astro-cid-r7zhmkir] {
    font-size: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] em[data-astro-cid-r7zhmkir] {
    font-size: 6.9333333333vw;
  }
}
.tab-content_text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] span[data-astro-cid-r7zhmkir] {
  line-height: 1;
}
.button-wrap[data-astro-cid-r7zhmkir] {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-block-start: 32px;
}
@media only screen and (max-width: 1280px) {
  .button-wrap[data-astro-cid-r7zhmkir] {
    margin-block-start: 2.5vw;
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .button-wrap[data-astro-cid-r7zhmkir] {
    margin-block-start: 0;
    padding-block-start: 16.5333333333vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.6666666667vw;
  }
  .button-wrap[data-astro-cid-r7zhmkir]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45.8666666667vw;
    height: 16.5333333333vw;
    background: var(--illust-sp) no-repeat center center / contain;
  }
}
.illust-chibione[data-astro-cid-r7zhmkir] {
  position: absolute;
  bottom: -38px;
  left: calc(50% + 300px);
  width: 236px;
  height: 320px;
}
@media only screen and (max-width: 1280px) {
  .illust-chibione[data-astro-cid-r7zhmkir] {
    bottom: -2.96875vw;
    left: calc(50% + 23.4375vw);
    width: 18.4375vw;
    height: 25vw;
  }
}
@media only screen and (max-width: 767px) {
  .illust-chibione[data-astro-cid-r7zhmkir] {
    display: none;
  }
}
.reason[data-astro-cid-r7zhmkir] {
  margin-block-start: 35px;
}
@media only screen and (max-width: 1280px) {
  .reason[data-astro-cid-r7zhmkir] {
    margin-block-start: 2.734375vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason[data-astro-cid-r7zhmkir] {
    margin-block-start: 8vw;
  }
}
.reason-head[data-astro-cid-r7zhmkir] {
  width: 600px;
  margin-inline: auto;
  transform: translateX(-42px);
}
@media only screen and (max-width: 1280px) {
  .reason-head[data-astro-cid-r7zhmkir] {
    transform: translateX(-3.28125vw);
    width: 46.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-head[data-astro-cid-r7zhmkir] {
    width: 60.2666666667vw;
    transform: translateX(-3.2vw);
  }
}
.reason-container[data-astro-cid-r7zhmkir] {
  position: relative;
  z-index: 1;
  text-align: center;
  border: 4px solid #000;
  border-radius: 15px;
  background-color: #fff;
  padding: 26px 30px;
}
@media only screen and (max-width: 1280px) {
  .reason-container[data-astro-cid-r7zhmkir] {
    padding: 2.03125vw 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-container[data-astro-cid-r7zhmkir] {
    border-width: 3px;
    padding: 6.4vw 4.8vw 7.4666666667vw;
  }
}
.reason-text[data-astro-cid-r7zhmkir] {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 1280px) {
  .reason-text[data-astro-cid-r7zhmkir] {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-text[data-astro-cid-r7zhmkir] {
    font-size: 3.7333333333vw;
  }
}
.list[data-astro-cid-r7zhmkir] {
  display: grid;
  grid-template-columns: repeat(3, 242px);
  justify-content: center;
  gap: 14px;
  margin-block: 15px 20px;
  max-width: 754px;
  margin-inline: auto;
}
@media only screen and (max-width: 1280px) {
  .list[data-astro-cid-r7zhmkir] {
    grid-template-columns: repeat(3, 18.90625vw);
    gap: 1.09375vw;
    margin-block: 1.171875vw 1.5625vw;
    max-width: 58.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .list[data-astro-cid-r7zhmkir] {
    grid-template-columns: 1fr;
    gap: 1.6vw;
    margin-block: 2.6666666667vw 3.2vw;
    max-width: 100%;
  }
}
.item[data-astro-cid-r7zhmkir] {
  position: relative;
  width: 242px;
}
@media only screen and (max-width: 1280px) {
  .item[data-astro-cid-r7zhmkir] {
    width: 18.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .item[data-astro-cid-r7zhmkir] {
    width: 68vw;
  }
}
@media only screen and (max-width: 767px) {
  .item[data-astro-cid-r7zhmkir]:nth-child(1) {
    padding-block-start: 6.9333333333vw;
  }
}
.item[data-astro-cid-r7zhmkir]:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -72px;
  width: 102px;
  height: 96px;
  background: url(/about/campaign/opcampaign/assets/images/illust_chibione-example-pc.png) no-repeat center center /
    contain;
}
@media only screen and (max-width: 1280px) {
  .item[data-astro-cid-r7zhmkir]:nth-child(1)::before {
    top: -1.5625vw;
    left: -5.625vw;
    width: 7.96875vw;
    height: 7.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .item[data-astro-cid-r7zhmkir]:nth-child(1)::before {
    width: 28.2666666667vw;
    height: 6.9333333333vw;
    top: 0;
    left: calc(50% - 3.2vw);
    transform: translateX(-50%);
    background: url(/about/campaign/opcampaign/assets/images/illust_chibione-example-sp.png) no-repeat center center /
      contain;
  }
}
.howto[data-astro-cid-r7zhmkir] {
  margin-block-start: 90px;
}
@media only screen and (max-width: 1280px) {
  .howto[data-astro-cid-r7zhmkir] {
    margin-block-start: 7.03125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto[data-astro-cid-r7zhmkir] {
    margin-block-start: 16vw;
  }
}
.howto-head[data-astro-cid-r7zhmkir] {
  width: 230px;
  margin-inline: auto;
  margin-block-end: 50px;
}
@media only screen and (max-width: 1280px) {
  .howto-head[data-astro-cid-r7zhmkir] {
    width: 17.96875vw;
    margin-block-end: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-head[data-astro-cid-r7zhmkir] {
    width: 35.2vw;
    margin-block-end: 5.3333333333vw;
  }
}
.howto-list[data-astro-cid-r7zhmkir] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media only screen and (max-width: 1280px) {
  .howto-list[data-astro-cid-r7zhmkir] {
    gap: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-list[data-astro-cid-r7zhmkir] {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
}
.howto-item[data-astro-cid-r7zhmkir] {
  position: relative;
  border: 4px solid #000;
  border-radius: 15px;
  background-color: #fff;
  padding: 25px 20px 15px;
  text-align: center;
  transform: translateX(10px);
}
@media only screen and (max-width: 1280px) {
  .howto-item[data-astro-cid-r7zhmkir] {
    padding: 1.953125vw 1.5625vw 1.171875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item[data-astro-cid-r7zhmkir] {
    transform: none;
    border-width: 3px;
    padding: 6.6666666667vw 3.7333333333vw 5.3333333333vw;
  }
}
.c-link-button-dark--large .c-link-button-dark__label {
  font-size: 1rem !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large .c-link-button-dark__label {
    font-size: 1.25vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large .c-link-button-dark__label {
    font-size: 3.2vw !important;
  }
}
.howto-item-num[data-astro-cid-r7zhmkir] {
  position: absolute;
  top: -21px;
  left: -25px;
  width: 88px;
  height: 88px;
  background-color: #ff6161;
  border-radius: 50%;
}
@media only screen and (max-width: 1280px) {
  .howto-item-num[data-astro-cid-r7zhmkir] {
    top: -1.640625vw;
    left: -1.171875vw;
    width: 6.875vw;
    height: 6.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-num[data-astro-cid-r7zhmkir] {
    top: -6.4vw;
    left: -2.9333333333vw;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }
}
.howto-figure[data-astro-cid-r7zhmkir] {
  width: 138px;
  height: 133px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1280px) {
  .howto-figure[data-astro-cid-r7zhmkir] {
    width: 10.78125vw;
    height: 10.390625vw;
    margin-bottom: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-figure[data-astro-cid-r7zhmkir] {
    width: 32vw;
    height: auto;
    margin-bottom: 3.2vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-figure[data-astro-cid-r7zhmkir].-reward {
    width: 41.6vw;
  }
}
.howto-item-text[data-astro-cid-r7zhmkir] {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .howto-item-text[data-astro-cid-r7zhmkir] {
    font-size: 1.40625vw;
    margin-bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-text[data-astro-cid-r7zhmkir] {
    font-size: 3.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.howto-item-text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1280px) {
  .howto-item-text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-text[data-astro-cid-r7zhmkir] strong[data-astro-cid-r7zhmkir] {
    font-size: 5.3333333333vw;
  }
}
.howto-note-wrap[data-astro-cid-r7zhmkir] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  transform: translateX(10px);
}
@media only screen and (max-width: 767px) {
  .howto-note-wrap[data-astro-cid-r7zhmkir] {
    transform: none;
    flex-direction: column;
  }
}
.howto-note[data-astro-cid-r7zhmkir] {
  margin-block-start: 10px;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
  text-align: center;
  font-size: 0.875rem;
}
@media only screen and (max-width: 1280px) {
  .howto-note[data-astro-cid-r7zhmkir] {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-note[data-astro-cid-r7zhmkir] {
    text-align: left;
    font-size: 2.6666666667vw;
  }
  .howto-note[data-astro-cid-r7zhmkir] + .howto-note[data-astro-cid-r7zhmkir] {
    margin-block-start: 0;
  }
}
.coupon[data-astro-cid-j4drq7s7] {
  margin-block-start: 90px;
}
@media only screen and (max-width: 1280px) {
  .coupon[data-astro-cid-j4drq7s7] {
    margin-block-start: 7.03125vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon[data-astro-cid-j4drq7s7] {
    margin-block-start: 16vw;
  }
}
.coupon-head[data-astro-cid-j4drq7s7] {
  width: 432px;
  margin-block-end: 40px;
  margin-inline: auto;
}
@media only screen and (max-width: 1280px) {
  .coupon-head[data-astro-cid-j4drq7s7] {
    width: 33.75vw;
    margin-block-end: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-head[data-astro-cid-j4drq7s7] {
    width: 67.2vw;
    margin-block-end: 5.3333333333vw;
  }
}
.coupon-list[data-astro-cid-j4drq7s7] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 40px;
}
@media only screen and (max-width: 1280px) {
  .coupon-list[data-astro-cid-j4drq7s7] {
    gap: 1.796875vw 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-list[data-astro-cid-j4drq7s7] {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.coupon-item[data-astro-cid-j4drq7s7] {
  border: 4px solid #000;
  border-radius: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .coupon-item[data-astro-cid-j4drq7s7] {
    border-width: 0.3125vw;
    border-radius: 1.171875vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item[data-astro-cid-j4drq7s7] {
    border-width: 0.8vw;
    border-radius: 4vw;
  }
}
.coupon-item-title[data-astro-cid-j4drq7s7] {
  background-color: #02b3e5;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  padding-block: 11px 8px;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-title[data-astro-cid-j4drq7s7] {
    font-size: 1.40625vw;
    padding-block: 0.859375vw 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-title[data-astro-cid-j4drq7s7] {
    font-size: 3.7333333333vw;
    padding-block: 2.1333333333vw 1.6vw;
  }
}
.coupon-item-body[data-astro-cid-j4drq7s7] {
  padding-block-end: 24px;
  padding-inline: 36px;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-body[data-astro-cid-j4drq7s7] {
    padding-block-end: 1.875vw;
    padding-inline: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-body[data-astro-cid-j4drq7s7] {
    padding-block-end: 5.3333333333vw;
    padding-inline: 2.6666666667vw;
  }
}
.coupon-item-figure[data-astro-cid-j4drq7s7] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 96px;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7] {
    min-height: 7.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7] {
    min-height: 20vw;
  }
}
.coupon-item-figure[data-astro-cid-j4drq7s7].-cinemas img[data-astro-cid-j4drq7s7] {
  display: inline-block;
  width: 231px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-cinemas img[data-astro-cid-j4drq7s7] {
    width: 18.046875vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-cinemas img[data-astro-cid-j4drq7s7] {
    width: 49.3333333333vw;
  }
}
.coupon-item-figure[data-astro-cid-j4drq7s7].-navi img[data-astro-cid-j4drq7s7] {
  display: inline-block;
  width: 215px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-navi img[data-astro-cid-j4drq7s7] {
    width: 16.796875vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-navi img[data-astro-cid-j4drq7s7] {
    width: 44vw;
  }
}
.coupon-item-figure[data-astro-cid-j4drq7s7].-online img[data-astro-cid-j4drq7s7] {
  display: inline-block;
  width: 237px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-online img[data-astro-cid-j4drq7s7] {
    width: 18.515625vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-online img[data-astro-cid-j4drq7s7] {
    width: 42.1333333333vw;
  }
}
.coupon-item-figure[data-astro-cid-j4drq7s7].-chantar img[data-astro-cid-j4drq7s7] {
  display: inline-block;
  width: 131px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-chantar img[data-astro-cid-j4drq7s7] {
    width: 10.234375vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-figure[data-astro-cid-j4drq7s7].-chantar img[data-astro-cid-j4drq7s7] {
    width: 24.5333333333vw;
  }
}
.coupon-item-text[data-astro-cid-j4drq7s7] {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-block-end: 13px;
}
@media only screen and (max-width: 1280px) {
  .coupon-item-text[data-astro-cid-j4drq7s7] {
    margin-block-end: 1.015625vw;
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-text[data-astro-cid-j4drq7s7] {
    margin-block-end: 3.7333333333vw;
    font-size: 4.2666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-item-summary[data-astro-cid-j4drq7s7] {
    padding-inline: 1.3333333333vw;
  }
}
.summary-head[data-astro-cid-j4drq7s7] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 1280px) {
  .summary-head[data-astro-cid-j4drq7s7] {
    gap: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .summary-head[data-astro-cid-j4drq7s7] {
    text-align: left;
    gap: 1.6vw;
  }
}
.summary-head-text[data-astro-cid-j4drq7s7] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media only screen and (max-width: 767px) {
  .summary-head-text[data-astro-cid-j4drq7s7] {
    align-items: flex-start;
  }
}
.summary-head-text[data-astro-cid-j4drq7s7] .label[data-astro-cid-j4drq7s7] {
  color: #fff;
  background-color: #000;
  border-radius: 999px;
  line-height: 1.2;
  padding-inline: 14px;
  padding-block: 3px 4px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .summary-head-text[data-astro-cid-j4drq7s7] .label[data-astro-cid-j4drq7s7] {
    padding-inline: 1.09375vw;
    padding-block: 0.234375vw 0.3125vw;
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .summary-head-text[data-astro-cid-j4drq7s7] .label[data-astro-cid-j4drq7s7] {
    flex-shrink: 0;
    font-size: 2.6666666667vw;
    padding-block: 1.0666666667vw 0.8vw;
    padding-inline: 2.1333333333vw;
  }
}
.summary-head-text[data-astro-cid-j4drq7s7] .value[data-astro-cid-j4drq7s7] {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 1280px) {
  .summary-head-text[data-astro-cid-j4drq7s7] .value[data-astro-cid-j4drq7s7] {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .summary-head-text[data-astro-cid-j4drq7s7] .value[data-astro-cid-j4drq7s7] {
    font-size: 3.2vw;
  }
}
.note[data-astro-cid-j4drq7s7] {
  text-align: left;
  margin-block-start: 10px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  text-indent: -1.1em;
  padding-left: 1em;
}
@media only screen and (max-width: 1280px) {
  .note[data-astro-cid-j4drq7s7] {
    margin-block-start: 0.78125vw;
    font-size: 0.9375vw;
  }
}
@media only screen and (max-width: 767px) {
  .note[data-astro-cid-j4drq7s7] {
    margin-block-start: 2.6666666667vw;
    font-size: 2.6666666667vw;
    text-align: left;
  }
}
.note[data-astro-cid-j4drq7s7] + .note[data-astro-cid-j4drq7s7] {
  margin-block-start: 0;
}
.tab-content[data-astro-cid-e23gkc4x] {
  box-shadow: 10px 10px 0px 0 rgb(0, 0, 0);
  background-color: #fff;
  text-align: center;
  border-radius: 30px;
  border: 4px solid #000;
  padding-inline: 96px;
  padding-block: 57px 100px;
}
@media only screen and (max-width: 1280px) {
  .tab-content[data-astro-cid-e23gkc4x] {
    padding-inline: 7.5vw;
    padding-block: 4.453125vw 7.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content[data-astro-cid-e23gkc4x] {
    border-radius: 20px;
    padding: 6.6666666667vw 4vw 7.4666666667vw;
  }
}
.tab-content_head[data-astro-cid-e23gkc4x] {
  padding-inline: 55px 40px;
  display: inline-block;
  color: #02b3e5;
  font-weight: 900;
  font-size: 2.625rem;
  background: url("data:image/svg+xml,%3csvg%20width='30'%20height='61'%20viewBox='0%200%2030%2061'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3_801)'%3e%3cpath%20d='M26.8706%2030.5L0.734625%2026.6261V34.374L26.8706%2030.5Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='2.32'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M29.4111%2014.8766L10.3064%205.75023L13.7207%200.593506L29.4111%2014.8766Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M29.4111%2046.1233L10.3064%2055.2497L13.7207%2060.4064L29.4111%2046.1233Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_3_801'%3e%3crect%20width='30'%20height='61'%20fill='white'%20transform='matrix(-1%200%200%201%2030%200)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
    no-repeat left center / 30px auto,
    url("data:image/svg+xml,%3csvg%20width='30'%20height='61'%20viewBox='0%200%2030%2061'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_3_797)'%3e%3cpath%20d='M3.12939%2030.5L29.2654%2026.6261V34.374L3.12939%2030.5Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='2.32'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M0.588867%2014.8766L19.6936%205.75023L16.2793%200.593506L0.588867%2014.8766Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M0.588867%2046.1233L19.6936%2055.2497L16.2793%2060.4064L0.588867%2046.1233Z'%20fill='%2302B3E5'%20stroke='%2302B3E5'%20stroke-width='1.85'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_3_797'%3e%3crect%20width='30'%20height='61'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
    no-repeat right center / 30px auto;
}
@media only screen and (max-width: 1280px) {
  .tab-content_head[data-astro-cid-e23gkc4x] {
    padding-inline: 4.296875vw 3.125vw;
    font-size: 3.28125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-e23gkc4x] {
    background-size: 3.7333333333vw auto;
    padding-inline: 6.6666666667vw;
    font-size: 5.0666666667vw;
  }
}
.tab-content_head[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
  line-height: 1.2;
  font-size: 3.875rem;
}
@media only screen and (max-width: 1280px) {
  .tab-content_head[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 4.84375vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 7.4666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_head[data-astro-cid-e23gkc4x] span[data-astro-cid-e23gkc4x] {
    display: inline-block;
    transform: translateX(5px);
  }
}
.tab-content_text[data-astro-cid-e23gkc4x] {
  margin-block-start: 36px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.95;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-e23gkc4x] {
    margin-block-start: 2.8125vw;
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-e23gkc4x] {
    line-height: 1.7;
    margin-block-start: 1.6vw;
    font-size: 3.7333333333vw;
  }
}
.tab-content_text[data-astro-cid-e23gkc4x] .u-color-blue-sub[data-astro-cid-e23gkc4x] {
  font-weight: 900;
}
.tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
  font-weight: 700;
  color: #0488d4;
  font-size: 1.875rem;
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 5.3333333333vw;
  }
}
.tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] em[data-astro-cid-e23gkc4x] {
  font-size: 2.25rem;
}
@media only screen and (max-width: 1280px) {
  .tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] em[data-astro-cid-e23gkc4x] {
    font-size: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] em[data-astro-cid-e23gkc4x] {
    font-size: 6.9333333333vw;
  }
}
.tab-content_text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] span[data-astro-cid-e23gkc4x] {
  font-weight: 800;
  line-height: 1;
}
.tab-content_text[data-astro-cid-e23gkc4x] span.u-pc-only {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-e23gkc4x] span.u-pc-only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .tab-content_text[data-astro-cid-e23gkc4x] span.u-sp-only {
    display: inline;
  }
}
.button-wrap[data-astro-cid-e23gkc4x] {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-block-start: 42px;
}
@media only screen and (max-width: 1280px) {
  .button-wrap[data-astro-cid-e23gkc4x] {
    margin-block-start: 3.28125vw;
    gap: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .button-wrap[data-astro-cid-e23gkc4x] {
    margin-block-start: 0;
    padding-block-start: 16.5333333333vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9.6vw;
  }
  .button-wrap[data-astro-cid-e23gkc4x]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52.5333333333vw;
    height: 17.6vw;
    background: var(--illust-sp) no-repeat center center / contain;
  }
}
.illust-chibione[data-astro-cid-e23gkc4x] {
  position: absolute;
  bottom: -63px;
  left: calc(50% + 348px);
  width: 181px;
  height: 307px;
}
@media only screen and (max-width: 1280px) {
  .illust-chibione[data-astro-cid-e23gkc4x] {
    left: calc(50% + 27.1875vw);
    bottom: -4.921875vw;
    width: 14.140625vw;
    height: 23.984375vw;
  }
}
@media only screen and (max-width: 767px) {
  .illust-chibione[data-astro-cid-e23gkc4x] {
    display: none;
  }
}
.reason[data-astro-cid-e23gkc4x] {
  margin-block-start: 52px;
}
@media only screen and (max-width: 1280px) {
  .reason[data-astro-cid-e23gkc4x] {
    margin-block-start: 4.0625vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason[data-astro-cid-e23gkc4x] {
    margin-block-start: 8vw;
  }
}
.reason-head[data-astro-cid-e23gkc4x] {
  width: 704px;
  margin-inline: auto;
}
@media only screen and (max-width: 1280px) {
  .reason-head[data-astro-cid-e23gkc4x] {
    width: 55vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-head[data-astro-cid-e23gkc4x] {
    width: 76.8vw;
  }
}
.reason-container[data-astro-cid-e23gkc4x] {
  text-align: center;
  border: 4px solid #000;
  border-radius: 15px;
  background-color: #fff;
  padding: 26px 30px;
}
@media only screen and (max-width: 1280px) {
  .reason-container[data-astro-cid-e23gkc4x] {
    padding: 2.03125vw 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-container[data-astro-cid-e23gkc4x] {
    border-width: 3px;
    padding: 6.4vw 4.8vw 7.4666666667vw;
  }
}
.reason-text[data-astro-cid-e23gkc4x] {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 1280px) {
  .reason-text[data-astro-cid-e23gkc4x] {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 767px) {
  .reason-text[data-astro-cid-e23gkc4x] {
    font-size: 3.7333333333vw;
  }
}
.list[data-astro-cid-e23gkc4x] {
  display: grid;
  grid-template-columns: repeat(3, 242px);
  justify-content: center;
  gap: 14px;
  margin-block: 15px 20px;
}
@media only screen and (max-width: 1280px) {
  .list[data-astro-cid-e23gkc4x] {
    grid-template-columns: repeat(3, 18.90625vw);
    gap: 1.09375vw;
    margin-block: 1.171875vw 1.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .list[data-astro-cid-e23gkc4x] {
    grid-template-columns: 1fr;
    gap: 1.6vw;
    margin-block: 2.6666666667vw 3.2vw;
    max-width: 100%;
  }
}
.item[data-astro-cid-e23gkc4x] {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .item[data-astro-cid-e23gkc4x]:nth-child(1) {
    padding-block-start: 6.9333333333vw;
  }
}
.item[data-astro-cid-e23gkc4x]:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -72px;
  width: 102px;
  height: 96px;
  background: url(/about/campaign/opcampaign/assets/images/illust_chibione-example-pc.png) no-repeat center center /
    contain;
}
@media only screen and (max-width: 1280px) {
  .item[data-astro-cid-e23gkc4x]:nth-child(1)::before {
    top: -1.5625vw;
    left: -5.625vw;
    width: 7.96875vw;
    height: 7.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .item[data-astro-cid-e23gkc4x]:nth-child(1)::before {
    width: 28.2666666667vw;
    height: 6.9333333333vw;
    top: 0;
    left: calc(50% - 3.2vw);
    transform: translateX(-50%);
    background: url(/about/campaign/opcampaign/assets/images/illust_chibione-example-sp.png) no-repeat center center /
      contain;
  }
}
.howto[data-astro-cid-e23gkc4x] {
  margin-block-start: 90px;
}
@media only screen and (max-width: 1280px) {
  .howto[data-astro-cid-e23gkc4x] {
    margin-block-start: 7.03125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto[data-astro-cid-e23gkc4x] {
    margin-block-start: 16vw;
  }
}
.howto-head[data-astro-cid-e23gkc4x] {
  width: 230px;
  margin-inline: auto;
  margin-block-end: 50px;
}
@media only screen and (max-width: 1280px) {
  .howto-head[data-astro-cid-e23gkc4x] {
    width: 17.96875vw;
    margin-block-end: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-head[data-astro-cid-e23gkc4x] {
    width: 35.2vw;
    margin-block-end: 5.3333333333vw;
  }
}
.howto-list[data-astro-cid-e23gkc4x] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media only screen and (max-width: 1280px) {
  .howto-list[data-astro-cid-e23gkc4x] {
    gap: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-list[data-astro-cid-e23gkc4x] {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
}
.howto-item[data-astro-cid-e23gkc4x] {
  position: relative;
  border: 4px solid #000;
  border-radius: 15px;
  background-color: #fff;
  padding: 25px 20px 15px;
  text-align: center;
  transform: translateX(10px);
}
@media only screen and (max-width: 1280px) {
  .howto-item[data-astro-cid-e23gkc4x] {
    padding: 1.953125vw 1.5625vw 1.171875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item[data-astro-cid-e23gkc4x] {
    transform: none;
    border-width: 3px;
    padding: 6.6666666667vw 3.7333333333vw 5.3333333333vw;
  }
}
.howto-item[data-astro-cid-e23gkc4x]:nth-of-type(2) .howto-figure[data-astro-cid-e23gkc4x] {
  margin-block-end: 36px;
}
@media only screen and (max-width: 1280px) {
  .howto-item[data-astro-cid-e23gkc4x]:nth-of-type(2) .howto-figure[data-astro-cid-e23gkc4x] {
    margin-block-end: 2.8125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item[data-astro-cid-e23gkc4x]:nth-of-type(2) .howto-figure[data-astro-cid-e23gkc4x] {
    margin-block-end: 3.2vw;
  }
}
.howto-item[data-astro-cid-e23gkc4x]:nth-of-type(3) .howto-figure[data-astro-cid-e23gkc4x] {
  width: 200px;
  margin-block-end: 48px;
}
@media only screen and (max-width: 1280px) {
  .howto-item[data-astro-cid-e23gkc4x]:nth-of-type(3) .howto-figure[data-astro-cid-e23gkc4x] {
    width: 15.625vw;
    margin-block-end: 3.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item[data-astro-cid-e23gkc4x]:nth-of-type(3) .howto-figure[data-astro-cid-e23gkc4x] {
    width: 46.6666666667vw;
    margin-block-end: 2.6666666667vw;
  }
}
.c-link-button-dark--large .c-link-button-dark__label {
  font-size: 1rem !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--large .c-link-button-dark__label {
    font-size: 1.25vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--large .c-link-button-dark__label {
    font-size: 3.2vw !important;
  }
}
.c-link-button-dark--small .c-link-button-dark__label {
  font-size: 0.875rem !important;
}
@media only screen and (max-width: 1280px) {
  .c-link-button-dark--small .c-link-button-dark__label {
    font-size: 1.09375vw !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-button-dark--small .c-link-button-dark__label {
    font-size: 3.2vw !important;
  }
}
.howto-item-num[data-astro-cid-e23gkc4x] {
  position: absolute;
  top: -21px;
  left: -25px;
  width: 88px;
  height: 88px;
  background-color: #02b3e5;
  border-radius: 50%;
}
@media only screen and (max-width: 1280px) {
  .howto-item-num[data-astro-cid-e23gkc4x] {
    top: -1.640625vw;
    left: -1.171875vw;
    width: 6.875vw;
    height: 6.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-num[data-astro-cid-e23gkc4x] {
    top: -6.4vw;
    left: -2.9333333333vw;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }
}
.howto-figure[data-astro-cid-e23gkc4x] {
  width: 138px;
  height: 133px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1280px) {
  .howto-figure[data-astro-cid-e23gkc4x] {
    width: 10.78125vw;
    height: 10.390625vw;
    margin-bottom: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-figure[data-astro-cid-e23gkc4x] {
    width: 32vw;
    height: auto;
    margin-bottom: 2.6666666667vw;
  }
}
.howto-item-text[data-astro-cid-e23gkc4x] {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1280px) {
  .howto-item-text[data-astro-cid-e23gkc4x] {
    font-size: 1.40625vw;
    margin-bottom: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-text[data-astro-cid-e23gkc4x] {
    font-size: 3.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.howto-item-text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1280px) {
  .howto-item-text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .howto-item-text[data-astro-cid-e23gkc4x] strong[data-astro-cid-e23gkc4x] {
    font-size: 5.3333333333vw;
  }
}
.bnr[data-astro-cid-e23gkc4x] {
  margin-block-start: 90px;
  width: 746px;
  margin-inline: auto;
}
@media only screen and (max-width: 1280px) {
  .bnr[data-astro-cid-e23gkc4x] {
    margin-block-start: 7.03125vw;
    width: 58.28125vw;
  }
}
@media only screen and (max-width: 767px) {
  .bnr[data-astro-cid-e23gkc4x] {
    margin-block-start: 16vw;
    width: 78.6666666667vw;
  }
}
.balloon[data-astro-cid-e23gkc4x] {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .balloon[data-astro-cid-e23gkc4x] {
    width: 100%;
  }
}
.balloon-text[data-astro-cid-e23gkc4x] {
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  padding-inline: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1280px) {
  .balloon-text[data-astro-cid-e23gkc4x] {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 767px) {
  .balloon-text[data-astro-cid-e23gkc4x] {
    font-size: 3.2vw;
  }
}
.balloon-text[data-astro-cid-e23gkc4x]::before,
.balloon-text[data-astro-cid-e23gkc4x]::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #000;
}
.balloon-text[data-astro-cid-e23gkc4x]::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.balloon-text[data-astro-cid-e23gkc4x]::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
@media (any-hover: hover) {
  .bnr-link[data-astro-cid-e23gkc4x] {
    transition: opacity 0.3s;
  }
  .bnr-link[data-astro-cid-e23gkc4x]:hover {
    opacity: 0.7;
  }
}
.plan[data-astro-cid-qxwlpjpp] {
  position: relative;
  background-color: #feec96;
  background-image: radial-gradient(circle, #fed178 2.5px, transparent 2.5px),
    radial-gradient(circle, #fed178 2.5px, transparent 2.5px);
  background-position: 0 0, 6.5px 13px;
  background-size: 13px 26px;
  padding-block-end: 160px;
  margin-block-start: 22px;
}
@media only screen and (max-width: 1280px) {
  .plan[data-astro-cid-qxwlpjpp] {
    padding-block-end: 12.5vw;
    margin-block-start: 1.71875vw;
  }
}
@media only screen and (max-width: 767px) {
  .plan[data-astro-cid-qxwlpjpp] {
    margin-block-start: 0;
    background-size: 3.7333333333vw 2.4vw;
    background-image: radial-gradient(circle, #fed178 0.4vw, transparent 0.4vw),
      radial-gradient(circle, #fed178 0.4vw, transparent 0.4vw);
    padding-block-end: 32vw;
  }
}
.plan[data-astro-cid-qxwlpjpp]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
}
@media only screen and (max-width: 1280px) {
  .plan[data-astro-cid-qxwlpjpp]::before {
    height: 5.46875vw;
  }
}
@media only screen and (max-width: 767px) {
  .plan[data-astro-cid-qxwlpjpp]::before {
    height: 21.3333333333vw;
  }
}
.tab-content-panel[data-astro-cid-qxwlpjpp]:not(.is-active) {
  display: none;
}
.tab-nav[data-astro-cid-qxwlpjpp] {
  position: relative;
  display: flex;
  gap: 20px;
  margin-block-end: 38px;
}
@media only screen and (max-width: 1280px) {
  .tab-nav[data-astro-cid-qxwlpjpp] {
    gap: 1.5625vw;
    margin-block-end: 2.96875vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-nav[data-astro-cid-qxwlpjpp] {
    align-items: center;
    gap: 2.6666666667vw;
    margin-block-end: 5.3333333333vw;
  }
}
.tab-button[data-astro-cid-qxwlpjpp] {
  display: block;
  border: none;
  padding: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 586px;
  height: 163px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  cursor: pointer;
  background-image: var(--tab-bg-pc);
}
.tab-button[data-astro-cid-qxwlpjpp]:hover:not(.is-active) {
  background-position: 0 0;
}
.tab-button[data-astro-cid-qxwlpjpp].is-active {
  background-position: 0 100%;
  cursor: default;
}
@media (any-hover: hover) {
  .tab-button[data-astro-cid-qxwlpjpp]:hover:not(.is-active) {
    background-position: 0 100%;
  }
}
@media only screen and (max-width: 1280px) {
  .tab-button[data-astro-cid-qxwlpjpp] {
    width: 45.859375vw;
    height: 12.734375vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-button[data-astro-cid-qxwlpjpp] {
    width: 43.2vw;
    height: 41.8666666667vw;
    background-image: var(--tab-bg-sp);
  }
}
.l-footer[data-astro-cid-35ed7um5] {
  background-color: #000;
  padding: 50px 120px 20px 92px;
}
@media only screen and (max-width: 1280px) {
  .l-footer[data-astro-cid-35ed7um5] {
    padding: 50px 8.3333333333% 20px 6.3888888889%;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer[data-astro-cid-35ed7um5] {
    padding: 8.5333333333vw 5.3333333333% 4vw 5.3333333333%;
  }
}
.l-footer__copyright[data-astro-cid-35ed7um5] {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 400;
  margin: 15px auto 0 auto;
  max-width: 1228px;
  padding-left: 28px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__copyright[data-astro-cid-35ed7um5] {
    padding-left: 2.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__copyright[data-astro-cid-35ed7um5] {
    text-align: center;
    margin-top: 5.3333333333vw;
    margin-left: 0;
  }
}
.l-footer__head[data-astro-cid-35ed7um5] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1228px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-footer__head[data-astro-cid-35ed7um5] {
    display: block;
  }
}
.l-footer__logo[data-astro-cid-35ed7um5] {
  display: block;
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo[data-astro-cid-35ed7um5] {
    margin-left: -4.1791044776%;
    width: 220px;
  }
}
.l-footer__logo[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
  width: 100%;
}
.l-footer__app[data-astro-cid-35ed7um5] {
  margin-top: 8px;
  padding-left: 28px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__app[data-astro-cid-35ed7um5] {
    padding-left: 2.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__app[data-astro-cid-35ed7um5] {
    margin-top: 8vw;
    padding-left: 0;
  }
}
.l-footer__app-text[data-astro-cid-35ed7um5] {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.l-footer__list[data-astro-cid-35ed7um5] {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 9.7719869707%;
  box-sizing: border-box;
  padding-left: 10px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__list[data-astro-cid-35ed7um5] {
    gap: 0;
    margin-top: 3.125vw;
    padding-left: 0.78125vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__list[data-astro-cid-35ed7um5] {
    display: block;
    margin-top: 5.3333333333vw;
    width: 100%;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5]:nth-of-type(n + 2) {
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5]:nth-of-type(n + 2) {
    margin-top: 3.2vw;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5],
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] p[data-astro-cid-35ed7um5] {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5],
  .l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] p[data-astro-cid-35ed7um5] {
    display: block;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5]::after,
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] p[data-astro-cid-35ed7um5]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.6s ease;
}
.l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > a[data-astro-cid-35ed7um5]:hover::after {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > ul[data-astro-cid-35ed7um5] {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.4666666667vw;
    gap: 3.2vw 0;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > ul[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5] {
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5] {
    width: calc(50% - 2.1333333333vw);
    margin-top: 0;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > ul[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > a[data-astro-cid-35ed7um5] {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 0.875rem;
  border-bottom: 1px solid transparent;
  padding-left: 1em;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > a[data-astro-cid-35ed7um5] {
    display: block;
    padding-left: 0.7em;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > ul[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > a[data-astro-cid-35ed7um5]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.6s ease;
}
@media only screen and (min-width: 768px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > a[data-astro-cid-35ed7um5]:hover::after {
    width: 100%;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > ul[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > a[data-astro-cid-35ed7um5]::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1280px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > a[data-astro-cid-35ed7um5]::before {
    top: calc(50% - 0.15625vw);
    width: 0.390625vw;
    height: 0.390625vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > a[data-astro-cid-35ed7um5]::before {
    top: calc(50% - 0.5333333333vw);
    left: -0.2666666667vw;
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
.l-footer__list-item[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]
  > ul[data-astro-cid-35ed7um5]
  > li[data-astro-cid-35ed7um5]:nth-of-type(n + 2) {
  margin-top: 9px;
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]
    > ul[data-astro-cid-35ed7um5]
    > li[data-astro-cid-35ed7um5]:nth-of-type(n + 2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__list-item[data-astro-cid-35ed7um5]:nth-of-type(n + 2) {
    margin-top: 2.6666666667vw;
  }
}
.l-footer__body[data-astro-cid-35ed7um5] {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1228px;
  margin-inline: auto;
  padding-left: 28px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__body[data-astro-cid-35ed7um5] {
    padding-left: 2.1875vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__body[data-astro-cid-35ed7um5] {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 6.9333333333vw;
    padding-left: 0;
  }
}
.l-footer__link[data-astro-cid-35ed7um5] {
  display: flex;
  gap: 2.7777777778%;
  width: 724px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__link[data-astro-cid-35ed7um5] {
    width: 56.5625vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__link[data-astro-cid-35ed7um5] {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2.9333333333vw 2.6666666667vw;
  }
}
.l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] {
  flex-shrink: 0;
  height: 50px;
  width: 132px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] {
    width: 10.3125vw;
    height: 3.90625vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] {
    width: 43.2vw;
    height: 12.8vw;
  }
}
.l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5]::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 5px;
  width: 8px;
  height: 7px;
  background: url(/about/campaign/opcampaign/assets/images/footer/icon_link.svg) no-repeat center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .l-footer__link[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5]:hover {
    opacity: 0.7;
  }
}
.l-footer__link-item[data-astro-cid-35ed7um5] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-footer__link-item--1[data-astro-cid-35ed7um5] {
  width: 86.71875%;
}
@media only screen and (max-width: 767px) {
  .l-footer__link-item--1[data-astro-cid-35ed7um5] {
    width: 27.2vw;
  }
}
.l-footer__link-item--2[data-astro-cid-35ed7um5] {
  width: 96.09375%;
}
@media only screen and (max-width: 767px) {
  .l-footer__link-item--2[data-astro-cid-35ed7um5] {
    width: 26.6666666667vw;
  }
}
.l-footer__link-item--3[data-astro-cid-35ed7um5] {
  width: 87.5%;
}
@media only screen and (max-width: 767px) {
  .l-footer__link-item--3[data-astro-cid-35ed7um5] {
    width: 27.2vw;
  }
}
.l-footer__link-item--4[data-astro-cid-35ed7um5] {
  width: 68.75%;
}
@media only screen and (max-width: 767px) {
  .l-footer__link-item--4[data-astro-cid-35ed7um5] {
    width: 23.7333333333vw;
  }
}
.l-footer__link-item--5[data-astro-cid-35ed7um5] {
  width: 46.875%;
}
@media only screen and (max-width: 767px) {
  .l-footer__link-item--5[data-astro-cid-35ed7um5] {
    width: 16.5333333333vw;
  }
}
.l-footer__link-item[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
  display: block;
  width: 100%;
}
.l-footer__sns[data-astro-cid-35ed7um5] {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__sns[data-astro-cid-35ed7um5] {
    gap: 0 0.9375vw;
    margin-top: 2.34375vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__sns[data-astro-cid-35ed7um5] {
    margin-top: 5.3333333333vw;
    justify-content: center;
    gap: 0 5.0666666667vw;
    width: 100%;
  }
}
.l-footer__sns[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
  display: block;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .l-footer__sns[data-astro-cid-35ed7um5] > li[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5]:hover {
    opacity: 0.7;
  }
}
.l-footer__sns-link--1[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
  display: block;
  width: 33px;
}
@media only screen and (max-width: 1280px) {
  .l-footer__sns-link--1[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
    width: 2.578125vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__sns-link--1[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
    width: 9.0666666667vw;
  }
  .l-footer__sns-link--1[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
    width: 100%;
  }
}
.l-footer__sns-link--2[data-astro-cid-35ed7um5] {
  width: 62px;
}
.l-footer__sns-link--2[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .l-footer__sns-link--2[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
    width: 4.765625vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__sns-link--2[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] {
    width: 16.2666666667vw;
  }
  .l-footer__sns-link--2[data-astro-cid-35ed7um5] > a[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
    width: 100%;
  }
}
.p-app-logo-list[data-astro-cid-35ed7um5] {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .p-app-logo-list[data-astro-cid-35ed7um5] {
    justify-content: space-between;
  }
}
.p-app-logo-list__item[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
  height: 40px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .p-app-logo-list__item[data-astro-cid-35ed7um5] img[data-astro-cid-35ed7um5] {
    height: 10.6666666667vw;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-app-logo-list__item[data-astro-cid-35ed7um5] {
    width: auto;
  }
  .p-app-logo-list__item[data-astro-cid-35ed7um5]:nth-of-type(1) img[data-astro-cid-35ed7um5] {
    width: 10.4vw;
    height: 10.4vw;
  }
  .p-app-logo-list__item[data-astro-cid-35ed7um5]:nth-of-type(2) img[data-astro-cid-35ed7um5] {
    width: 29.0666666667vw;
    height: 10.6666666667vw;
  }
  .p-app-logo-list__item[data-astro-cid-35ed7um5]:nth-of-type(3) img[data-astro-cid-35ed7um5] {
    width: 35.7333333333vw;
    height: 10.6666666667vw;
  }
}
.page-top-wrap[data-astro-cid-ebt3p2uj] {
  margin-inline-start: auto;
  margin-block-start: -60px;
  position: sticky;
  right: 20px;
  bottom: 40px;
  z-index: 9;
  width: 60px;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .page-top-wrap[data-astro-cid-ebt3p2uj] {
    margin-block-start: -50px;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
.page-top[data-astro-cid-ebt3p2uj] {
  transform: translateY(-20px);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .page-top[data-astro-cid-ebt3p2uj] svg[data-astro-cid-ebt3p2uj] circle[data-astro-cid-ebt3p2uj] {
    transition: fill 0.3s;
  }
  .page-top[data-astro-cid-ebt3p2uj] svg[data-astro-cid-ebt3p2uj] path[data-astro-cid-ebt3p2uj] {
    transition: fill 0.3s;
  }
  .page-top[data-astro-cid-ebt3p2uj]:hover svg[data-astro-cid-ebt3p2uj] circle[data-astro-cid-ebt3p2uj] {
    fill: #000;
  }
  .page-top[data-astro-cid-ebt3p2uj]:hover svg[data-astro-cid-ebt3p2uj] path[data-astro-cid-ebt3p2uj] {
    fill: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .page-top[data-astro-cid-ebt3p2uj] {
    transform: translateY(-10px);
  }
}
main[data-astro-cid-j7pv25f6] {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  main[data-astro-cid-j7pv25f6] {
    padding-top: 50px;
  }
}
