@charset "UTF-8";
/* -------------------------------------------------------
style.css for スコッチ・ブライト&trade; ブランド 感謝祭キャンペーン　  w/sass
creation date:2026-02
scss/style.scss - > css/style.css
---------------------------------------------------------*/
/*! 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 / 0.3);
}

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

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

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

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

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

/* -------------------------------------------------------
style.css for スコッチ・ブライト&trade; ブランド 感謝祭キャンペーン　Scotch-Brite(スコッチ・ブライト) w/sass
creation date:2025-09
scss/style.scss - > css/style.css
---------------------------------------------------------*/
/*======================================

site

=======================================*/
:root {
  --brand-primary:#53b54f;
  --brand-attention: #cc3333;
  --brand-attention-light: #ff0000;
  --brand-background: #f1fbcd;
}

html {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(221, 242, 71, 0.3);
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: clamp(0.875rem, 0.646rem + 0.98vw, 1.5rem);
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #0a0b0a;
  background: var(--brand-background);
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 0;
  background: #008657;
}
@media screen and (min-width: 768px) {
  body {
    line-height: 1.75;
    background: #f1fbcd;
  }
}

.gopagetop {
  cursor: pointer;
  position: fixed;
  z-index: 99;
  right: 0;
  bottom: 100px;
  margin: 0 1lh;
  padding: 0;
  line-height: 1;
  transform: translateY(50%);
  width: 48px;
  height: 48px;
  z-index: 10;
}
.gopagetop a {
  border-radius: 50%;
  display: block grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #DDF247;
}
.gopagetop img {
  width: 80%;
  height: auto;
}

.cmp-revoke-consent {
  font-size: 12px;
}

/* Links -------------------------------------------*/
a {
  text-decoration: underline;
  color: #53b54f;
}
a .text-link {
  text-decoration: underline;
}
a:visited {
  color: rgb(58.5714285714, 64.4285714286, 58.5714285714);
}
::-moz-selection {
  background: rgba(221, 242, 71, 0.7);
  color: rgba(10, 11, 10, 0.6);
}

::selection {
  background: rgba(221, 242, 71, 0.7);
  color: rgba(10, 11, 10, 0.6);
}

@keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/* v.$ img   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

figure,
picture {
  margin: 0;
  padding: 0;
}

/* v.$ links   ========================================================================== */
/*[ A:TXT ]*******/
a {
  cursor: pointer;
  transition: color 0.5s, cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.underline-text-link {
  display: inline;
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-size: 0 1px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: background-size cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

em {
  font-style: normal;
  color: #c00;
}

.small {
  font-size: 85%;
}

hr {
  height: 0;
  margin: 2em 0 2em;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.js .animate-box {
  opacity: 0;
}

@media print {
  .js .animate-box {
    opacity: 1;
  }
}
header,
footer {
  margin: 0;
  padding: 0;
}

p {
  margin-block: calc((1em - 1lh) / 2);
  text-spacing-trim: trim-start;
}

:focus:not(:focus-visible) {
  outline: none;
}

.__pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .__pc {
    display: block;
  }
}

.__sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .__sp {
    display: none;
  }
}

/*----------------------------------------------------
$ hero
----------------------------------------------------*/
.header {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header {
    padding-bottom: 20px;
  }
}
.header h1 {
  margin: 0;
  padding: 0;
}
.header h1 img {
  width: 100%;
  height: auto;
}

.limited {
  background: #d71223;
  text-align: center;
  padding: 0.5lh 4.2666666667vw;
}
.limited img {
  height: 6.9333333333vw;
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .limited img {
    height: 40px;
  }
}

/*----------------------------------------------------
$ contents
----------------------------------------------------*/
main {
  flex-grow: 1;
}

.section-item {
  padding-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .section-item {
    padding-top: 40px;
    padding-inline: 4.2666666667vw;
  }
}

.heading-contents {
  margin: 0 0 0.875lh 0;
  padding-inline: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .heading-contents {
    max-width: 1010px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.contents-main-copy-container--sp {
  background: #53b54f url(../img/bg-goods--sp.webp) repeat-x;
  background-size: auto 40px;
  padding-top: 10.6666666667vw;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .contents-main-copy-container--sp {
    display: none;
    margin-inline: none;
  }
}

.contents-main-copy--sp {
  padding-inline: 8.5333333333vw;
  background-size: 100% auto;
}

.contents-outlines {
  background: #53b54f;
  width: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 6.4vw;
  padding-top: 2lh;
  padding-inline: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .contents-outlines {
    background: none;
    margin-top: 0;
    text-align: center;
    max-width: 845px;
    margin-inline: auto;
    padding-top: 1lh;
    padding-bottom: 1lh;
    padding-inline: 0;
  }
  .contents-outlines img {
    width: 100%;
  }
}

.contents-outline {
  color: #fff;
  padding-block: 1lh;
}
@media screen and (min-width: 768px) {
  .contents-outline {
    color: #01382e;
    text-align: center;
    padding-block: 0.875lh;
    margin: 0;
  }
}

.period {
  display: none;
  margin-block: 0.875lh;
}
@media screen and (min-width: 768px) {
  .period {
    background: #a5cc18;
    display: block;
    border-radius: 12px;
    padding: 10px 10px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0 1lh;
  }
}
.period .period-head {
  background: #008657;
  color: #ffff66;
  display: grid;
  place-items: center;
  padding: 0.5lh 8px;
  border-radius: 8px;
}
.period .period-head h3 {
  margin: 0 0 0.435em;
  line-height: 1.1;
  font-size: 20px;
}
.period .period-head p {
  line-height: 1.3;
  font-size: 14px;
}
.period .period-data {
  color: #01382e;
  display: grid;
  align-items: center;
}
.period .period-data ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block grid;
  text-align: left;
  font-size: 14px;
  align-items: center;
}
.period .period-data ul li {
  margin: 0.2em 0;
}
.period .period-data ul span {
  font-size: 142%;
}

.btn--cta-container {
  padding-inline: 6.4vw;
}
@media screen and (min-width: 768px) {
  .btn--cta-container {
    background: none;
    width: 100%;
    max-width: 520px;
    text-align: center;
    margin-inline: auto;
    padding-inline: 2.6666666667vw;
  }
}

.contents-head .btn--cta-container {
  background: #53b54f;
}
@media screen and (min-width: 768px) {
  .contents-head .btn--cta-container {
    background: none;
  }
}

.btn--cta {
  display: block;
  will-change: filter;
  position: relative;
}
@media (any-hover: hover) {
  .btn--cta:hover {
    filter: brightness(1.2);
  }
}
.btn--cta:focus {
  filter: brightness(1.2);
}
.btn--cta:focus-visible {
  filter: brightness(1.2);
}

.btn--cta .btn--cta-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 7.4666666667vw;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.btn--cta .btn--cta-wrapper:after {
  position: absolute;
  top: -100%;
  left: -150%;
  content: "";
  height: 500%;
  width: 95px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(45deg);
  animation: 3s shine infinite linear;
}

.section-contents-head {
  background: #53b54f;
  padding-bottom: 8.5333333333vw;
  padding-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .section-contents-head {
    background: #ebfbe3;
    background: url(../img/bg-howto.webp) repeat-x left bottom;
    background-size: auto 80px;
    padding-bottom: 140px;
    padding-top: 40px !important;
  }
}

.contents-head {
  background: #ebfbe3;
}
@media screen and (min-width: 768px) {
  .contents-head {
    padding-bottom: 80px;
    background: none;
  }
}

.prize-container {
  display: block grid;
  row-gap: 6.4vw;
  padding-inline: 0.5lh;
  max-width: 845px;
  margin-inline: auto;
  padding-top: 12.8vw;
}
@media screen and (min-width: 768px) {
  .prize-container {
    padding-top: 0;
    gap: 1lh 0;
    margin-bottom: 1.5lh;
  }
}

.prize-detail-link {
  margin-block: 7.4666666667vw;
  padding-inline: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .prize-detail-link {
    margin-block: 32px;
    text-align: center;
    display: block;
    margin-inline: auto;
    padding-inline: 0;
  }
  .prize-detail-link img {
    width: 100%;
    max-width: 600px;
  }
}
.prize-detail-link a {
  display: block;
}
@media (any-hover: hover) {
  .prize-detail-link a:hover {
    filter: brightness(1.2);
  }
}
.prize-detail-link a:focus {
  filter: brightness(1.2);
}
.prize-detail-link a:focus-visible {
  filter: brightness(1.2);
}

.heading-section {
  font-size: 6.4vw;
  color: #fff;
  inline-size: fit-content;
  margin-inline: auto;
  line-height: 1;
  margin-bottom: 1.5lh;
}
@media screen and (min-width: 768px) {
  .heading-section {
    font-size: 48px;
  }
}

.howtoappply {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-inline: 0.5lh;
  display: block grid;
  row-gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .howtoappply {
    display: block grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    margin-bottom: 0.5lh;
  }
}

.hotoapply-caution {
  color: #fff;
  padding-block: 0.875lh;
  font-size: 85%;
  line-height: 1.5;
  margin-bottom: 2lh;
  padding-inline: 0.5lh;
}
@media screen and (min-width: 768px) {
  .hotoapply-caution {
    padding-block: 0.435lh;
    font-size: 18px;
    margin-bottom: 4lh;
  }
}

.notes-on-taking-receipts-container {
  padding-inline: 0.5lh;
  margin-block: 2lh;
}
@media screen and (min-width: 768px) {
  .notes-on-taking-receipts-container {
    margin-block: 3lh;
  }
}

.notes-on-taking-receipts {
  background: #fff;
  border-radius: 5.3333333333vw;
  padding: 3.2vw;
}
@media screen and (min-width: 768px) {
  .notes-on-taking-receipts {
    border-radius: 20px;
    padding: 24px;
    padding-bottom: 48px;
  }
}
.notes-on-taking-receipts h3 {
  background: #e44f13;
  color: #fff;
  text-align: center;
  border-radius: 2.1333333333vw;
  margin: 0.435lh 0;
  font-size: 3.7333333333vw;
  padding: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .notes-on-taking-receipts h3 {
    margin: 0;
    font-size: 24px;
    border-radius: 10px;
    padding: 16px;
  }
}

.taking-receipts-icon {
  width: 13.3333333333vw;
  margin-inline: auto;
  margin-block: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .taking-receipts-icon {
    width: 100px;
    height: auto;
    margin-block: 1lh;
  }
}

.taking-receipts-txt {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.875lh;
}

.notes-strong {
  color: var(--brand-attention);
}

.notes-container {
  display: grid;
  row-gap: 0.875lh;
}

@media screen and (min-width: 768px) {
  .notes-item {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
  }
}

.heading-note-item {
  border: 1px solid #a5a5a3;
  padding: 2.1333333333vw;
  display: block grid;
  grid-template-columns: 18.1333333333vw 1fr;
  align-items: center;
  line-height: 1.5;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  margin-bottom: 1lh;
}
@media screen and (min-width: 768px) {
  .heading-note-item {
    padding: 16px 32px;
    font-size: 20px;
    grid-template-columns: auto 1fr;
    column-gap: 1lh;
  }
}

.notes-detail {
  display: block grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.435lh;
}
@media screen and (min-width: 768px) {
  .notes-detail {
    padding: 0 118px;
    column-gap: 48px;
  }
  .notes-detail.notes-detail__bad {
    padding: 0;
    display: block grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
  }
}
.notes-detail.notes-detail__single {
  grid-template-columns: repeat(1, 1fr);
}
.notes-detail.notes-detail__single img {
  display: grid;
  place-items: center;
  width: 50%;
  margin-inline: auto;
  text-align: center;
}

.notes-detail-image p {
  margin-top: 8px;
}
.notes-detail-image p.note--receipt {
  font-size: 48%;
}
@media screen and (min-width: 768px) {
  .notes-detail-image p {
    font-size: 18px;
    margin-block: 8px;
    line-height: 1.5;
  }
  .notes-detail-image p.note--receipt {
    font-size: 48%;
  }
}

.notes-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .notes-detail-list {
    font-size: 20px;
  }
}
.notes-detail-list span {
  color: var(--brand-attention-light);
}

.notes-item__ex-txt {
  font-size: 3.7333333333vw;
  line-height: 1.5;
  padding: 3.2vw 0;
}

.section-howtoapply {
  background: url(../img/footer-content--sp.webp) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 40vw;
}
@media screen and (min-width: 768px) {
  .section-howtoapply {
    background: #53b54f url(../img/footer-content.webp) no-repeat left bottom;
    background-size: auto 20vw;
    padding-bottom: 20vw;
  }
}

.section-terms {
  padding-bottom: 12.8vw;
  background-color: #fff;
  padding-inline: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .section-terms {
    padding-top: 120px;
    padding-inline: 0;
  }
}
.section-terms .heading-section {
  color: #000;
}

.terms-container {
  display: block grid;
  row-gap: 1lh;
}

@media screen and (min-width: 768px) {
  .terms-body {
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
  }
}

.terms-body-container {
  display: block grid;
  row-gap: 1lh;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .terms-body-container {
    row-gap: 0.5lh;
  }
}

@media screen and (min-width: 768px) {
  .terms-item {
    font-size: 15px;
  }
}
.terms-item .head {
  font-weight: bold;
  margin-block: 0.435lh;
}

.heading-terms {
  font-size: 3.4666666667vw;
  border: 1px solid #a5a5a3;
  padding-inline: 3.2vw;
  padding-block: 0.2lh;
  margin-bottom: 0.435lh;
}
@media screen and (min-width: 768px) {
  .heading-terms {
    font-size: 20px;
    text-align: center;
    padding-block: 0.2lh;
    margin-bottom: 0.435lh;
  }
}

.heading-terms--h4 {
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .heading-terms--h4 {
    margin-block: 4px;
  }
}

.terms-data-list-container {
  display: block grid;
  row-gap: 0.435lh;
}

.terms-data-list {
  margin: 0;
  padding: 0;
}
.terms-data-list dt {
  margin: 0;
  padding: 0;
}
.terms-data-list dd {
  margin: 0;
  padding: 0;
}
.terms-data-list.terms-data-list--select dd {
  display: block grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
}

.terms-caution {
  font-size: 72%;
  margin-block: 0.435lh;
}

.terms-list {
  margin: 0;
  padding: 0;
  padding-left: 1.4em;
  list-style: disc;
}
.terms-list.terms-list--small {
  font-size: 72%;
}
.terms-list .terms-list-option {
  display: block;
  margin-block: 0.435lh;
}

ol.terms-list {
  margin-block: 0.875lh;
}

.terms-list-note {
  display: block;
  font-size: 72%;
  line-height: 1.3;
}

.term-contact {
  display: block grid;
  row-gap: 0.875lh;
}
@media screen and (min-width: 768px) {
  .term-contact {
    display: block flex;
    flex-direction: row-reverse;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
  }
}
.term-contact .head {
  font-weight: bold;
  margin-block: 0.435em;
}
.term-contact .term-logo {
  text-align: center;
}
.term-contact .term-logo img {
  width: 29.3333333333vw;
  height: auto;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .term-contact .term-logo img {
    width: 150px;
  }
}

.term-contact-list {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .term-contact-list {
    display: block grid;
    grid-template-columns: auto 1fr;
  }
}
.term-contact-list dt {
  margin: 0.435lh 0 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .term-contact-list dt {
    margin: 0;
    position: relative;
  }
  .term-contact-list dt:before {
    display: block;
    content: attr(data-for-large);
  }
  .term-contact-list dt span {
    display: none;
  }
}
.term-contact-list dd {
  margin: 0;
  padding: 0;
}

.btns {
  display: block grid;
  gap: 0 1lh;
  margin: 1.5lh auto;
  padding: 0 8%;
  list-style: none;
  max-width: 1080px;
}
@media screen and (min-width: 768px) {
  .btns {
    grid-template-columns: repeat(2, 1fr);
    margin: 3lh auto;
    gap: 0 2lh;
  }
}
.btns li {
  margin: 0;
  padding: 0;
}

.button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 100%;
  transition: filter 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.button img {
  width: 100%;
}
@media (any-hover: hover) {
  .button:hover {
    filter: brightness(1.4);
  }
}
.button:focus {
  filter: brightness(1.4);
}
.button:focus-visible {
  filter: brightness(1.4);
}

.footer {
  background: #36a44a url("../img/footer.webp") no-repeat center top;
  background-size: 100% 110px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 48px 16px;
    background: #36a44a url("../img/footer.webp") no-repeat center top;
    background-size: 100% 220px;
  }
}

.footer-container {
  display: block grid;
  justify-items: center;
  padding: 6.4vw;
}
@media screen and (min-width: 768px) {
  .footer-container {
    padding: 0;
    max-width: 1200px;
    width: 100%;
    display: block flex;
    justify-content: space-between;
    margin-inline: auto;
  }
}

.official {
  display: block flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .official {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 16px;
  }
}
.official .logo {
  width: 24vw;
}
@media screen and (min-width: 768px) {
  .official .logo {
    width: 105px;
  }
}
.official p {
  margin: 0;
  font-size: 13px;
  line-height: 1;
}
.official p a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.6875rem, 0.5878rem + 0.4255vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .official p a {
    font-size: 13px;
  }
}
@media (any-hover: hover) {
  .official p a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
  }
}
.official p a:focus {
  text-decoration: underline;
  filter: brightness(1.2);
}
.official p a:focus-visible {
  text-decoration: underline;
  filter: brightness(1.2);
}

.official-data p {
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .official-data p {
    margin-block: 2px;
  }
}
.official-data address {
  display: none;
}
@media screen and (min-width: 768px) {
  .official-data address {
    display: block;
  }
}

.announce {
  font-size: 2.9333333333vw;
  color: #fff;
  margin-top: 1lh;
}
@media screen and (min-width: 768px) {
  .announce {
    font-size: 13px;
  }
}

address {
  color: #fff;
  font-style: normal;
  margin-top: 1lh;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  address {
    margin-top: 0;
    font-size: 13px;
  }
}

/* v.$ print   --------------------------------------------------------- */
