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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-main {
  background: #C53939;
}

.bg-gray {
  background: #eee;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

/* スライド画像 */
.myslider-thumb img,
.mypaper-thumb img,
.myblog-thumb img {
  height: auto !important;
  display: block;
  object-fit: contain;
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .myslider-thumb img,
  .mypaper-thumb img,
  .myblog-thumb img {
    height: auto !important;
    display: block;
    object-fit: contain;
    padding: 0 20px;
  }
  /* slick スライド調整：全スライドは基本50%幅 */
  .myslider-slider .slick-slide,
  .mypaper-slider .slick-slide,
  .myblog-slider .slick-slide {
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 auto;
  }
  /* 中央スライドだけ幅100% */
  .myslider-slider .slick-center,
  .mypaper-slider .slick-center,
  .myblog-slider .slick-center {
    opacity: 1;
  }
  .myslider-slider .myslider-caption {
    display: none;
  }
  .myslider-slider .slick-center .myslider-caption {
    display: block;
  }
}
.mypaper-slider .myslider-caption,
.myblog-slider .myslider-caption {
  display: none;
}

.mypaper-slider .slick-center .myslider-caption,
.myblog-slider .slick-center .myslider-caption {
  display: block;
}

.myslider-caption {
  text-align: center;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .myslider-caption {
    margin-top: 40px;
    width: calc(100% - 65px);
  }
}

.myslider-title {
  font-size: clamp(0.938rem, 0.511rem + 1.818vw, 1.875rem);
  margin-bottom: 4px;
  letter-spacing: 0.2em;
}

.myslider-description {
  font-size: clamp(0.5rem, 0.386rem + 0.485vw, 0.75rem);
  color: #000;
}

/* モーダル全体 */
.myslider-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* モーダルコンテンツ中央配置 */
.myslider-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: transparent;
}

/* 閉じるボタン */
.myslider-modal-close {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* モーダル内iframe */
.myslider-modal-video iframe {
  width: 100%;
  height: 450px;
}

/* 共通設定 */
.slick-dots li.slick-active button::before {
  opacity: 1;
  color: black;
  font-size: 1rem;
  color: #e8352e !important;
}

.slick-dots li button::before {
  opacity: 0.75;
  color: black;
  font-size: 1rem !important;
  color: #e8352e !important;
}

.slick-prev.slick-arrow::before {
  content: "";
  background-image: url(https://gigaplus.makeshop.jp/supermen/collabmug/images/button-allow3.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: calc(50% - 30px - 40px) !important;
  z-index: 9999;
  opacity: 1;
  transform: scaleX(-1);
}
@media screen and (min-width: 992px) {
  .slick-prev.slick-arrow::before {
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    top: calc(50% - 60px - 40px) !important;
  }
}

.slick-next.slick-arrow::before {
  content: "";
  background-image: url(https://gigaplus.makeshop.jp/supermen/collabmug/images/button-allow3.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: calc(50% - 30px - 40px) !important;
  z-index: 10;
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .slick-next.slick-arrow::before {
    background-size: 60px 60px;
    width: 60px;
    height: 60px;
    top: calc(50% - 60px - 40px) !important;
  }
}

.slick-prev {
  left: -10px !important;
}
@media screen and (min-width: 992px) {
  .slick-prev {
    left: -15px !important;
  }
}

.slick-next {
  right: -10px !important;
}
@media screen and (min-width: 992px) {
  .slick-next {
    right: -15px !important;
  }
}

.slick-prev,
.slick-next {
  transform: none !important;
}

.slick-dots {
  bottom: -35px !important;
}
@media screen and (min-width: 992px) {
  .slick-dots {
    bottom: -65px !important;
  }
}

.slick-dots .slick-active button {
  background: none !important;
}

.is-style-table1 {
  font-size: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .is-style-table1 {
    font-size: 1.6rem;
  }
}
.is-style-table1 th {
  background-color: transparent !important;
  border: none !important;
  display: block;
}
@media screen and (min-width: 992px) {
  .is-style-table1 th {
    border-bottom: 1px solid #999 !important;
    display: table-cell;
    padding: 32px 0 32px 47px !important;
    width: 257px;
  }
}
.is-style-table1 td {
  padding-top: 0 !important;
  display: block;
  background-color: transparent !important;
  border-bottom: 1px solid #999 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
@media screen and (min-width: 992px) {
  .is-style-table1 td {
    display: table-cell;
    padding: 32px 0 !important;
  }
}
.is-style-table1 a:link, .is-style-table1 a:visited {
  /*// color: global.$color-red;*/
}

.is-style-table-design {
  font-size: 1.3rem;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  margin-top: 0px;
  table-layout: auto !important;
  overflow: scroll;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .is-style-table-design {
    font-size: 2rem;
    padding: 40px 100px 30px 56px;
    margin-top: 20px;
    overflow: hidden;
    white-space: normal;
  }
}
.is-style-table-design th,
.is-style-table-design td {
  padding: 6px 17.5px;
  border: none !important;
  width: auto !important;
  box-sizing: border-box;
}
.is-style-table-design th {
  background-color: transparent !important;
  font-weight: bold;
  text-align: right !important;
}
.is-style-table-design td {
  text-align: center !important;
}
.is-style-table-design + .is-style-table-design {
  margin-top: 10px;
}

.c-point__title {
  margin-top: clamp(0rem, -1.136rem + 4.848vw, 2.5rem);
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 900;
}
.point + .c-point__title {
  margin-top: 0;
}
.c-point__title.white {
  color: #fff;
  letter-spacing: 0.4em;
}
.c-point__title.noodle::before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/icon-noodle.png");
  background-repeat: no-repeat;
  background-size: 29.9947px 30.2638px;
  width: 29.9947px;
  height: 30.2638px;
  margin: 0 auto 8.6505px;
}
@media screen and (min-width: 992px) {
  .c-point__title.noodle::before {
    background-size: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }
}
.c-point__title.mugpot::before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/icon-mugpot.png");
  background-repeat: no-repeat;
  background-size: 37.8659px 30px;
  width: 37.8659px;
  height: 30px;
  margin: 0 auto 8.6505px;
}
@media screen and (min-width: 992px) {
  .c-point__title.mugpot::before {
    background-size: 75.7317px 60px;
    width: 75.7317px;
    height: 60px;
    margin: 0 auto 20px;
  }
}
.c-point__title-voice {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}
.c-point__title-voice:before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/icon-noodle.png");
  background-repeat: no-repeat;
  background-size: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  width: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  height: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  margin: 0 auto 20px;
}
.c-point__title-media {
  font-size: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.2em;
}
.c-point__title-media:not(:first-of-type) {
  padding-top: clamp(3.75rem, 2.045rem + 7.273vw, 7.5rem);
}
.c-point__title-media:before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/icon-noodle.png");
  background-repeat: no-repeat;
  background-size: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  width: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  height: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  margin: 0 auto 20px;
}

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

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

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center/60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-top: 30px;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .scroll-infinity__wrap {
    margin-top: 60px;
    gap: 40px;
  }
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 40px;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 11.1111111111vw;
  min-width: 120px;
}

.scroll-infinity__item > img {
  width: 100%;
}

@keyframes steam01 {
  0% {
    bottom: -600px;
    filter: blur(16px);
    transform: rotateY(0deg);
    transform: scale(0.6, 1);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    transform: rotateY(40deg);
    transform: scale(1, 1.4);
    opacity: 0.5;
  }
  66% {
    transform: rotateY(10deg);
    transform: scaleY(1.8, 1);
    opacity: 0.4;
  }
  100% {
    bottom: 50%;
    filter: blur(20px);
    transform: rotateY(60deg);
    transform: scaleY(2, 1.8);
    opacity: 0;
  }
}
@keyframes steam02 {
  0% {
    bottom: -400px;
    filter: blur(16px);
    transform: rotateY(0deg);
    transform: scale(0.6, 0.6);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    transform: rotateY(40deg);
    transform: scale(0.8, 1);
    opacity: 0.4;
  }
  66% {
    transform: rotateY(2deg);
    transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 50%;
    filter: blur(20px);
    transform: rotateY(50deg);
    transform: scaleY(1.2, 1.4);
    opacity: 0;
  }
}
.steamWrap {
  width: 100%;
  margin: 0 auto 0;
}

.steamBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.steamBox > img {
  width: 100%;
  display: block;
}

.steam01 {
  position: absolute;
  right: 0;
  animation: steam01 10s infinite linear;
  opacity: 0;
}

.steam02 {
  position: absolute;
  left: 0;
  animation: steam02 14s infinite linear;
  opacity: 0;
}

.steam03 {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  animation: steam02 12s infinite linear;
  animation-delay: 6s;
  opacity: 0;
}

.steam01 img,
.steam03 img {
  width: 532px;
  height: 800px;
}

.steam02 img {
  width: 399px;
  height: 600px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  color: #333;
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  overflow-x: hidden;
}

.c-container {
  position: relative;
  width: 89.6%;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .c-container {
    max-width: 1200px;
  }
}
.c-container-wide {
  position: relative;
  width: 100vw;
  margin: 0 auto;
}
.c-container-narrow {
  margin: 0 auto;
  width: 79.166667%;
  max-width: 940px;
}
.c-container-narrow2 {
  margin: 0 auto;
  width: 91.666667%;
  max-width: 1100px;
}
.c-container.wrapper {
  text-align: center;
}

.c-page__catch img {
  width: 100%;
  height: auto;
}
.c-page__catch-caption {
  margin-top: 11px;
  text-align: right;
  font-size: 0.8125rem;
}
@media screen and (min-width: 992px) {
  .c-page__catch-caption {
    font-size: 1rem;
    margin-top: 17px;
  }
}
.c-page__catch + .c-container {
  margin-top: 75px;
}
@media screen and (min-width: 992px) {
  .c-page__catch + .c-container {
    margin-top: 65px;
  }
}

main p,
main ol,
main ul {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  color: #333;
}
@media screen and (min-width: 992px) {
  main p,
  main ol,
  main ul {
    font-size: 1.125rem;
  }
}
main ol,
main ul {
  margin-left: 1em;
}

section:nth-of-type(even) {
  background: #f0f0f0;
  padding: clamp(3.75rem, 2.614rem + 4.848vw, 6.25rem) 0 clamp(3.125rem, 1.705rem + 6.061vw, 6.25rem);
}

section:nth-of-type(odd) {
  padding: clamp(3.75rem, 2.045rem + 7.273vw, 7.5rem) 0 clamp(4.688rem, 2.273rem + 10.303vw, 10rem);
}

section.wave {
  position: relative;
}
section.wave::before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/wave-beige.png");
  background-repeat: repeat-x;
  background-size: auto 20px;
  background-position: top;
  width: 100%;
  height: 20px;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 10;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  section.wave::before {
    background-size: auto 40px;
    height: 40px;
    top: -29px;
  }
}
section.wave:after {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/wave-beige.png");
  background-repeat: repeat-x;
  background-size: auto 20px;
  background-position: bottom;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -15px;
  left: 0;
  z-index: 10;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  section.wave:after {
    background-size: auto 40px;
    height: 40px;
    bottom: -29px;
  }
}

section#kaiketsu {
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/answer-back.png");
  background-size: cover;
  background-position: center center;
}

section#variation {
  padding-bottom: 54px;
}
@media screen and (min-width: 768px) {
  section#variation {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  section#variation {
    padding-bottom: 110px;
  }
}

article + article {
  margin-top: 57px;
}
@media screen and (min-width: 992px) {
  article + article {
    margin-top: 92px;
  }
}

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

/*main {
	margin: 44px auto 0;

	@include g.mq(lg) {
		margin: 138px auto 0;
	}
}*/
:target {
  scroll-margin-top: 54px;
}
@media screen and (min-width: 992px) {
  :target {
    scroll-margin-top: 148px;
  }
}

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

div#head {
  position: relative;
}
div#head::after {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/wave-white.png");
  background-repeat: repeat-x;
  background-size: auto 20px;
  background-position: bottom;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 10;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  div#head::after {
    background-size: auto 40px;
    height: 40px;
    bottom: -10.5px;
  }
}

.l-header__logo {
  width: 52.3636px;
  height: 30px;
  top: clamp(1.25rem, 0.966rem + 1.212vw, 1.875rem);
  position: absolute;
  z-index: 100;
  line-height: 1;
  margin: 0;
  font-size: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
  .l-header__logo {
    height: 60px;
    width: 135px;
    left: clamp(1.25rem, -0.455rem + 7.273vw, 5rem);
    transform: none;
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-header__catch {
  position: relative;
  z-index: 10;
}
.l-header__catch img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .l-header__catch img {
    width: 100%;
  }
}
.l-header__title {
  width: 100%;
  font-size: clamp(20px, 5vw, 60px);
  text-align: center;
  letter-spacing: 0.2em;
}
.l-header__title:first-of-type {
  margin-top: clamp(3.75rem, -2.917rem + 13.889vw, 7.5rem);
}
.l-header__title-caption {
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.6em;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}

.p-colabo__title {
  margin: auto;
  width: 83.333333%;
  max-width: 1000px;
  height: auto;
}
.p-colabo__caption {
  text-align: center;
  margin-top: clamp(3.75rem, 2.045rem + 7.273vw, 7.5rem);
}
.p-colabo__caption p {
  letter-spacing: 0.4em;
  line-height: 3;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
@media screen and (min-width: 992px) {
  .p-colabo__caption p {
    line-height: 4;
  }
}
.p-colabo__caption p + p {
  margin-top: 1em;
}
.p-colabo__illust {
  position: relative;
}
.p-colabo__illust::before {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-colabo__illust::before {
    content: "";
    display: block;
    background: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/anime.png") no-repeat;
    background-size: 320px 313.4622px;
    width: 320px;
    height: 313.4622px;
    position: absolute;
    left: 8%;
    bottom: -160px;
  }
}
.p-colabo__illust::after {
  content: "";
  display: block;
  background: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/anime.png") no-repeat;
  background-size: 160px 156.731px;
  background-position: 0;
  width: 160px;
  height: 156.731px;
  transform: scale(-1, 1);
  padding: 58px 0 0;
  margin: 58px auto 0;
}
@media screen and (min-width: 1200px) {
  .p-colabo__illust::after {
    bottom: -423.4622px;
    position: absolute;
    left: calc(50% - 160px);
    background-size: 320px 313.4622px;
    background-position: 0;
    width: 320px;
    height: 313.4622px;
    right: 8%;
    left: unset;
    bottom: -160px;
    text-align: center;
    margin: auto;
  }
}

.p-variation__type {
  display: flex;
  justify-content: space-around;
  gap: 0 2.666667%;
  margin-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .p-variation__type {
    gap: 0 7%;
  }
}
.p-variation__type--item-title {
  font-size: clamp(0.75rem, -0.045rem + 3.394vw, 2.5rem);
  line-height: 1;
  text-align: center;
  margin-top: 5px;
  letter-spacing: 0.2em;
}
.p-variation__type--item-title.red {
  color: #e8352e;
}
.p-variation__type--item-title.blue {
  color: #014C9C;
}
.p-variation__type--item-title.yellow {
  color: #FBB812;
}
@media screen and (min-width: 992px) {
  .p-variation__type--item-title {
    margin-top: 20px;
  }
}
.p-variation__type--item-caption {
  font-size: clamp(0.313rem, -0.114rem + 1.818vw, 1.25rem);
  text-align: center;
  padding: 10px 0 0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 992px) {
  .p-variation__type--item-caption {
    padding: 31px 0 0;
  }
}
.p-variation__type--item-caption.red {
  color: #e8352e;
}
.p-variation__type--item-caption.blue {
  color: #014C9C;
}
.p-variation__type--item-caption.yellow {
  color: #FBB812;
}
.p-variation__caption {
  line-height: 3;
  text-align: center;
  margin-top: clamp(3.75rem, 2.261rem + 6.352vw, 7.025rem);
  letter-spacing: 0.2em;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
.p-variation__caption white {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-variation__caption {
    letter-spacing: 0.6em;
  }
}
.p-variation__button {
  margin: 0;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-width: 260px !important;
  min-width: unset !important;
  line-height: 1;
  /* 垂直方向センター揃え */
  /* 画像とテキストの間隔（任意） */
}
@media screen and (min-width: 768px) {
  .p-variation__button {
    max-width: 77.38% !important;
    min-width: 77.38% !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-variation__button {
    width: 520px !important;
    max-width: 520px !important;
    min-width: initial !important;
    padding: 40px 0;
  }
}
.p-variation__button img {
  margin-left: calc(15px - 0.2em);
  height: 10px;
  width: auto;
}
@media screen and (min-width: 992px) {
  .p-variation__button img {
    height: 20px;
    margin-left: calc(30px - 0.2em);
  }
}
.p-variation__button-caption {
  font-size: clamp(0.75rem, 0.523rem + 0.97vw, 1.25rem);
  text-align: center;
  margin: clamp(3.75rem, 2.33rem + 6.061vw, 6.875rem) auto clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.4em;
}
.p-variation__button-caption.recipe {
  margin-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
}
.p-variation__button-caption.media {
  padding-top: clamp(3.75rem, 2.33rem + 6.061vw, 6.875rem);
}
.p-variation__button-caption::before {
  content: "＼";
  margin-right: 0.3em;
}
.p-variation__button-caption::after {
  content: "／";
  margin-left: 0.3em;
}
.p-variation__button-caption2 {
  color: #fff;
  font-size: clamp(0.75rem, 0.523rem + 0.97vw, 1.25rem);
  text-align: center;
  margin: clamp(3.75rem, 2.33rem + 6.061vw, 6.875rem) auto clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  letter-spacing: 0.4em;
}
.p-variation__button-caption2::before {
  content: "＼";
  margin-right: 0.3em;
}
.p-variation__button-caption2::after {
  content: "／";
  margin-left: 0.3em;
}

.point {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  text-align: center;
  color: #e8352e;
  letter-spacing: 0.4em;
  padding-bottom: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.point::before {
  content: "";
  display: block;
  background-image: url("https://gigaplus.makeshop.jp/supermen/collabmug/images/icon-noodle.png");
  background-repeat: no-repeat;
  background-size: 29.9947px 30.2638px;
  width: 29.9947px;
  height: 30.2638px;
  margin: 0 auto 8.6505px;
}
@media screen and (min-width: 992px) {
  .point::before {
    background-size: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }
}

.c-point__2sep {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .c-point__2sep {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.c-point__2sep-item {
  width: 100%;
}

.c-point__3sep {
  display: flex;
  justify-content: space-between;
  gap: 4.7%;
  margin: clamp(2.5rem, 2.216rem + 1.212vw, 3.125rem) auto 0;
}
@media screen and (min-width: 768px) {
  .c-point__3sep {
    gap: 8%;
    max-width: 1080px;
  }
}
.c-point__3sep-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-point__3sep-item figcaption {
  text-align: center;
  line-height: 2;
  margin-top: clamp(1.25rem, 0.788rem + 1.97vw, 2.266rem);
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
@media screen and (min-width: 992px) {
  .c-point__3sep-item figcaption {
    white-space: nowrap;
  }
}
.c-point__3sep figure {
  flex: 1;
  margin: 0;
  padding: 0;
  width: clamp(6.25rem, 0.568rem + 24.242vw, 18.75rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-point__3sep figcaption {
  text-align: center;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
}
.c-point__3sep.yasashii figure img {
  width: clamp(6.25rem, 0.568rem + 24.242vw, 18.75rem);
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.c-point__caption {
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  line-height: 2.5;
  text-align: center;
  margin-top: clamp(1.25rem, 0.682rem + 2.424vw, 2.5rem);
  font-size: clamp(0.625rem, 0.346rem + 1.339vw, 1.25rem);
  letter-spacing: 0.15em;
}
.c-point__caption img {
  width: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  height: 100%;
  aspect-ratio: 1/1;
}
.c-point__caption.about {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 992px) {
  .c-point__caption.about {
    letter-spacing: 0.4em;
  }
}
.c-point__caption.mugpot {
  letter-spacing: 0em;
}
@media screen and (min-width: 992px) {
  .c-point__caption.mugpot {
    letter-spacing: 0.2em;
  }
}
.c-point__caption-cover {
  margin-left: 24%;
}
.c-point__caption-cover .c-point__caption {
  text-align: left;
}
@media screen and (min-width: 992px) {
  .c-point__caption {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2;
  }
  .c-point__caption-cover {
    margin-left: unset;
  }
  .c-point__caption-cover .c-point__caption {
    text-align: center;
  }
}

.c-point__chart {
  margin-top: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
}
@media screen and (min-width: 992px) {
  .c-point__chart {
    width: 80%;
    margin: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem) auto 0;
  }
}
.c-point__chart-caption {
  text-align: center;
  font-size: clamp(0.625rem, 0.341rem + 1.212vw, 1.25rem);
  line-height: 2;
  margin-top: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
}

.p-voice__item {
  clear: both;
  width: 86.3%;
  margin: 0 auto;
  padding-top: clamp(1.875rem, 1.023rem + 3.636vw, 3.75rem);
  display: grid;
  grid-template-columns: 30px 10px auto;
  grid-template-rows: auto 5px auto;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-voice__item {
    width: 98%;
    grid-template-columns: 120px 40px auto;
    grid-template-rows: auto 18px auto;
  }
}
.p-voice__item:first-of-type {
  padding-top: clamp(3.125rem, 2.273rem + 3.636vw, 5rem);
}
.p-voice__item-face {
  width: 30px;
  height: 30px;
  grid-column: 1/2;
  grid-row: 1/4;
}
@media screen and (min-width: 768px) {
  .p-voice__item-face {
    width: 120px;
    height: 120px;
  }
}
.p-voice__item-title {
  font-size: clamp(0.469rem, -0.11rem + 2.647vw, 1.875rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  grid-column: 3;
  grid-row: 1;
  line-height: 1;
}
.p-voice__item-caption {
  font-size: clamp(0.375rem, 0.118rem + 1.176vw, 1rem);
  line-height: 1.5;
  grid-column: 3;
  grid-row: 3/4;
  vertical-align: top;
}

.push-button__wrapper.glutenfree {
  margin: 0 auto calc(clamp(3.642rem, 2.456rem + 5.058vw, 6.25rem) - 55px);
}

.c-nayami {
  list-style: none;
  margin-top: clamp(1.25rem, -0.455rem + 7.273vw, 5rem);
}
.c-nayami li {
  margin-bottom: 10px;
}
.c-nayami li img {
  width: 100%;
}

.p-mugpot {
  margin-top: clamp(2.5rem, 1.364rem + 4.848vw, 5rem);
}/*# sourceMappingURL=common.css.map */