@charset "UTF-8";
/* ***************************
reset
*************************** */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: revert;
  vertical-align: middle;
}

:where(h1, h2, h3) {
  text-wrap: revert;
}

:where(fieldset) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}

:where([tabindex="-1"]:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* ***************************
reset animation
*************************** */
@media (prefers-reduced-motion) {
  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* ***************************
variables
*************************** */
:root {
  --color-primary: #08312a;
  --color-background: #f6f5f3;
  --color-border: #ccc;
  --color-text: #222;
  --color-text-sub: #333;
  --color-text-accent: #976D43;
  --color-link: var(--color-primary);
  --color-link-visited: var(--color-link);
  --color-link-hover: var(--color-link);
  --color-dark: #000;
  --color-light: #fff;
  --color-section-pink: #FFE1E1;
  --color-brand-shadow: #FFCACA;
  --color-brand-title: #EB6D8B;
  --color-brand-goods-background: #FFFBF5;
  --color-lineup-item-hover: #EB6D8B;
  --color-lineup-item-shadow: rgba(243, 118, 118, 0.5);
  --color-slider-pagination: #999;
  --color-slider-control: #737e80;
  --color-slider-icon: #e5eeee;
  --color-top-slider-shadow: #ffc0c0;
  --color-top-slider-dot: #d9d9d9;
  --font-family: "Zen Maru Gothic", Yu Gothic, "メイリオ", Meiryo, sans-serif;
  --font-family-noto: "Noto Sans JP", Yu Gothic, "メイリオ", Meiryo, sans-serif;
  --base-font-size: 1rem;
  --base-line-height: 1.5rem;
  --color-item-card-name: #0061FC;
  --color-item-card-label: #5D5D5D;
  --color-item-card-price: #000000;
  --color-item-card-release: #5D5D5D;
  --color-more-button-background: #F98D8D;
  --color-more-button-shadow: #F37676;
  --color-more-button-text: #fff;
}

/* ***************************
html, body
*************************** */
html {
  height: var(--100vh, 100vh);
  min-height: 100%;
  color-scheme: light;
  scrollbar-gutter: auto;
  scroll-padding-top: 1rem;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family);
  font-size: 100%;
  line-height: inherit;
  color: var(--color-text);
  font-weight: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  padding: 0;
  margin: 0;
}

/* ***************************
hr
*************************** */
hr {
  height: 0;
  margin: 0;
  background: none;
  border: none;
}

/* ***************************
figure, img
*************************** */
img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/*
print
*************************** */
@page {
  margin: 20px;
}
.pageReader {
  position: absolute;
  width: 0;
  height: 0;
  text-indent: -9999px;
  font-size: 0%;
  line-height: 0;
  outline: none;
  overflow: hidden;
}

/* ***************************
text
*************************** */
/* ***************************
strong, em, mark
*************************** */
strong,
b {
  font-weight: bold;
}

em {
  font-style: italic;
}

mark {
  background-color: transparent;
}

/* ***************************
sup, sub
*************************** */
sup {
  font-size: smaller;
  vertical-align: super;
}

sub {
  font-size: smaller;
  vertical-align: sub;
}

/* ***************************
a
*************************** */
a {
  color: var(--color-link);
  text-decoration: underline;
}
a:where(:visited) {
  color: var(--color-link-visited);
}
@media (any-hover: hover) {
  a:where(:hover) {
    color: var(--color-link-hover);
    text-decoration: none;
  }
}

/* ***************************
heading
*************************** */
/*
h1
*************************** */
/*
h2
*************************** */
/*
h3
*************************** */
/*
h4
*************************** */
/*
h5
*************************** */
/*
h6
*************************** */
/* ***************************
list
*************************** */
/* ***************************
table
*************************** */
/* ***************************
form input
*************************** */
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

select,
button {
  cursor: pointer;
}

button {
  width: 100%;
  overflow: visible;
}

input::-ms-clear,
input::-ms-reveal,
select::-ms-expand {
  display: none;
}

fieldset {
  border: none;
}

legend {
  width: 100%;
}

/* ***************************
l-base
*************************** */
.l-base {
  position: relative;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.l-base__body {
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  background-color: var(--color-section-pink);
}
.l-base__body *,
.l-base__body *::before,
.l-base__body *::after {
  box-sizing: inherit;
}

/* ***************************
l-header
*************************** */
/* ***************************
l-main
*************************** */
.l-main {
  position: relative;
}

.l-main__head {
  position: relative;
}

.l-main__body {
  position: relative;
}

.l-main__topContents {
  background-image: url("../images/mainvisual_backimage.png");
  background-color: var(--color-light);
}

/* ***************************
l-footer
*************************** */
/* ***************************
commonSlider
*************************** */
.c-commonSlider {
  margin: 40px auto 70px;
  overflow-x: clip;
}
.c-commonSlider .splide__track {
  overflow: hidden;
}
.c-commonSlider .splide__slide {
  padding: 4px 10px;
}
.c-commonSlider .splide__slide img {
  width: 100%;
}
.c-commonSlider .splide__pagination {
  bottom: -1.5em;
}
.c-commonSlider .splide__pagination__page.is-active {
  background-color: var(--color-primary);
}
.c-commonSlider .splide__pagination__page {
  background-color: var(--color-slider-pagination);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.c-commonSlider .splide__arrow {
  background-color: var(--color-primary);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.c-commonSlider .splide__arrow svg {
  fill: var(--color-light);
}
.c-commonSlider .splide__controls {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  position: absolute;
  bottom: -2.5em;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  transform: none;
}
.c-commonSlider .c-commonSlider__pager {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c-commonSlider .c-commonSlider__pager .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.c-commonSlider .c-commonSlider__pager .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.c-commonSlider .c-commonSlider__pager .splide__arrow--prev {
  left: 0;
}
.c-commonSlider .c-commonSlider__pager .splide__arrow--next {
  right: 0;
}
.c-commonSlider .splide__controls .splide__pagination,
.c-commonSlider .c-commonSlider__pager .splide__pagination {
  bottom: auto;
  left: auto;
  position: static;
  transform: none;
  width: auto;
  padding-inline: 2.5em;
}
.c-commonSlider .splide__btnPause,
.c-commonSlider .splide__toggle {
  display: inline-flex;
  align-items: center;
  background: var(--color-slider-control);
  border-radius: 50%;
  height: 1.8rem;
  justify-content: center;
  transition: background-color 0.2s ease;
  width: 1.8rem;
  padding: 0;
  border: 0;
  margin-right: 0.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.c-commonSlider .splide__btnPause.is-active,
.c-commonSlider .splide__toggle.is-active {
  background: var(--color-primary);
}
.c-commonSlider .splide__btnPause svg,
.c-commonSlider .splide__toggle svg {
  fill: var(--color-slider-icon);
  height: 46%;
  transition: fill 0.2s ease;
  width: 46%;
}
.c-commonSlider .splide__toggle + .splide__btnPause {
  background: var(--color-slider-control);
}
.c-commonSlider .splide__toggle.is-active + .splide__btnPause {
  background: var(--color-slider-control);
}
.c-commonSlider .splide__toggle + .splide__btnPause .splide__btnPause__play {
  display: none;
}
.c-commonSlider .splide__toggle.is-active + .splide__btnPause .splide__btnPause__play {
  display: block;
}
.c-commonSlider .splide__toggle + .splide__btnPause .splide__btnPause__pause {
  display: block;
}
.c-commonSlider .splide__toggle.is-active + .splide__btnPause .splide__btnPause__pause {
  display: none;
}

/* ***************************
goods
*************************** */
.c-goods {
  position: relative;
}
@media screen and (max-width: 48rem) {
  .c-goods {
    max-width: 360px;
    margin: 0 auto;
  }
}

.c-goods__list {
  --goods-item-width: 182px;
  display: grid;
  grid-template-columns: repeat(4, var(--goods-item-width));
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  justify-items: start;
}
.c-goods__list:has(> .c-goods__item:only-child) {
  grid-template-columns: var(--goods-item-width);
  margin-inline: auto;
}
@media screen and (min-width: 769px) and (max-width: 800px) {
  .c-goods__list {
    grid-template-columns: repeat(2, var(--goods-item-width));
  }
}
@media screen and (max-width: 48rem) {
  .c-goods__list {
    gap: 16px;
    --goods-item-width: 172px;
    grid-template-columns: repeat(2, var(--goods-item-width));
  }
}

.c-goods__list--more {
  overflow: hidden;
  min-height: 0;
}

.c-goods__morePanel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.c-goods.is-open .c-goods__morePanel {
  grid-template-rows: 1fr;
  margin-top: 10px;
}

.c-goods__more {
  display: block;
  margin-inline: auto;
  margin-top: 60px;
  max-width: 360px;
  height: 56px;
  border-radius: 28px;
  background-color: var(--color-more-button-background);
  box-shadow: 0 4px 0 0 var(--color-more-button-shadow);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-goods__more:where(:hover) {
    opacity: 0.9;
    text-decoration: none;
  }
}

.c-goods__more__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-inline: 60px;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.c-goods__more__link::before, .c-goods__more__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-goods__more__link::before {
  left: 21px;
  width: 37px;
  height: 32px;
  background-image: url(../images/brand_morebtn_head.svg);
}
.c-goods__more__link::after {
  right: 29px;
  width: 36px;
  height: 35px;
  background-image: url(../images/brand_morebtn_plus.svg);
}

.c-goods.is-open .c-goods__more__link::after {
  background-image: url(../images/brand_morebtn_minus.svg);
}

.c-goods__more__link__text {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  font-family: var(--font-family);
  color: var(--color-more-button-text);
}

.c-goods__more__link__text--close {
  display: none;
}

.c-goods.is-open .c-goods__more__link__text--open {
  display: none;
}

.c-goods.is-open .c-goods__more__link__text--close {
  display: inline;
}

.c-goods__more.is-hidden,
.c-goods__morePanel.is-hidden {
  display: none;
}

.c-goods__item {
  display: block;
  width: var(--goods-item-width, 180px);
  max-width: 100%;
}
@media screen and (max-width: 48rem) {
  .c-goods__item {
    width: var(--goods-item-width, 172px);
  }
}

.c-goods__link {
  display: block;
  width: 100%;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ***************************
itemCard
*************************** */
.c-itemCard {
  display: block;
  width: 100%;
}

.c-itemCard__image {
  display: block;
  width: 182px;
  height: 182px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background-color: var(--color-light);
}
@media screen and (max-width: 48rem) {
  .c-itemCard__image {
    width: 172px;
    height: 172px;
  }
}
.c-itemCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-itemCard__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.c-itemCard__name {
  padding-top: 16px;
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: bold;
  color: var(--color-item-card-name);
}

.c-itemCard__label {
  padding-top: 7px;
  font-size: 0.6875rem;
  line-height: 1.125rem;
}

.c-itemCard__price {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: bold;
  color: var(--color-item-card-price);
}
.c-itemCard__price::before {
  content: "¥";
  position: relative;
  top: -0.2em;
  padding-right: 4px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: bold;
  color: var(--color-item-card-price);
}

.c-itemCard__release {
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: var(--color-item-card-release);
}

/* ***************************
brandLeader
*************************** */
.c-brandLeader {
  position: relative;
  padding-top: 25px;
}
.c-brandLeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 10px;
  background-image: url(../images/brand_leader_head.svg);
}

.c-brandLeader__text {
  margin: 0 auto;
  font-size: 1.25rem;
  font-family: var(--font-family);
  line-height: 2.25rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-text-accent);
}
@media screen and (max-width: 48rem) {
  .c-brandLeader__text {
    font-size: 1.125rem;
    line-height: 2.025rem;
  }
}
@media screen and (max-width: 48rem) {
  .c-brandLeader__text.is-narrow {
    max-width: 330px;
  }
}

/* ***************************
mainVisual
*************************** */
.p-mainVisual {
  position: relative;
}
.p-mainVisual::before, .p-mainVisual::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 24px;
  background-image: url("../images/mainvisual_border.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}
.p-mainVisual::before {
  top: 0;
}
.p-mainVisual::after {
  bottom: 0;
}

.p-mainVisual__inner {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 1000px;
  height: 472px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 48rem) {
  .p-mainVisual__inner {
    height: 345px;
    padding: 0;
  }
}

.p-mainVisual__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  top: -4px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 48rem) {
  .p-mainVisual__image {
    top: 4px;
    max-width: 370px;
  }
}

/* ***************************
topSlider
*************************** */
.p-topSlider {
  position: relative;
  overflow-x: clip;
  padding-top: 45px;
  padding-bottom: 65px;
}

.p-topSlider .c-commonSlider {
  margin-top: 0;
  margin-bottom: 0;
}
.p-topSlider .c-commonSlider .splide__slide {
  padding-inline: 0;
  padding-bottom: calc(4px + 8px);
  width: -moz-max-content;
  width: max-content;
}
.p-topSlider .c-commonSlider .splide__slide a {
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 0 0 var(--color-top-slider-shadow);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.p-topSlider .c-commonSlider .splide__slide img {
  width: auto;
}
.p-topSlider .c-commonSlider .splide__pagination {
  align-items: center;
}
.p-topSlider .c-commonSlider .splide__pagination__page {
  width: 12px;
  height: 12px;
  margin: 0;
  margin-inline: calc(16px / 2);
  background-color: var(--color-top-slider-dot);
  border-radius: 50%;
  opacity: 1;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (any-hover: hover) {
  .p-topSlider .c-commonSlider .splide__pagination__page:where(:hover) {
    transform: scale(1.1);
  }
}
.p-topSlider .c-commonSlider .splide__pagination__page.is-active {
  width: 25px;
  height: 20px;
  background-color: transparent;
  background-image: url("../images/slider_dot.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 20px;
  border-radius: 0;
  opacity: 1;
  transform: none;
}
@media (any-hover: hover) {
  .p-topSlider .c-commonSlider .splide__pagination__page.is-active:where(:hover) {
    transform: scale(1.1);
  }
}
.p-topSlider .c-commonSlider .splide__controls {
  bottom: -55px;
}
@media screen and (max-width: 48rem) {
  .p-topSlider .c-commonSlider .splide__controls {
    bottom: -45px;
  }
}
.p-topSlider .c-commonSlider .c-commonSlider__pager .splide__pagination {
  padding-inline: calc(40px + 30px - 16px / 2);
}
.p-topSlider .c-commonSlider .c-commonSlider__pager .splide__arrow {
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-image: url("../images/slider_button.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 0;
  opacity: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (any-hover: hover) {
  .p-topSlider .c-commonSlider .c-commonSlider__pager .splide__arrow:where(:hover) {
    transform: translateY(-50%) scale(1.1);
  }
}
.p-topSlider .c-commonSlider .c-commonSlider__pager .splide__arrow svg {
  display: none;
}
.p-topSlider .c-commonSlider .c-commonSlider__pager .splide__arrow--next {
  transform: translateY(-50%) scaleX(-1);
}
@media (any-hover: hover) {
  .p-topSlider .c-commonSlider .c-commonSlider__pager .splide__arrow--next:where(:hover) {
    transform: translateY(-50%) scaleX(-1) scale(1.1);
  }
}

.p-topSlider__image {
  display: block;
  border-radius: 8px;
  height: 520px;
  width: auto;
  max-width: none;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 48rem) {
  .p-topSlider__image {
    height: 267px;
  }
}

/* ***************************
topContents
*************************** */
.p-topContents {
  position: relative;
}

.p-topContents__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  text-align: center;
}

.p-topContents__text {
  margin: 20px 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.25rem;
  color: var(--color-text-accent);
}
@media screen and (max-width: 48rem) {
  .p-topContents__text {
    margin: 10px 0 20px;
    font-size: 1.125rem;
    line-height: 2rem;
  }
}

/* ***************************
lineup
*************************** */
.p-lineup {
  position: relative;
  background-color: var(--color-section-pink);
  padding-bottom: 65px;
}
.p-lineup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background-image: url("../images/mainvisual_border.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.p-lineup__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-lineup__title {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 110px 0 60px;
  text-align: center;
}
@media screen and (max-width: 48rem) {
  .p-lineup__title {
    padding: 60px 0 50px;
  }
}

.p-lineup__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 410px));
  gap: 10px 30px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .p-lineup__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    justify-content: stretch;
    justify-items: center;
  }
}

.p-lineup__item {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  min-height: 56px;
  max-width: 410px;
  min-width: 0;
  margin: 0;
  padding: 5px 0;
  overflow-wrap: anywhere;
  border-radius: 28px;
  background-color: var(--color-light);
  transition: all 0.3s ease;
  box-shadow: 0px 4px 0px 0px var(--color-lineup-item-shadow);
}
@media screen and (max-width: 48rem) {
  .p-lineup__item {
    max-width: 360px;
  }
}
@media (any-hover: hover) {
  .p-lineup__item:hover .p-lineup__link {
    color: var(--color-lineup-item-hover);
  }
}
.p-lineup__item::before, .p-lineup__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.p-lineup__item::before {
  left: 24px;
  width: 20px;
  height: 23px;
  background-image: url("../images/lineup_icon_head.svg");
}
.p-lineup__item::after {
  right: 24px;
  width: 24px;
  height: 24px;
  background-image: url("../images/lineup_icon_footer.svg");
}

.p-lineup__link {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  padding: 0 55px;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-decoration: none;
  font-weight: bold;
  color: var(--color-text-sub);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ***************************
brand
*************************** */
.p-brand {
  position: relative;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 48rem) {
  .p-brand {
    scroll-margin-top: 110px;
  }
}

.p-lineup + .p-brand {
  margin-top: 55px;
}

.p-brand + .p-brand {
  margin-top: 94px;
}

.p-brand__inner {
  display: block;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 35px;
  font-family: var(--font-family-noto);
  font-style: normal;
  background-color: var(--color-light);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom: 6px solid var(--color-more-button-background);
  box-shadow: 0px -15px 0px 0px var(--color-brand-shadow);
}
.p-brand__inner::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 153px;
  height: 86px;
  background-image: url(../images/brand_header_pict.png);
}
@media screen and (max-width: 48rem) {
  .p-brand__inner::before {
    top: -45px;
    width: 127px;
    height: 71px;
    background-size: contain;
  }
}

.p-brand__title {
  text-align: center;
}

@media screen and (max-width: 48rem) {
  #section_acmui .p-brand__title img {
    width: 285px;
  }
  #section_obento_pazzle .p-brand__title img {
    width: 220px;
  }
  #section_prica .p-brand__title img {
    width: 228px;
  }
  #section_dream_switch .p-brand__title img {
    width: 284px;
  }
  #section_sonic_friend .p-brand__title img {
    width: 287px;
  }
  #section_spoonpets .p-brand__title img {
    width: 280px;
  }
}
.p-brand__title + .c-brandLeader {
  margin-top: 45px;
}

.p-brand__title + .p-brand__visual {
  margin-top: 45px;
}

.p-brand__visual + .c-brandLeader {
  margin-top: 45px;
}

.p-brand__contents {
  margin-top: 40px;
}

.p-brand__contents__logo {
  text-align: center;
}

.p-brand__contents__title {
  margin: 16px 0 32px;
  font-size: 1.375rem;
  font-family: var(--font-family);
  line-height: 1.65rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-brand-title);
}
@media screen and (max-width: 48rem) {
  .p-brand__contents__title {
    margin: 20px 0 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.p-brand__contents__visual {
  text-align: center;
}

.p-brand__contents__photo {
  text-align: center;
  padding: 0 15px;
}

.p-brand__contents__visual + .p-brand__contents__photo {
  margin-top: 35px;
}
@media screen and (max-width: 48rem) {
  .p-brand__contents__visual + .p-brand__contents__photo {
    margin-top: 20px;
  }
}

.p-brand__contents__text {
  max-width: 640px;
  margin: 36px auto 40px;
  font-size: 1.125rem;
  font-family: var(--font-family);
  line-height: 2.025rem;
  font-weight: bold;
  color: var(--color-dark);
}
@media screen and (max-width: 48rem) {
  .p-brand__contents__text {
    margin-top: 25px;
    padding: 0 15px;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: normal;
  }
}

.p-brand__goods {
  padding: 48px 0 50px;
  background-image: url(../images/brand_item_backimage.png);
  background-color: var(--color-brand-goods-background);
}

.c-brandLeader + .p-brand__goods {
  margin-top: 40px;
}

/* ***************************
pageFooter
*************************** */
.p-pageFooter {
  display: block;
  max-width: 880px;
  margin: 65px auto 0;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 48rem) {
  .p-pageFooter {
    margin-top: 40px;
    padding-bottom: 12px;
  }
}

.p-pageFooter__image {
  position: relative;
  top: 27px;
}
@media screen and (max-width: 48rem) {
  .p-pageFooter__image {
    top: 24px;
    width: 358px;
  }
}

.p-pageFooter__copyright {
  font-family: var(--font-family-noto);
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: bold;
  color: var(--color-text-accent);
}

/* ***************************
display
*************************** */
@media screen and (max-width: 48rem) {
  .u-pcOnly {
    display: none !important;
  }
}

.u-spOnly {
  display: none !important;
}
@media screen and (max-width: 48rem) {
  .u-spOnly {
    display: block !important;
  }
}

.u-hide {
  display: none;
}

.u-block {
  display: block;
}

@media screen and (max-width: 48rem) {
  .u-block_sp {
    display: block;
  }
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-opacity:hover {
  opacity: 0.8;
}

.u-alignItems--flexEnd {
  align-items: flex-end !important;
}

.u-alignItems--center {
  align-items: center !important;
}

.u-flex {
  display: flex;
}
@media screen and (max-width: 48rem) {
  .u-flex {
    display: block;
  }
}

.u-flexBasis5 {
  flex-basis: 5%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis5_sp {
    flex-basis: 5%;
  }
}

.u-flexBasis10 {
  flex-basis: 10%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis10_sp {
    flex-basis: 10%;
  }
}

.u-flexBasis15 {
  flex-basis: 15%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis15_sp {
    flex-basis: 15%;
  }
}

.u-flexBasis20 {
  flex-basis: 20%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis20_sp {
    flex-basis: 20%;
  }
}

.u-flexBasis25 {
  flex-basis: 25%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis25_sp {
    flex-basis: 25%;
  }
}

.u-flexBasis30 {
  flex-basis: 30%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis30_sp {
    flex-basis: 30%;
  }
}

.u-flexBasis35 {
  flex-basis: 35%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis35_sp {
    flex-basis: 35%;
  }
}

.u-flexBasis40 {
  flex-basis: 40%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis40_sp {
    flex-basis: 40%;
  }
}

.u-flexBasis45 {
  flex-basis: 45%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis45_sp {
    flex-basis: 45%;
  }
}

.u-flexBasis50 {
  flex-basis: 50%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis50_sp {
    flex-basis: 50%;
  }
}

.u-flexBasis55 {
  flex-basis: 55%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis55_sp {
    flex-basis: 55%;
  }
}

.u-flexBasis60 {
  flex-basis: 60%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis60_sp {
    flex-basis: 60%;
  }
}

.u-flexBasis65 {
  flex-basis: 65%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis65_sp {
    flex-basis: 65%;
  }
}

.u-flexBasis70 {
  flex-basis: 70%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis70_sp {
    flex-basis: 70%;
  }
}

.u-flexBasis75 {
  flex-basis: 75%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis75_sp {
    flex-basis: 75%;
  }
}

.u-flexBasis80 {
  flex-basis: 80%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis80_sp {
    flex-basis: 80%;
  }
}

.u-flexBasis85 {
  flex-basis: 85%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis85_sp {
    flex-basis: 85%;
  }
}

.u-flexBasis90 {
  flex-basis: 90%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis90_sp {
    flex-basis: 90%;
  }
}

.u-flexBasis95 {
  flex-basis: 95%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis95_sp {
    flex-basis: 95%;
  }
}

.u-flexBasis100 {
  flex-basis: 100%;
}

@media screen and (max-width: 48rem) {
  .u-flexBasis100_sp {
    flex-basis: 100%;
  }
}

.u-imgWidthFull {
  max-width: inherit;
  width: 100%;
}

.u-afterHide:after {
  display: none !important;
}

.u-afterHide:hover:after {
  display: none !important;
}

.u-beforeHide:before {
  display: none !important;
}

.u-beforeHide:hover:before {
  display: none !important;
}

/* ***************************
text
*************************** */
.u-alignCenter {
  text-align: center;
}
.u-alignCenter th,
.u-alignCenter td {
  text-align: center;
}

.u-alignLeft {
  text-align: left;
}
.u-alignLeft th,
.u-alignLeft td {
  text-align: left;
}

.u-alignRight {
  text-align: right;
}
.u-alignRight th,
.u-alignRight td {
  text-align: right;
}

@media screen and (max-width: 48rem) {
  .u-alignCenter_sp {
    text-align: center;
  }
  .u-alignLeft_sp {
    text-align: left;
  }
  .u-alignRight_sp {
    text-align: right;
  }
}
/* ------------------------
vertical-align
------------------------ */
.u-alignTop {
  vertical-align: top;
}

.u-alignMiddle {
  vertical-align: middle;
}

.u-alignBottom {
  vertical-align: bottom;
}

/* ------------------------
font-weight
------------------------ */
.u-fwNormal {
  font-weight: normal;
}

.u-fwBold {
  font-weight: bold;
}

/* ------------------------
caution
------------------------ */
.u-caution {
  position: relative;
  display: inline-block;
  padding-left: 1em;
}
.u-caution:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "＊";
}

/* ------------------------
indent
------------------------ */
.u-textIndent1em {
  padding-left: 1em;
  text-indent: -1em;
}

.u-textIndent2em {
  padding-left: 2em;
  text-indent: -2em;
}

.u-textIndent3em {
  padding-left: 3em;
  text-indent: -3em;
}

/* ------------------------
word-break
------------------------ */
.u-wb-ba {
  word-break: break-all;
}

.u-wb-bw {
  word-break: break-word;
  word-wrap: break-word;
}

/* ------------------------
float
------------------------ */
.u-float--right {
  float: right;
}

.u-float--left {
  float: left;
}

.u-float--none {
  float: none;
}

/* ------------------------
font
------------------------ */
.u-font-ZenMaruGothic {
  font-family: "Zen Maru Gothic", Yu Gothic, "メイリオ", Meiryo, sans-serif;
  font-style: normal;
}

.u-font-NotoSansJP {
  font-family: "Noto Sans JP", Yu Gothic, "メイリオ", Meiryo, sans-serif;
  font-style: normal;
}

/* ***************************
box
*************************** */
/* margin
--------------------------- */
.u-mAuto {
  margin-left: auto;
  margin-right: auto;
}

/* top */
.u-mTop5 {
  margin-top: 5px;
}

.u-mTop10 {
  margin-top: 10px;
}

.u-mTop15 {
  margin-top: 15px;
}

.u-mTop20 {
  margin-top: 20px;
}

.u-mTop25 {
  margin-top: 25px;
}

.u-mTop30 {
  margin-top: 30px;
}

.u-mTop35 {
  margin-top: 35px;
}

.u-mTop40 {
  margin-top: 40px;
}

.u-mTop45 {
  margin-top: 45px;
}

.u-mTop50 {
  margin-top: 50px;
}

.u-mTop55 {
  margin-top: 55px;
}

.u-mTop60 {
  margin-top: 60px;
}

.u-mTop65 {
  margin-top: 65px;
}

.u-mTop70 {
  margin-top: 70px;
}

.u-mTop75 {
  margin-top: 75px;
}

.u-mTop80 {
  margin-top: 80px;
}

.u-mTop85 {
  margin-top: 85px;
}

.u-mTop90 {
  margin-top: 90px;
}

.u-mTop95 {
  margin-top: 95px;
}

.u-mTop100 {
  margin-top: 100px;
}

/* top(spOnly) */
@media screen and (max-width: 48rem) {
  .u-mTop5_sp {
    margin-top: 5px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop10_sp {
    margin-top: 10px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop15_sp {
    margin-top: 15px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop20_sp {
    margin-top: 20px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop25_sp {
    margin-top: 25px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop30_sp {
    margin-top: 30px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop35_sp {
    margin-top: 35px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop40_sp {
    margin-top: 40px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop45_sp {
    margin-top: 45px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop50_sp {
    margin-top: 50px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop55_sp {
    margin-top: 55px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop60_sp {
    margin-top: 60px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop65_sp {
    margin-top: 65px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop70_sp {
    margin-top: 70px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop75_sp {
    margin-top: 75px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop80_sp {
    margin-top: 80px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop85_sp {
    margin-top: 85px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop90_sp {
    margin-top: 90px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop95_sp {
    margin-top: 95px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mTop100_sp {
    margin-top: 100px;
  }
}

/* right */
.u-mRight5 {
  margin-right: 5px;
}

.u-mRight10 {
  margin-right: 10px;
}

.u-mRight15 {
  margin-right: 15px;
}

.u-mRight20 {
  margin-right: 20px;
}

.u-mRight25 {
  margin-right: 25px;
}

.u-mRight30 {
  margin-right: 30px;
}

.u-mRight35 {
  margin-right: 35px;
}

.u-mRight40 {
  margin-right: 40px;
}

.u-mRight45 {
  margin-right: 45px;
}

.u-mRight50 {
  margin-right: 50px;
}

.u-mRight55 {
  margin-right: 55px;
}

.u-mRight60 {
  margin-right: 60px;
}

.u-mRight65 {
  margin-right: 65px;
}

.u-mRight70 {
  margin-right: 70px;
}

.u-mRight75 {
  margin-right: 75px;
}

.u-mRight80 {
  margin-right: 80px;
}

.u-mRight85 {
  margin-right: 85px;
}

.u-mRight90 {
  margin-right: 90px;
}

.u-mRight95 {
  margin-right: 95px;
}

.u-mRight100 {
  margin-right: 100px;
}

/* bottom */
.u-mBottom5 {
  margin-bottom: 5px;
}

.u-mBottom10 {
  margin-bottom: 10px;
}

.u-mBottom15 {
  margin-bottom: 15px;
}

.u-mBottom20 {
  margin-bottom: 20px;
}

.u-mBottom25 {
  margin-bottom: 25px;
}

.u-mBottom30 {
  margin-bottom: 30px;
}

.u-mBottom35 {
  margin-bottom: 35px;
}

.u-mBottom40 {
  margin-bottom: 40px;
}

.u-mBottom45 {
  margin-bottom: 45px;
}

.u-mBottom50 {
  margin-bottom: 50px;
}

.u-mBottom55 {
  margin-bottom: 55px;
}

.u-mBottom60 {
  margin-bottom: 60px;
}

.u-mBottom65 {
  margin-bottom: 65px;
}

.u-mBottom70 {
  margin-bottom: 70px;
}

.u-mBottom75 {
  margin-bottom: 75px;
}

.u-mBottom80 {
  margin-bottom: 80px;
}

.u-mBottom85 {
  margin-bottom: 85px;
}

.u-mBottom90 {
  margin-bottom: 90px;
}

.u-mBottom95 {
  margin-bottom: 95px;
}

.u-mBottom100 {
  margin-bottom: 100px;
}

/* left */
.u-mLeft5 {
  margin-left: 5px;
}

.u-mLeft10 {
  margin-left: 10px;
}

.u-mLeft15 {
  margin-left: 15px;
}

.u-mLeft20 {
  margin-left: 20px;
}

.u-mLeft25 {
  margin-left: 25px;
}

.u-mLeft30 {
  margin-left: 30px;
}

.u-mLeft35 {
  margin-left: 35px;
}

.u-mLeft40 {
  margin-left: 40px;
}

.u-mLeft45 {
  margin-left: 45px;
}

.u-mLeft50 {
  margin-left: 50px;
}

.u-mLeft55 {
  margin-left: 55px;
}

.u-mLeft60 {
  margin-left: 60px;
}

.u-mLeft65 {
  margin-left: 65px;
}

.u-mLeft70 {
  margin-left: 70px;
}

.u-mLeft75 {
  margin-left: 75px;
}

.u-mLeft80 {
  margin-left: 80px;
}

.u-mLeft85 {
  margin-left: 85px;
}

.u-mLeft90 {
  margin-left: 90px;
}

.u-mLeft95 {
  margin-left: 95px;
}

.u-mLeft100 {
  margin-left: 100px;
}

/* left(spOnly) */
@media screen and (max-width: 48rem) {
  .u-mLeft5_sp {
    margin-left: 5px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft10_sp {
    margin-left: 10px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft15_sp {
    margin-left: 15px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft20_sp {
    margin-left: 20px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft25_sp {
    margin-left: 25px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft30_sp {
    margin-left: 30px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft35_sp {
    margin-left: 35px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft40_sp {
    margin-left: 40px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft45_sp {
    margin-left: 45px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft50_sp {
    margin-left: 50px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft55_sp {
    margin-left: 55px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft60_sp {
    margin-left: 60px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft65_sp {
    margin-left: 65px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft70_sp {
    margin-left: 70px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft75_sp {
    margin-left: 75px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft80_sp {
    margin-left: 80px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft85_sp {
    margin-left: 85px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft90_sp {
    margin-left: 90px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft95_sp {
    margin-left: 95px;
  }
}

@media screen and (max-width: 48rem) {
  .u-mLeft100_sp {
    margin-left: 100px;
  }
}

/* padding
--------------------------- */
/* top */
.u-pTop5 {
  padding-top: 5px;
}

.u-pTop10 {
  padding-top: 10px;
}

.u-pTop15 {
  padding-top: 15px;
}

.u-pTop20 {
  padding-top: 20px;
}

.u-pTop25 {
  padding-top: 25px;
}

.u-pTop30 {
  padding-top: 30px;
}

.u-pTop35 {
  padding-top: 35px;
}

.u-pTop40 {
  padding-top: 40px;
}

.u-pTop45 {
  padding-top: 45px;
}

.u-pTop50 {
  padding-top: 50px;
}

.u-pTop55 {
  padding-top: 55px;
}

.u-pTop60 {
  padding-top: 60px;
}

.u-pTop65 {
  padding-top: 65px;
}

.u-pTop70 {
  padding-top: 70px;
}

.u-pTop75 {
  padding-top: 75px;
}

.u-pTop80 {
  padding-top: 80px;
}

.u-pTop85 {
  padding-top: 85px;
}

.u-pTop90 {
  padding-top: 90px;
}

.u-pTop95 {
  padding-top: 95px;
}

.u-pTop100 {
  padding-top: 100px;
}

/* top(spOnly) */
@media screen and (max-width: 48rem) {
  .u-pTop5_sp {
    padding-top: 5px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop10_sp {
    padding-top: 10px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop15_sp {
    padding-top: 15px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop20_sp {
    padding-top: 20px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop25_sp {
    padding-top: 25px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop30_sp {
    padding-top: 30px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop35_sp {
    padding-top: 35px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop40_sp {
    padding-top: 40px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop45_sp {
    padding-top: 45px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop50_sp {
    padding-top: 50px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop55_sp {
    padding-top: 55px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop60_sp {
    padding-top: 60px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop65_sp {
    padding-top: 65px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop70_sp {
    padding-top: 70px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop75_sp {
    padding-top: 75px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop80_sp {
    padding-top: 80px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop85_sp {
    padding-top: 85px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop90_sp {
    padding-top: 90px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop95_sp {
    padding-top: 95px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pTop100_sp {
    padding-top: 100px;
  }
}

/* right */
.u-pRight5 {
  padding-right: 5px;
}

.u-pRight10 {
  padding-right: 10px;
}

.u-pRight15 {
  padding-right: 15px;
}

.u-pRight20 {
  padding-right: 20px;
}

.u-pRight25 {
  padding-right: 25px;
}

.u-pRight30 {
  padding-right: 30px;
}

.u-pRight35 {
  padding-right: 35px;
}

.u-pRight40 {
  padding-right: 40px;
}

.u-pRight45 {
  padding-right: 45px;
}

.u-pRight50 {
  padding-right: 50px;
}

.u-pRight55 {
  padding-right: 55px;
}

.u-pRight60 {
  padding-right: 60px;
}

.u-pRight65 {
  padding-right: 65px;
}

.u-pRight70 {
  padding-right: 70px;
}

.u-pRight75 {
  padding-right: 75px;
}

.u-pRight80 {
  padding-right: 80px;
}

.u-pRight85 {
  padding-right: 85px;
}

.u-pRight90 {
  padding-right: 90px;
}

.u-pRight95 {
  padding-right: 95px;
}

.u-pRight100 {
  padding-right: 100px;
}

/* bottom */
.u-pBottom5 {
  padding-bottom: 5px;
}

.u-pBottom10 {
  padding-bottom: 10px;
}

.u-pBottom15 {
  padding-bottom: 15px;
}

.u-pBottom20 {
  padding-bottom: 20px;
}

.u-pBottom25 {
  padding-bottom: 25px;
}

.u-pBottom30 {
  padding-bottom: 30px;
}

.u-pBottom35 {
  padding-bottom: 35px;
}

.u-pBottom40 {
  padding-bottom: 40px;
}

.u-pBottom45 {
  padding-bottom: 45px;
}

.u-pBottom50 {
  padding-bottom: 50px;
}

.u-pBottom55 {
  padding-bottom: 55px;
}

.u-pBottom60 {
  padding-bottom: 60px;
}

.u-pBottom65 {
  padding-bottom: 65px;
}

.u-pBottom70 {
  padding-bottom: 70px;
}

.u-pBottom75 {
  padding-bottom: 75px;
}

.u-pBottom80 {
  padding-bottom: 80px;
}

.u-pBottom85 {
  padding-bottom: 85px;
}

.u-pBottom90 {
  padding-bottom: 90px;
}

.u-pBottom95 {
  padding-bottom: 95px;
}

.u-pBottom100 {
  padding-bottom: 100px;
}

/* left */
.u-pLeft5 {
  padding-left: 5px;
}

.u-pLeft10 {
  padding-left: 10px;
}

.u-pLeft15 {
  padding-left: 15px;
}

.u-pLeft20 {
  padding-left: 20px;
}

.u-pLeft25 {
  padding-left: 25px;
}

.u-pLeft30 {
  padding-left: 30px;
}

.u-pLeft35 {
  padding-left: 35px;
}

.u-pLeft40 {
  padding-left: 40px;
}

.u-pLeft45 {
  padding-left: 45px;
}

.u-pLeft50 {
  padding-left: 50px;
}

.u-pLeft55 {
  padding-left: 55px;
}

.u-pLeft60 {
  padding-left: 60px;
}

.u-pLeft65 {
  padding-left: 65px;
}

.u-pLeft70 {
  padding-left: 70px;
}

.u-pLeft75 {
  padding-left: 75px;
}

.u-pLeft80 {
  padding-left: 80px;
}

.u-pLeft85 {
  padding-left: 85px;
}

.u-pLeft90 {
  padding-left: 90px;
}

.u-pLeft95 {
  padding-left: 95px;
}

.u-pLeft100 {
  padding-left: 100px;
}

/* left(spOnly) */
@media screen and (max-width: 48rem) {
  .u-pLeft5_sp {
    padding-left: 5px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft10_sp {
    padding-left: 10px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft15_sp {
    padding-left: 15px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft20_sp {
    padding-left: 20px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft25_sp {
    padding-left: 25px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft30_sp {
    padding-left: 30px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft35_sp {
    padding-left: 35px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft40_sp {
    padding-left: 40px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft45_sp {
    padding-left: 45px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft50_sp {
    padding-left: 50px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft55_sp {
    padding-left: 55px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft60_sp {
    padding-left: 60px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft65_sp {
    padding-left: 65px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft70_sp {
    padding-left: 70px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft75_sp {
    padding-left: 75px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft80_sp {
    padding-left: 80px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft85_sp {
    padding-left: 85px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft90_sp {
    padding-left: 90px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft95_sp {
    padding-left: 95px;
  }
}

@media screen and (max-width: 48rem) {
  .u-pLeft100_sp {
    padding-left: 100px;
  }
}

/* width(%)
--------------------------- */
.u-w5 {
  width: 5%;
}

.u-w10 {
  width: 10%;
}

.u-w15 {
  width: 15%;
}

.u-w20 {
  width: 20%;
}

.u-w25 {
  width: 25%;
}

.u-w30 {
  width: 30%;
}

.u-w35 {
  width: 35%;
}

.u-w40 {
  width: 40%;
}

.u-w45 {
  width: 45%;
}

.u-w50 {
  width: 50%;
}

.u-w55 {
  width: 55%;
}

.u-w60 {
  width: 60%;
}

.u-w65 {
  width: 65%;
}

.u-w70 {
  width: 70%;
}

.u-w75 {
  width: 75%;
}

.u-w80 {
  width: 80%;
}

.u-w85 {
  width: 85%;
}

.u-w90 {
  width: 90%;
}

.u-w95 {
  width: 95%;
}

.u-w100 {
  width: 100%;
}

@media screen and (max-width: 48rem) {
  .u-w5_sp {
    width: 5%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w10_sp {
    width: 10%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w15_sp {
    width: 15%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w20_sp {
    width: 20%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w25_sp {
    width: 25%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w30_sp {
    width: 30%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w35_sp {
    width: 35%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w40_sp {
    width: 40%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w45_sp {
    width: 45%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w50_sp {
    width: 50%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w55_sp {
    width: 55%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w60_sp {
    width: 60%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w65_sp {
    width: 65%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w70_sp {
    width: 70%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w75_sp {
    width: 75%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w80_sp {
    width: 80%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w85_sp {
    width: 85%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w90_sp {
    width: 90%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w95_sp {
    width: 95%;
  }
}

@media screen and (max-width: 48rem) {
  .u-w100_sp {
    width: 100%;
  }
}

.u-wAuto {
  width: auto;
}

/* height(px)
--------------------------- */
.u-h5--px {
  height: 5px;
}

.u-h10--px {
  height: 10px;
}

.u-h15--px {
  height: 15px;
}

.u-h20--px {
  height: 20px;
}

.u-h25--px {
  height: 25px;
}

.u-h30--px {
  height: 30px;
}

.u-h35--px {
  height: 35px;
}

.u-h40--px {
  height: 40px;
}

.u-h45--px {
  height: 45px;
}

.u-h50--px {
  height: 50px;
}

.u-h55--px {
  height: 55px;
}

.u-h60--px {
  height: 60px;
}

.u-h65--px {
  height: 65px;
}

.u-h70--px {
  height: 70px;
}

.u-h75--px {
  height: 75px;
}

.u-h80--px {
  height: 80px;
}

.u-h85--px {
  height: 85px;
}

.u-h90--px {
  height: 90px;
}

.u-h95--px {
  height: 95px;
}

.u-h100--px {
  height: 100px;
}

.u-hAuto {
  height: auto;
}
/*# sourceMappingURL=sanrio_main.css.map */
