@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

/* General elements */
hr {
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

ol,
ul,
dl {
  list-style: none;
}

em {
  font-style: normal;
}

small {
  font-size: 0.875em;
}

[hidden] {
  display: none;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  padding: 0 0.1em;
  font-weight: 400;
  font-size: 0.55em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.6em;
}

/* Forms */
input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  color: inherit;
  cursor: pointer;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  border-style: none;
  background-color: transparent;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  display: table;
  max-width: 100%;
  border: 0;
  color: inherit;
  white-space: normal;
}

::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  -webkit-appearance: button;
}

/* Specify media element style */
img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* Accessibility */
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 1.1904761905vw;
}

body {
  color: #fff;
  font-weight: 400;
  font-size: min(1.6rem, 16px);
  line-height: normal;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-color: #1F2C5C;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
a img {
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
a:hover {
  opacity: 0.8;
}

button {
  border: none;
  cursor: pointer;
}

.pop-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  /* 初期状態：下に隠して透明にする */
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 表示された時のクラス */
.pop-btn.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/********************************************************
jsアニメーション
*********************************************************/
/* --- ▼ 下から出てくる
------------------------------------------------------- */
.js-scroll-up-btn {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.js-scroll-up-btn.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* --- ▼ 続きを見る
------------------------------------------------------- */
.js-readmoreContent {
  position: relative;
  max-height: 330px;
  overflow: hidden;
  -webkit-transition: max-height 0.6s;
  transition: max-height 0.6s;
}
.js-readmoreContent::after {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: 1s;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
  pointer-events: none;
  transition: 1s;
}
.js-readmoreContent.show::after {
  visibility: hidden;
  opacity: 0;
}

/********************************************************
header
*********************************************************/
.p-header {
  position: relative;
}
.p-header__logo {
  z-index: 2;
  position: absolute;
  top: min(3.5rem, 35px);
  left: min(4.5rem, 45px);
}
.p-header__logo img {
  width: min(16rem, 160px);
}

/*******************************************************
追従ボタン
*********************************************************/
/* ---▼＜共通＞追従アニメーション
---------------------------------------------------------- */
.js-sticky-target {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}

/* --- 表示状態 --- */
.js-sticky-target.is-shown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ---▼ページトップボタン
---------------------------------------------------------- */
.c-pagetop-btn {
  z-index: 99;
  position: fixed;
  right: min(2rem, 20px);
}
.c-pagetop-btn::after {
  position: absolute;
  top: 50%;
  right: 50%;
  width: min(2.4rem, 24px);
  height: min(2.4rem, 24px);
  border-top: min(0.6rem, 6px) solid #000;
  border-right: min(0.6rem, 6px) solid #000;
  content: "";
  -webkit-transform: translateX(50%) translateY(-25%) rotate(-45deg);
  transform: translateX(50%) translateY(-25%) rotate(-45deg);
}
.c-pagetop-btn button {
  display: block;
  position: relative;
  width: min(8rem, 80px);
  height: min(8rem, 80px);
  border-radius: 50%;
  background: #fff;
}

/* ---▼追従リンクボタン
---------------------------------------------------------- */
.c-floating-nav {
  z-index: 2;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: min(3rem, 30px) min(2.5rem, 25px);
  background-color: rgba(31, 44, 92, 0.7);
}
.c-floating-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 854px;
  margin-right: auto;
  margin-left: auto;
  gap: 6.5%;
}

/********************************************************
footer
*********************************************************/
.p-footer {
  padding: 0 min(4rem, 40px);
  background-color: #fff;
}
.p-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: min(12.5rem, 125px) 0;
}
.p-footer__logo {
  width: min(30rem, 300px);
  margin: 0 auto;
}

/*******************************************************
wrapper
*********************************************************/
.l-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 min(2.5rem, 25px);
}

.l-inner {
  max-width: 700px;
  margin: 0 auto;
}
.l-inner--xl {
  max-width: 810px;
}

/********************************************************
キャンペーンセクション
*********************************************************/
.c-campaign-banner--top .c-campaign-banner__head {
  padding: min(1.8rem, 18px) 0;
}
.c-campaign-banner--top .c-campaign-banner__head .c-campaign-banner__inner {
  padding: 1.9rem 1.5rem;
}
.c-campaign-banner__inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 min(2.5rem, 25px);
}
.c-campaign-banner__head {
  padding: min(1.8rem, 18px) 0 min(0.6rem, 6px);
  background-color: #1F2C5C;
}
.c-campaign-banner__period {
  padding: min(3rem, 30px) 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(9%, rgb(209, 43, 136)), color-stop(50%, rgb(113, 59, 147)), color-stop(92%, rgb(100, 84, 161)));
  background-image: linear-gradient(90deg, rgb(209, 43, 136) 9%, rgb(113, 59, 147) 50%, rgb(100, 84, 161) 92%);
}
.c-campaign-banner__foot {
  padding: min(4.5rem, 45px) 0 min(5rem, 50px);
  background-color: #fff;
}
.c-campaign-banner__foot-inner {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 min(2.5rem, 25px);
}
.c-campaign-banner__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.8%;
}
.c-campaign-banner__item {
  width: 50%;
}
.c-campaign-banner__item--a .c-campaign-banner__item-txt {
  margin-top: -8px;
  padding: 0 min(3.4rem, 34px);
}
.c-campaign-banner__item--b .c-campaign-banner__item-txt {
  margin-top: -5px;
  padding: 0 min(1.4rem, 14px);
}
.c-campaign-banner__item-txt {
  color: #000000;
  font-weight: 500;
  font-size: min(1.2rem, 12px);
  line-height: 1.4;
}
.c-campaign-banner__notes {
  padding: min(1.8rem, 18px) min(2.6rem, 26px);
  border: 1px solid #FF0600;
  color: #FF0600;
  font-size: min(1.2rem, 12px);
  line-height: 1.65;
}

/********************************************************
ボタン
*********************************************************/
.c-btn-block {
  width: min(40rem, 400px);
}
.c-btn-block__catch {
  width: 90%;
  margin: 0 auto;
}

/********************************************************
メインタイトル
*********************************************************/
.c-main-ttl {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: min(2.5rem, 25px);
  background: url(../images/home/line_01.png) center bottom no-repeat;
  background-size: contain;
  color: #FC46AC;
  font-size: min(3.6rem, 36px);
  line-height: 1.5;
  text-align: center;
}

/********************************************************
商品（ラインナップ）
*********************************************************/
.c-intro-lineup-logo {
  width: min(25rem, 250px);
}
.c-intro-lineup-name, .c-intro-lineup-txt {
  text-align: center;
}
.c-intro-lineup-name {
  color: #FC46AC;
  font-size: min(3rem, 30px);
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.c-intro-lineup-txt {
  font-size: min(2.6rem, 26px);
  line-height: 1.5;
}
.c-intro-lineup-btn {
  width: min(35.3rem, 353px);
  margin: 0 auto;
}

/********************************************************
lineupボックス
*********************************************************/
.c-lineup-card {
  border: 1px solid #fff;
  border-radius: 17px;
}
.c-lineup-card__inner {
  padding: min(4rem, 40px);
}
.c-lineup-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: min(2.4rem, 24px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.7em 0 0.5em;
  gap: 0.3em;
  border-bottom: 1px solid #fff;
}
.c-lineup-card__head .en {
  font-size: min(3.1rem, 31px);
}
.c-lineup-card__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: min(4rem, 40px);
}
.c-lineup-card__logo {
  width: min(23rem, 230px);
  text-align: center;
}
.c-lineup-card__logo img {
  width: min(16rem, 160px);
  margin: 0 auto;
}
.c-lineup-card__logo-txt {
  margin-bottom: min(2rem, 20px);
  color: #FC46AC;
  font-weight: 700;
  font-size: min(1.8rem, 18px);
  line-height: 1.3;
  letter-spacing: -0.06em;
  text-align: center;
}
.c-lineup-card__caption {
  width: 70%;
  margin: 0 auto min(2.1rem, 21px);
  text-align: center;
}
.c-lineup-card__caption-main, .c-lineup-card__caption-sub {
  display: block;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.c-lineup-card__caption-main {
  padding-top: min(0.6rem, 6px);
  color: #FC46AC;
  font-size: min(2.4rem, 24px);
}
.c-lineup-card__caption-sub {
  padding-bottom: min(0.8rem, 8px);
  border-bottom: 1px solid #fff;
  font-size: min(1.6rem, 16px);
}
.c-lineup-card__img {
  width: 97%;
  margin: 0 auto;
}
.c-lineup-card__ttl, .c-lineup-card__txt {
  color: #fff;
  text-align: center;
}
.c-lineup-card__ttl {
  font-size: min(3rem, 30px);
  line-height: 1.5;
}
.c-lineup-card__txt {
  margin: min(2.5rem, 25px) 0;
  font-size: min(1.8rem, 18px);
  line-height: 1.8;
}

/********************************************************
specボックス
*********************************************************/
.c-spec-card {
  padding: min(5rem, 50px);
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
}
.c-spec-card-ttl {
  margin-bottom: min(3rem, 30px);
  padding: 0.4em 0;
  border: 1px solid #fff;
  border-radius: 3em;
  font-size: min(2.2rem, 22px);
  line-height: 1.5;
  text-align: center;
}
.c-spec-card-list {
  display: inline-block;
  text-align: left;
}
.c-spec-card-item {
  position: relative;
  padding-left: 1em;
  font-size: min(2.2rem, 22px);
  line-height: 1.8;
  list-style: none;
}
.c-spec-card-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

/********************************************************
シリーズ
*********************************************************/
.c-series-name {
  color: #FC46AC;
  font-size: min(3rem, 30px);
  line-height: 1.3;
  letter-spacing: -0.06em;
  text-align: center;
}
.c-series-catch {
  font-size: min(2.6rem, 26px);
  line-height: 1.5;
  text-align: center;
}
.c-series-txt {
  font-size: min(1.8rem, 18px);
  line-height: 1.8;
}
.c-series-notes {
  width: min(45.5rem, 455px);
  margin-right: auto;
  margin-left: auto;
  font-size: min(1.4rem, 14px);
  line-height: 1.8;
}
.c-series-logo img {
  width: min(25rem, 250px);
  margin-right: auto;
  margin-left: auto;
}
.c-series-video iframe {
  width: min(70rem, 700px);
  height: min(39rem, 390px);
}

/********************************************************
セクション
*********************************************************/
.c-section-ttl {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding: 0.4em 0;
  background-color: #fff;
  color: #000000;
  font-size: min(2.6rem, 26px);
  line-height: 1.5;
  text-align: center;
}
.c-section-ttl--gradation {
  background: -webkit-gradient(linear, left top, right top, color-stop(9%, rgb(209, 43, 136)), color-stop(50%, rgb(113, 59, 147)), color-stop(92%, rgb(100, 84, 161)));
  background: linear-gradient(90deg, rgb(209, 43, 136) 9%, rgb(113, 59, 147) 50%, rgb(100, 84, 161) 92%);
  color: #fff;
}
.c-section-attention-ttl {
  max-width: 1150px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 min(2.5rem, 25px);
}
.c-section-attention-ttl__inner {
  padding: min(3rem, 30px) 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(9%, rgb(209, 43, 136)), color-stop(50%, rgb(113, 59, 147)), color-stop(92%, rgb(100, 84, 161)));
  background-image: linear-gradient(90deg, rgb(209, 43, 136) 9%, rgb(113, 59, 147) 50%, rgb(100, 84, 161) 92%);
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-section-attention-ttl__sub, .c-section-attention-ttl__main {
  display: block;
  letter-spacing: 0.05em;
}
.c-section-attention-ttl__sub {
  margin-bottom: min(0.5rem, 5px);
  font-size: min(2rem, 20px);
}
.c-section-attention-ttl__main {
  font-size: min(3rem, 30px);
}
.c-section__caption {
  width: min(45.4rem, 454px);
}
.c-section-catch {
  color: #fff;
  font-size: min(2.6rem, 26px);
  line-height: 1.5;
  text-align: center;
}
.c-section-catch + .c-sec-txt {
  margin-top: min(3rem, 30px);
}
.c-section-txt {
  font-weight: 500;
  font-size: min(1.8rem, 18px);
  line-height: 1.8;
}
.c-section-notes {
  width: min(44.5rem, 445px);
  margin-right: auto;
  margin-left: auto;
  font-size: min(1.4rem, 14px);
  line-height: 1.8;
}
.c-section__notes-block {
  padding: min(3rem, 30px) 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: min(1.4rem, 14px);
  line-height: 1.8;
}
.c-section-video iframe {
  width: min(70rem, 700px);
  height: min(39rem, 390px);
}
.c-section-img--w500 {
  width: min(50rem, 500px);
}
.c-section-img--w450 {
  width: min(45rem, 450px);
}

/********************************************************
トップページ
*********************************************************/
.p-home {
  /* --- search --- */
  /* --- intro --- */
}
.p-home__products-ttl {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
  padding: 0.27em 0;
  border-radius: 3em;
  background-color: #fff;
  color: #000000;
  font-size: min(2.6rem, 26px);
  text-align: center;
}
.p-home__products-logo {
  width: 38%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}
.p-home__guidelines {
  /* --- 共通タイトル --- */
  /* --- method --- */
  /* --- terms --- */
  /* --- contact --- */
}
.p-home__guidelines-head {
  text-align: center;
}
.p-home__guidelines-inner {
  display: inline-block;
  text-align: left;
}
.p-home__guidelines-lead {
  font-size: min(2rem, 20px);
  line-height: 1.7;
}
.p-home__guidelines-note {
  margin-top: 5px;
  font-size: min(1.6rem, 16px);
}
.p-home__guidelines-contents {
  padding: min(5rem, 50px);
  background-color: #fff;
  color: #000000;
}
.p-home__guidelines-ttl {
  padding: 0.2em 0 0.24em;
  border-radius: 3em;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(9%, rgb(209, 43, 136)), color-stop(50%, rgb(113, 59, 147)), color-stop(92%, rgb(100, 84, 161)));
  background-image: linear-gradient(90deg, rgb(209, 43, 136) 9%, rgb(113, 59, 147) 50%, rgb(100, 84, 161) 92%);
  color: #fff;
  font-size: min(2.4rem, 24px);
  letter-spacing: 0.05em;
  text-align: center;
}
.p-home__guidelines-btn {
  width: min(39.2rem, 392px);
}
.p-home__guidelines-method-txt {
  font-size: min(1.4rem, 14px);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-home__guidelines-method-wrap {
  max-width: 596px;
  margin-right: auto;
  margin-left: auto;
}
.p-home__guidelines-method-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2rem, 20px);
}
.p-home__guidelines-method-info-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(11.8rem, 118px);
  height: min(7.4rem, 74px);
  border-radius: 11px;
  background-color: #000000;
  color: #fff;
  font-size: min(1.9rem, 19px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 0.08em;
  text-align: center;
}
.p-home__guidelines-method-info-data {
  padding-top: 0.3em;
}
.p-home__guidelines-method-info-main {
  display: block;
  font-size: min(2.7rem, 27px);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.p-home__guidelines-method-info-sub {
  padding-top: 0.3em;
  font-size: min(2rem, 20px);
  letter-spacing: 0.05em;
}
.p-home__guidelines-terms-ttl {
  margin-bottom: min(1.7rem, 17px);
  font-size: min(1.8rem, 18px);
  letter-spacing: 0.05em;
}
.p-home__guidelines-terms-txt {
  font-size: min(1.4rem, 14px);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-home__guidelines-terms-more {
  margin-top: min(3rem, 30px);
}
.p-home__guidelines-terms-more.show p {
  visibility: hidden;
  opacity: 0;
}
.p-home__guidelines-terms-more p {
  margin-bottom: min(2rem, 20px);
  color: #FF0600;
  font-weight: 500;
  font-size: min(1.2rem, 12px);
  letter-spacing: 0.05em;
  text-align: center;
}
.p-home__guidelines-terms-more button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(19.4rem, 194px);
  height: min(3.2rem, 32px);
  font-weight: 500;
  font-size: min(1.4rem, 14px);
  letter-spacing: 0.05em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 3em;
  background-color: #D9D9D9;
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0 auto;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-home__guidelines-terms-more button:hover {
  opacity: 0.8;
}
.p-home__guidelines-contact {
  color: #fff;
  line-height: 1.12;
}
.p-home__guidelines-contact-ttl {
  margin-bottom: min(2rem, 20px);
  padding: min(1.4rem, 14px);
  border: 1px solid #fff;
  border-radius: 3em;
  font-size: min(2.4rem, 24px);
  text-align: center;
}
.p-home__guidelines-contact-name, .p-home__guidelines-contact-mail {
  font-size: min(2rem, 20px);
  letter-spacing: 0.05em;
}
.p-home__guidelines-contact-name {
  margin-bottom: min(0.5rem, 5px);
}
.p-home__guidelines-contact-mail {
  line-height: 1.12;
}
.p-home__guidelines-contact-txt {
  margin-top: min(2.2rem, 22px);
  padding-top: min(2.2rem, 22px);
  border-top: 2px solid #fff;
  font-size: min(16rem, 16px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.p-home__search {
  max-width: 1250px;
  margin: 0 auto;
  padding-right: min(2.5rem, 25px);
  padding-left: min(2.5rem, 25px);
}
.p-home__search-locator #storelocatorwidget #storelocator-nearby,
.p-home__search-locator #storelocator-mapswitch .storelocator-btn-small.active,
.p-home__search-locator .storelocator-btn-primary,
.p-home__search-locator #storelocator-mapswitch .storelocator-btn-small.active {
  border: 1px solid #800148 !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F3349F), to(#C10771)) !important;
  background-image: linear-gradient(180deg, #F3349F, #C10771) !important;
  background-color: #C10771 !important;
  color: #fff !important;
}
.p-home__search-locator #storelocatorwidget #storelocator-nearby:hover,
.p-home__search-locator .storelocator-btn-primary:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F3349F), to(#C10771)) !important;
  background-image: linear-gradient(180deg, #F3349F, #C10771) !important;
  background-color: #C10771 !important;
  color: #fff !important;
}
.p-home__intro-ttl {
  padding: 0.55em 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(9%, rgb(209, 43, 136)), color-stop(50%, rgb(113, 59, 147)), color-stop(92%, rgb(100, 84, 161)));
  background-image: linear-gradient(90deg, rgb(209, 43, 136) 9%, rgb(113, 59, 147) 50%, rgb(100, 84, 161) 92%);
  color: #fff;
  font-size: min(3rem, 30px);
  letter-spacing: 0.05em;
  text-align: center;
}
.p-home__intro-logo img {
  width: min(30rem, 300px);
  margin-right: auto;
  margin-left: auto;
}
.p-home__intro-lead {
  font-size: min(3rem, 30px);
  line-height: 1.3;
  text-align: center;
}

/********************************************************
共通コンポーネント
*********************************************************/
.is-sp {
  display: none !important;
}
/* overflow */
.of-auto {
  overflow: auto;
}
.of-hidden {
  overflow: hidden;
}

/* hover */
.hover-opacity {
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.hover-opacity:hover {
  opacity: 0.7;
}

/* font-weight */
.fw-normal {
  font-weight: normal !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: bold !important;
}
.fw-black {
  font-weight: 900 !important;
}

/* font-size */
.fs-sm {
  font-size: 1.4rem !important;
}
.fs-md {
  font-size: 1.6rem !important;
}
.fs-lg {
  font-size: 1.8rem !important;
}
.fs-xl {
  font-size: 2rem !important;
}
.fs-xxl {
  font-size: 2.2rem !important;
}
/* margin */
.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}
.mt-5 {
  margin-top: min(0.5rem, 5px) !important;
}

.mb-5 {
  margin-bottom: min(0.5rem, 5px) !important;
}

.ml-5 {
  margin-left: min(0.5rem, 5px) !important;
}

.mr-5 {
  margin-right: min(0.5rem, 5px) !important;
}
.mt-10 {
  margin-top: min(1rem, 10px) !important;
}

.mb-10 {
  margin-bottom: min(1rem, 10px) !important;
}

.ml-10 {
  margin-left: min(1rem, 10px) !important;
}

.mr-10 {
  margin-right: min(1rem, 10px) !important;
}
.mt-15 {
  margin-top: min(1.5rem, 15px) !important;
}

.mb-15 {
  margin-bottom: min(1.5rem, 15px) !important;
}

.ml-15 {
  margin-left: min(1.5rem, 15px) !important;
}

.mr-15 {
  margin-right: min(1.5rem, 15px) !important;
}
.mt-20 {
  margin-top: min(2rem, 20px) !important;
}

.mb-20 {
  margin-bottom: min(2rem, 20px) !important;
}

.ml-20 {
  margin-left: min(2rem, 20px) !important;
}

.mr-20 {
  margin-right: min(2rem, 20px) !important;
}
.mt-25 {
  margin-top: min(2.5rem, 25px) !important;
}

.mb-25 {
  margin-bottom: min(2.5rem, 25px) !important;
}

.ml-25 {
  margin-left: min(2.5rem, 25px) !important;
}

.mr-25 {
  margin-right: min(2.5rem, 25px) !important;
}
.mt-30 {
  margin-top: min(3rem, 30px) !important;
}

.mb-30 {
  margin-bottom: min(3rem, 30px) !important;
}

.ml-30 {
  margin-left: min(3rem, 30px) !important;
}

.mr-30 {
  margin-right: min(3rem, 30px) !important;
}
.mt-35 {
  margin-top: min(3.5rem, 35px) !important;
}

.mb-35 {
  margin-bottom: min(3.5rem, 35px) !important;
}

.ml-35 {
  margin-left: min(3.5rem, 35px) !important;
}

.mr-35 {
  margin-right: min(3.5rem, 35px) !important;
}
.mt-40 {
  margin-top: min(4rem, 40px) !important;
}

.mb-40 {
  margin-bottom: min(4rem, 40px) !important;
}

.ml-40 {
  margin-left: min(4rem, 40px) !important;
}

.mr-40 {
  margin-right: min(4rem, 40px) !important;
}
.mt-45 {
  margin-top: min(4.5rem, 45px) !important;
}

.mb-45 {
  margin-bottom: min(4.5rem, 45px) !important;
}

.ml-45 {
  margin-left: min(4.5rem, 45px) !important;
}

.mr-45 {
  margin-right: min(4.5rem, 45px) !important;
}
.mt-50 {
  margin-top: min(5rem, 50px) !important;
}

.mb-50 {
  margin-bottom: min(5rem, 50px) !important;
}

.ml-50 {
  margin-left: min(5rem, 50px) !important;
}

.mr-50 {
  margin-right: min(5rem, 50px) !important;
}
.mt-55 {
  margin-top: min(5.5rem, 55px) !important;
}

.mb-55 {
  margin-bottom: min(5.5rem, 55px) !important;
}

.ml-55 {
  margin-left: min(5.5rem, 55px) !important;
}

.mr-55 {
  margin-right: min(5.5rem, 55px) !important;
}
.mt-60 {
  margin-top: min(6rem, 60px) !important;
}

.mb-60 {
  margin-bottom: min(6rem, 60px) !important;
}

.ml-60 {
  margin-left: min(6rem, 60px) !important;
}

.mr-60 {
  margin-right: min(6rem, 60px) !important;
}
.mt-65 {
  margin-top: min(6.5rem, 65px) !important;
}

.mb-65 {
  margin-bottom: min(6.5rem, 65px) !important;
}

.ml-65 {
  margin-left: min(6.5rem, 65px) !important;
}

.mr-65 {
  margin-right: min(6.5rem, 65px) !important;
}
.mt-70 {
  margin-top: min(7rem, 70px) !important;
}

.mb-70 {
  margin-bottom: min(7rem, 70px) !important;
}

.ml-70 {
  margin-left: min(7rem, 70px) !important;
}

.mr-70 {
  margin-right: min(7rem, 70px) !important;
}
.mt-75 {
  margin-top: min(7.5rem, 75px) !important;
}

.mb-75 {
  margin-bottom: min(7.5rem, 75px) !important;
}

.ml-75 {
  margin-left: min(7.5rem, 75px) !important;
}

.mr-75 {
  margin-right: min(7.5rem, 75px) !important;
}
.mt-80 {
  margin-top: min(8rem, 80px) !important;
}

.mb-80 {
  margin-bottom: min(8rem, 80px) !important;
}

.ml-80 {
  margin-left: min(8rem, 80px) !important;
}

.mr-80 {
  margin-right: min(8rem, 80px) !important;
}
.mt-85 {
  margin-top: min(8.5rem, 85px) !important;
}

.mb-85 {
  margin-bottom: min(8.5rem, 85px) !important;
}

.ml-85 {
  margin-left: min(8.5rem, 85px) !important;
}

.mr-85 {
  margin-right: min(8.5rem, 85px) !important;
}
.mt-90 {
  margin-top: min(9rem, 90px) !important;
}

.mb-90 {
  margin-bottom: min(9rem, 90px) !important;
}

.ml-90 {
  margin-left: min(9rem, 90px) !important;
}

.mr-90 {
  margin-right: min(9rem, 90px) !important;
}
.mt-95 {
  margin-top: min(9.5rem, 95px) !important;
}

.mb-95 {
  margin-bottom: min(9.5rem, 95px) !important;
}

.ml-95 {
  margin-left: min(9.5rem, 95px) !important;
}

.mr-95 {
  margin-right: min(9.5rem, 95px) !important;
}
.mt-100 {
  margin-top: min(10rem, 100px) !important;
}

.mb-100 {
  margin-bottom: min(10rem, 100px) !important;
}

.ml-100 {
  margin-left: min(10rem, 100px) !important;
}

.mr-100 {
  margin-right: min(10rem, 100px) !important;
}
/* padding */
.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}
.pt-5 {
  padding-top: min(0.5rem, 5px) !important;
}

.pb-5 {
  padding-bottom: min(0.5rem, 5px) !important;
}

.pl-5 {
  padding-left: min(0.5rem, 5px) !important;
}

.pr-5 {
  padding-right: min(0.5rem, 5px) !important;
}
.pt-10 {
  padding-top: min(1rem, 10px) !important;
}

.pb-10 {
  padding-bottom: min(1rem, 10px) !important;
}

.pl-10 {
  padding-left: min(1rem, 10px) !important;
}

.pr-10 {
  padding-right: min(1rem, 10px) !important;
}
.pt-15 {
  padding-top: min(1.5rem, 15px) !important;
}

.pb-15 {
  padding-bottom: min(1.5rem, 15px) !important;
}

.pl-15 {
  padding-left: min(1.5rem, 15px) !important;
}

.pr-15 {
  padding-right: min(1.5rem, 15px) !important;
}
.pt-20 {
  padding-top: min(2rem, 20px) !important;
}

.pb-20 {
  padding-bottom: min(2rem, 20px) !important;
}

.pl-20 {
  padding-left: min(2rem, 20px) !important;
}

.pr-20 {
  padding-right: min(2rem, 20px) !important;
}
.pt-25 {
  padding-top: min(2.5rem, 25px) !important;
}

.pb-25 {
  padding-bottom: min(2.5rem, 25px) !important;
}

.pl-25 {
  padding-left: min(2.5rem, 25px) !important;
}

.pr-25 {
  padding-right: min(2.5rem, 25px) !important;
}
.pt-30 {
  padding-top: min(3rem, 30px) !important;
}

.pb-30 {
  padding-bottom: min(3rem, 30px) !important;
}

.pl-30 {
  padding-left: min(3rem, 30px) !important;
}

.pr-30 {
  padding-right: min(3rem, 30px) !important;
}
.pt-35 {
  padding-top: min(3.5rem, 35px) !important;
}

.pb-35 {
  padding-bottom: min(3.5rem, 35px) !important;
}

.pl-35 {
  padding-left: min(3.5rem, 35px) !important;
}

.pr-35 {
  padding-right: min(3.5rem, 35px) !important;
}
.pt-40 {
  padding-top: min(4rem, 40px) !important;
}

.pb-40 {
  padding-bottom: min(4rem, 40px) !important;
}

.pl-40 {
  padding-left: min(4rem, 40px) !important;
}

.pr-40 {
  padding-right: min(4rem, 40px) !important;
}
.pt-45 {
  padding-top: min(4.5rem, 45px) !important;
}

.pb-45 {
  padding-bottom: min(4.5rem, 45px) !important;
}

.pl-45 {
  padding-left: min(4.5rem, 45px) !important;
}

.pr-45 {
  padding-right: min(4.5rem, 45px) !important;
}
.pt-50 {
  padding-top: min(5rem, 50px) !important;
}

.pb-50 {
  padding-bottom: min(5rem, 50px) !important;
}

.pl-50 {
  padding-left: min(5rem, 50px) !important;
}

.pr-50 {
  padding-right: min(5rem, 50px) !important;
}
.pt-55 {
  padding-top: min(5.5rem, 55px) !important;
}

.pb-55 {
  padding-bottom: min(5.5rem, 55px) !important;
}

.pl-55 {
  padding-left: min(5.5rem, 55px) !important;
}

.pr-55 {
  padding-right: min(5.5rem, 55px) !important;
}
.pt-60 {
  padding-top: min(6rem, 60px) !important;
}

.pb-60 {
  padding-bottom: min(6rem, 60px) !important;
}

.pl-60 {
  padding-left: min(6rem, 60px) !important;
}

.pr-60 {
  padding-right: min(6rem, 60px) !important;
}
.pt-65 {
  padding-top: min(6.5rem, 65px) !important;
}

.pb-65 {
  padding-bottom: min(6.5rem, 65px) !important;
}

.pl-65 {
  padding-left: min(6.5rem, 65px) !important;
}

.pr-65 {
  padding-right: min(6.5rem, 65px) !important;
}
.pt-70 {
  padding-top: min(7rem, 70px) !important;
}

.pb-70 {
  padding-bottom: min(7rem, 70px) !important;
}

.pl-70 {
  padding-left: min(7rem, 70px) !important;
}

.pr-70 {
  padding-right: min(7rem, 70px) !important;
}
.pt-75 {
  padding-top: min(7.5rem, 75px) !important;
}

.pb-75 {
  padding-bottom: min(7.5rem, 75px) !important;
}

.pl-75 {
  padding-left: min(7.5rem, 75px) !important;
}

.pr-75 {
  padding-right: min(7.5rem, 75px) !important;
}
.pt-80 {
  padding-top: min(8rem, 80px) !important;
}

.pb-80 {
  padding-bottom: min(8rem, 80px) !important;
}

.pl-80 {
  padding-left: min(8rem, 80px) !important;
}

.pr-80 {
  padding-right: min(8rem, 80px) !important;
}
.pt-85 {
  padding-top: min(8.5rem, 85px) !important;
}

.pb-85 {
  padding-bottom: min(8.5rem, 85px) !important;
}

.pl-85 {
  padding-left: min(8.5rem, 85px) !important;
}

.pr-85 {
  padding-right: min(8.5rem, 85px) !important;
}
.pt-90 {
  padding-top: min(9rem, 90px) !important;
}

.pb-90 {
  padding-bottom: min(9rem, 90px) !important;
}

.pl-90 {
  padding-left: min(9rem, 90px) !important;
}

.pr-90 {
  padding-right: min(9rem, 90px) !important;
}
.pt-95 {
  padding-top: min(9.5rem, 95px) !important;
}

.pb-95 {
  padding-bottom: min(9.5rem, 95px) !important;
}

.pl-95 {
  padding-left: min(9.5rem, 95px) !important;
}

.pr-95 {
  padding-right: min(9.5rem, 95px) !important;
}
.pt-100 {
  padding-top: min(10rem, 100px) !important;
}

.pb-100 {
  padding-bottom: min(10rem, 100px) !important;
}

.pl-100 {
  padding-left: min(10rem, 100px) !important;
}

.pr-100 {
  padding-right: min(10rem, 100px) !important;
}
/* text-align */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
/* white-space */
.ws-nowrap {
  white-space: nowrap !important;
}

/* width(px) 5-400 */
.w-5 {
  width: 5px !important;
}
.w-10 {
  width: 10px !important;
}
.w-15 {
  width: 15px !important;
}
.w-20 {
  width: 20px !important;
}
.w-25 {
  width: 25px !important;
}
.w-30 {
  width: 30px !important;
}
.w-35 {
  width: 35px !important;
}
.w-40 {
  width: 40px !important;
}
.w-45 {
  width: 45px !important;
}
.w-50 {
  width: 50px !important;
}
.w-55 {
  width: 55px !important;
}
.w-60 {
  width: 60px !important;
}
.w-65 {
  width: 65px !important;
}
.w-70 {
  width: 70px !important;
}
.w-75 {
  width: 75px !important;
}
.w-80 {
  width: 80px !important;
}
.w-85 {
  width: 85px !important;
}
.w-90 {
  width: 90px !important;
}
.w-95 {
  width: 95px !important;
}
.w-100 {
  width: 100px !important;
}
.w-105 {
  width: 105px !important;
}
.w-110 {
  width: 110px !important;
}
.w-115 {
  width: 115px !important;
}
.w-120 {
  width: 120px !important;
}
.w-125 {
  width: 125px !important;
}
.w-130 {
  width: 130px !important;
}
.w-135 {
  width: 135px !important;
}
.w-140 {
  width: 140px !important;
}
.w-145 {
  width: 145px !important;
}
.w-150 {
  width: 150px !important;
}
.w-155 {
  width: 155px !important;
}
.w-160 {
  width: 160px !important;
}
.w-165 {
  width: 165px !important;
}
.w-170 {
  width: 170px !important;
}
.w-175 {
  width: 175px !important;
}
.w-180 {
  width: 180px !important;
}
.w-185 {
  width: 185px !important;
}
.w-190 {
  width: 190px !important;
}
.w-195 {
  width: 195px !important;
}
.w-200 {
  width: 200px !important;
}
.w-205 {
  width: 205px !important;
}
.w-210 {
  width: 210px !important;
}
.w-215 {
  width: 215px !important;
}
.w-220 {
  width: 220px !important;
}
.w-225 {
  width: 225px !important;
}
.w-230 {
  width: 230px !important;
}
.w-235 {
  width: 235px !important;
}
.w-240 {
  width: 240px !important;
}
.w-245 {
  width: 245px !important;
}
.w-250 {
  width: 250px !important;
}
.w-255 {
  width: 255px !important;
}
.w-260 {
  width: 260px !important;
}
.w-265 {
  width: 265px !important;
}
.w-270 {
  width: 270px !important;
}
.w-275 {
  width: 275px !important;
}
.w-280 {
  width: 280px !important;
}
.w-285 {
  width: 285px !important;
}
.w-290 {
  width: 290px !important;
}
.w-295 {
  width: 295px !important;
}
.w-300 {
  width: 300px !important;
}
.w-305 {
  width: 305px !important;
}
.w-310 {
  width: 310px !important;
}
.w-315 {
  width: 315px !important;
}
.w-320 {
  width: 320px !important;
}
.w-325 {
  width: 325px !important;
}
.w-330 {
  width: 330px !important;
}
.w-335 {
  width: 335px !important;
}
.w-340 {
  width: 340px !important;
}
.w-345 {
  width: 345px !important;
}
.w-350 {
  width: 350px !important;
}
.w-355 {
  width: 355px !important;
}
.w-360 {
  width: 360px !important;
}
.w-365 {
  width: 365px !important;
}
.w-370 {
  width: 370px !important;
}
.w-375 {
  width: 375px !important;
}
.w-380 {
  width: 380px !important;
}
.w-385 {
  width: 385px !important;
}
.w-390 {
  width: 390px !important;
}
.w-395 {
  width: 395px !important;
}
.w-400 {
  width: 400px !important;
}
/* width(%) 5-100 */
.w-5per {
  width: 5% !important;
}
.w-10per {
  width: 10% !important;
}
.w-15per {
  width: 15% !important;
}
.w-20per {
  width: 20% !important;
}
.w-25per {
  width: 25% !important;
}
.w-30per {
  width: 30% !important;
}
.w-35per {
  width: 35% !important;
}
.w-40per {
  width: 40% !important;
}
.w-45per {
  width: 45% !important;
}
.w-50per {
  width: 50% !important;
}
.w-55per {
  width: 55% !important;
}
.w-60per {
  width: 60% !important;
}
.w-65per {
  width: 65% !important;
}
.w-70per {
  width: 70% !important;
}
.w-75per {
  width: 75% !important;
}
.w-80per {
  width: 80% !important;
}
.w-85per {
  width: 85% !important;
}
.w-90per {
  width: 90% !important;
}
.w-95per {
  width: 95% !important;
}
.w-100per {
  width: 100% !important;
}
/* width(em) 5-20 */
.w-1em {
  width: 1em !important;
}
.w-2em {
  width: 2em !important;
}
.w-3em {
  width: 3em !important;
}
.w-4em {
  width: 4em !important;
}
.w-5em {
  width: 5em !important;
}
.w-6em {
  width: 6em !important;
}
.w-7em {
  width: 7em !important;
}
.w-8em {
  width: 8em !important;
}
.w-9em {
  width: 9em !important;
}
.w-10em {
  width: 10em !important;
}
.w-11em {
  width: 11em !important;
}
.w-12em {
  width: 12em !important;
}
.w-13em {
  width: 13em !important;
}
.w-14em {
  width: 14em !important;
}
.w-15em {
  width: 15em !important;
}
.w-16em {
  width: 16em !important;
}
.w-17em {
  width: 17em !important;
}
.w-18em {
  width: 18em !important;
}
.w-19em {
  width: 19em !important;
}
.w-20em {
  width: 20em !important;
}
/* width auto*/
.w-auto {
  width: auto !important;
}
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6041666667vw;
  }
  .p-header__logo {
    top: 2.3rem;
    left: 2.5rem;
  }
  .p-header__logo img {
    width: 16rem;
  }
  .c-pagetop-btn {
    right: 1.2rem;
  }
  .c-pagetop-btn::after {
    width: 1rem;
    height: 1rem;
    border-top: 0.3rem solid #000;
    border-right: 0.3rem solid #000;
  }
  .c-pagetop-btn button {
    width: 4rem;
    height: 4rem;
  }
  .c-floating-nav {
    padding: 1rem 2.5rem;
  }
  .c-floating-nav__list {
    gap: 1.5rem;
  }
  .p-footer {
    padding: 0 1.6rem;
  }
  .p-footer__inner {
    padding: 5.8rem 0;
  }
  .p-footer__logo {
    width: 14rem;
  }
  .l-wrapper {
    padding: 0 3rem;
  }
  .l-wrapper--guidelines {
    padding: 0 1.5rem;
  }
  .c-campaign-banner--top .c-campaign-banner__head {
    padding: 0;
  }
  .c-campaign-banner__inner {
    padding: 0;
  }
  .c-campaign-banner__head {
    padding: 0;
  }
  .c-campaign-banner__period {
    padding: 1.2rem 1.5rem;
  }
  .c-campaign-banner__foot {
    padding: 4rem 0;
  }
  .c-campaign-banner__foot-inner {
    padding: 0 3rem;
  }
  .c-campaign-banner__unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
  }
  .c-campaign-banner__item--a .c-campaign-banner__item-txt {
    margin-top: -5px;
    padding: 0 1rem;
  }
  .c-campaign-banner__item--b .c-campaign-banner__item-txt {
    margin-top: -5px;
    padding: 0 1rem;
  }
  .c-campaign-banner__item {
    width: 100%;
  }
  .c-campaign-banner__item-txt {
    font-size: 1.2rem;
  }
  .c-campaign-banner__notes {
    padding: 1.7rem 2.6rem;
  }
  .c-btn-block {
    width: 24.5rem;
  }
  .c-main-ttl {
    max-width: none;
    padding-bottom: 1.2rem;
    font-size: 2rem;
    line-height: 1.35;
  }
  .c-intro-lineup-logo {
    width: 12rem;
  }
  .c-intro-lineup-name {
    font-size: 2rem;
  }
  .c-intro-lineup-txt {
    font-size: 1.6rem;
  }
  .c-intro-lineup-btn {
    width: 17rem;
  }
  .c-lineup-card {
    border-radius: 10px;
  }
  .c-lineup-card__inner {
    padding: 2rem;
  }
  .c-lineup-card__head {
    font-size: 1.4rem;
  }
  .c-lineup-card__head .en {
    font-size: 1.8rem;
  }
  .c-lineup-card__unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3.8rem;
    gap: 3rem;
  }
  .c-lineup-card__logo {
    width: 28rem;
  }
  .c-lineup-card__logo img {
    width: 12rem;
  }
  .c-lineup-card__logo-txt {
    margin-bottom: 1.3rem;
    font-size: 2rem;
  }
  .c-lineup-card__caption {
    width: 100%;
    margin-bottom: 1.7rem;
  }
  .c-lineup-card__caption-main {
    padding-top: 0.5rem;
    font-size: 1.6rem;
  }
  .c-lineup-card__caption-sub {
    padding-bottom: 0.4rem;
    font-size: 1.3rem;
  }
  .c-lineup-card__img {
    width: 100%;
  }
  .c-lineup-card__ttl {
    font-size: 1.6rem;
  }
  .c-lineup-card__txt {
    margin: 1.2rem 0;
    font-size: 1.4rem;
    line-height: 1.45;
  }
  .c-spec-card {
    padding: 2.5rem 2.7rem;
    border-radius: 10px;
  }
  .c-spec-card-ttl {
    margin-bottom: 1.1rem;
    padding: 0.3em 0 0.2em;
    font-size: 1.4rem;
  }
  .c-spec-card-item {
    font-size: 1.4rem;
  }
  .c-series-name {
    font-size: 2rem;
  }
  .c-series-catch {
    font-size: 1.6rem;
  }
  .c-series-txt {
    font-size: 1.3rem;
  }
  .c-series-notes {
    width: 24rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .c-series-notes br {
    display: none;
  }
  .c-series-logo img {
    width: 12rem;
  }
  .c-series-video iframe {
    width: 32.4rem;
    height: 18.4rem;
  }
  .c-section-ttl {
    width: 32.4rem;
    font-size: 1.6rem;
  }
  .c-section-attention-ttl {
    max-width: none;
    padding: 0 3rem;
  }
  .c-section-attention-ttl__inner {
    padding: 1.3rem 0;
  }
  .c-section-attention-ttl__sub, .c-section-attention-ttl__main {
    line-height: 1.5;
  }
  .c-section-attention-ttl__sub {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .c-section-attention-ttl__main {
    font-size: 1.8rem;
  }
  .c-section__caption {
    width: 30.4rem;
  }
  .c-section-catch {
    font-size: 1.6rem;
  }
  .c-section-catch + .c-sec-txt {
    margin-top: 1.5rem;
  }
  .c-section-txt {
    font-size: 1.3rem;
  }
  .c-section-notes {
    width: 24rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .c-section__notes-block {
    padding: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  .c-section-video iframe {
    width: 32.4rem;
    height: 18.4rem;
  }
  .c-section-img--w500 {
    width: 32.4rem;
  }
  .c-section-img--w450 {
    width: 23.8rem;
  }
  .p-home__products-ttl {
    max-width: none;
    font-size: 1.5rem;
  }
  .p-home__products-logo {
    width: 62%;
    max-width: none;
  }
  .p-home__guidelines-head {
    padding: 0 1.5rem;
  }
  .p-home__guidelines-lead {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .p-home__guidelines-note {
    margin-top: 0;
    font-size: 1rem;
  }
  .p-home__guidelines-contents {
    padding: 2rem 1.5rem;
  }
  .p-home__guidelines-ttl {
    padding: 0.1em;
    font-size: 1.4rem;
  }
  .p-home__guidelines-btn {
    width: 20rem;
  }
  .p-home__guidelines-method-txt {
    padding: 0 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .p-home__guidelines-method-wrap {
    max-width: none;
    padding: 0 1rem;
  }
  .p-home__guidelines-method-info {
    gap: 1rem;
  }
  .p-home__guidelines-method-info-ttl {
    width: 6rem;
    height: 3.8rem;
    border-radius: 6px;
    font-size: 1rem;
  }
  .p-home__guidelines-method-info-data {
    padding-top: 0.2em;
  }
  .p-home__guidelines-method-info-main {
    font-size: 1.4rem;
  }
  .p-home__guidelines-method-info-sub {
    padding-top: 0.2em;
    font-size: 1.2rem;
  }
  .p-home__guidelines-terms-box {
    padding: 0 1rem;
  }
  .p-home__guidelines-terms-ttl {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  .p-home__guidelines-terms-txt {
    font-size: 1.2rem;
    line-height: 1.42;
  }
  .p-home__guidelines-terms-more {
    margin-top: 1.5rem;
  }
  .p-home__guidelines-terms-more p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .p-home__guidelines-terms-more button {
    width: 18rem;
    height: 2.8rem;
    font-size: 1.1rem;
  }
  .p-home__guidelines-contact {
    padding: 0 1.5rem;
  }
  .p-home__guidelines-contact-ttl {
    margin-bottom: 1rem;
    padding: 0.7rem;
    font-size: 1.4rem;
  }
  .p-home__guidelines-contact-name, .p-home__guidelines-contact-mail {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  .p-home__guidelines-contact-name {
    margin-bottom: 0.3rem;
  }
  .p-home__guidelines-contact-txt {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-width: 1px;
    font-size: 0.9rem;
  }
  .p-home__search {
    padding-right: 2.2rem;
    padding-left: 2.2rem;
  }
  .p-home__intro-ttl {
    padding: 0.65em 0;
    font-size: 1.6rem;
  }
  .p-home__intro-logo img {
    width: 20rem;
  }
  .p-home__intro-lead {
    font-size: 2rem;
  }
  /********************************************************
  共通コンポーネント（sp）
  *********************************************************/
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block !important;
  }
  .sp-fs-sm {
    font-size: 1.2rem !important;
  }
  .sp-fs-md {
    font-size: 1.4rem !important;
  }
  .sp-fs-lg {
    font-size: 1.6rem !important;
  }
  .sp-fs-xl {
    font-size: 1.8rem !important;
  }
  .sp-fs-xxl {
    font-size: 2rem !important;
  }
  .sp-mt-0 {
    margin-top: 0 !important;
  }
  .sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .sp-ml-0 {
    margin-left: 0 !important;
  }
  .sp-mr-0 {
    margin-right: 0 !important;
  }
  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }
  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }
  .sp-ml-5 {
    margin-left: 0.5rem !important;
  }
  .sp-mr-5 {
    margin-right: 0.5rem !important;
  }
  .sp-mt-10 {
    margin-top: 1rem !important;
  }
  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }
  .sp-ml-10 {
    margin-left: 1rem !important;
  }
  .sp-mr-10 {
    margin-right: 1rem !important;
  }
  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }
  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }
  .sp-ml-15 {
    margin-left: 1.5rem !important;
  }
  .sp-mr-15 {
    margin-right: 1.5rem !important;
  }
  .sp-mt-20 {
    margin-top: 2rem !important;
  }
  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }
  .sp-ml-20 {
    margin-left: 2rem !important;
  }
  .sp-mr-20 {
    margin-right: 2rem !important;
  }
  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }
  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }
  .sp-ml-25 {
    margin-left: 2.5rem !important;
  }
  .sp-mr-25 {
    margin-right: 2.5rem !important;
  }
  .sp-mt-30 {
    margin-top: 3rem !important;
  }
  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }
  .sp-ml-30 {
    margin-left: 3rem !important;
  }
  .sp-mr-30 {
    margin-right: 3rem !important;
  }
  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }
  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }
  .sp-ml-35 {
    margin-left: 3.5rem !important;
  }
  .sp-mr-35 {
    margin-right: 3.5rem !important;
  }
  .sp-mt-40 {
    margin-top: 4rem !important;
  }
  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }
  .sp-ml-40 {
    margin-left: 4rem !important;
  }
  .sp-mr-40 {
    margin-right: 4rem !important;
  }
  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }
  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }
  .sp-ml-45 {
    margin-left: 4.5rem !important;
  }
  .sp-mr-45 {
    margin-right: 4.5rem !important;
  }
  .sp-mt-50 {
    margin-top: 5rem !important;
  }
  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }
  .sp-ml-50 {
    margin-left: 5rem !important;
  }
  .sp-mr-50 {
    margin-right: 5rem !important;
  }
  .sp-mt-55 {
    margin-top: 5.5rem !important;
  }
  .sp-mb-55 {
    margin-bottom: 5.5rem !important;
  }
  .sp-ml-55 {
    margin-left: 5.5rem !important;
  }
  .sp-mr-55 {
    margin-right: 5.5rem !important;
  }
  .sp-mt-60 {
    margin-top: 6rem !important;
  }
  .sp-mb-60 {
    margin-bottom: 6rem !important;
  }
  .sp-ml-60 {
    margin-left: 6rem !important;
  }
  .sp-mr-60 {
    margin-right: 6rem !important;
  }
  .sp-mt-65 {
    margin-top: 6.5rem !important;
  }
  .sp-mb-65 {
    margin-bottom: 6.5rem !important;
  }
  .sp-ml-65 {
    margin-left: 6.5rem !important;
  }
  .sp-mr-65 {
    margin-right: 6.5rem !important;
  }
  .sp-mt-70 {
    margin-top: 7rem !important;
  }
  .sp-mb-70 {
    margin-bottom: 7rem !important;
  }
  .sp-ml-70 {
    margin-left: 7rem !important;
  }
  .sp-mr-70 {
    margin-right: 7rem !important;
  }
  .sp-mt-75 {
    margin-top: 7.5rem !important;
  }
  .sp-mb-75 {
    margin-bottom: 7.5rem !important;
  }
  .sp-ml-75 {
    margin-left: 7.5rem !important;
  }
  .sp-mr-75 {
    margin-right: 7.5rem !important;
  }
  .sp-mt-80 {
    margin-top: 8rem !important;
  }
  .sp-mb-80 {
    margin-bottom: 8rem !important;
  }
  .sp-ml-80 {
    margin-left: 8rem !important;
  }
  .sp-mr-80 {
    margin-right: 8rem !important;
  }
  .sp-mt-85 {
    margin-top: 8.5rem !important;
  }
  .sp-mb-85 {
    margin-bottom: 8.5rem !important;
  }
  .sp-ml-85 {
    margin-left: 8.5rem !important;
  }
  .sp-mr-85 {
    margin-right: 8.5rem !important;
  }
  .sp-mt-90 {
    margin-top: 9rem !important;
  }
  .sp-mb-90 {
    margin-bottom: 9rem !important;
  }
  .sp-ml-90 {
    margin-left: 9rem !important;
  }
  .sp-mr-90 {
    margin-right: 9rem !important;
  }
  .sp-mt-95 {
    margin-top: 9.5rem !important;
  }
  .sp-mb-95 {
    margin-bottom: 9.5rem !important;
  }
  .sp-ml-95 {
    margin-left: 9.5rem !important;
  }
  .sp-mr-95 {
    margin-right: 9.5rem !important;
  }
  .sp-mt-100 {
    margin-top: 10rem !important;
  }
  .sp-mb-100 {
    margin-bottom: 10rem !important;
  }
  .sp-ml-100 {
    margin-left: 10rem !important;
  }
  .sp-mr-100 {
    margin-right: 10rem !important;
  }
  .sp-pt-0 {
    padding-top: 0 !important;
  }
  .sp-pb-0 {
    padding-bottom: 0 !important;
  }
  .sp-pl-0 {
    padding-left: 0 !important;
  }
  .sp-pr-0 {
    padding-right: 0 !important;
  }
  .sp-pt-5 {
    padding-top: 0.5rem !important;
  }
  .sp-pb-5 {
    padding-bottom: 0.5rem !important;
  }
  .sp-pl-5 {
    padding-left: 0.5rem !important;
  }
  .sp-pr-5 {
    padding-right: 0.5rem !important;
  }
  .sp-pt-10 {
    padding-top: 1rem !important;
  }
  .sp-pb-10 {
    padding-bottom: 1rem !important;
  }
  .sp-pl-10 {
    padding-left: 1rem !important;
  }
  .sp-pr-10 {
    padding-right: 1rem !important;
  }
  .sp-pt-15 {
    padding-top: 1.5rem !important;
  }
  .sp-pb-15 {
    padding-bottom: 1.5rem !important;
  }
  .sp-pl-15 {
    padding-left: 1.5rem !important;
  }
  .sp-pr-15 {
    padding-right: 1.5rem !important;
  }
  .sp-pt-20 {
    padding-top: 2rem !important;
  }
  .sp-pb-20 {
    padding-bottom: 2rem !important;
  }
  .sp-pl-20 {
    padding-left: 2rem !important;
  }
  .sp-pr-20 {
    padding-right: 2rem !important;
  }
  .sp-pt-25 {
    padding-top: 2.5rem !important;
  }
  .sp-pb-25 {
    padding-bottom: 2.5rem !important;
  }
  .sp-pl-25 {
    padding-left: 2.5rem !important;
  }
  .sp-pr-25 {
    padding-right: 2.5rem !important;
  }
  .sp-pt-30 {
    padding-top: 3rem !important;
  }
  .sp-pb-30 {
    padding-bottom: 3rem !important;
  }
  .sp-pl-30 {
    padding-left: 3rem !important;
  }
  .sp-pr-30 {
    padding-right: 3rem !important;
  }
  .sp-pt-35 {
    padding-top: 3.5rem !important;
  }
  .sp-pb-35 {
    padding-bottom: 3.5rem !important;
  }
  .sp-pl-35 {
    padding-left: 3.5rem !important;
  }
  .sp-pr-35 {
    padding-right: 3.5rem !important;
  }
  .sp-pt-40 {
    padding-top: 4rem !important;
  }
  .sp-pb-40 {
    padding-bottom: 4rem !important;
  }
  .sp-pl-40 {
    padding-left: 4rem !important;
  }
  .sp-pr-40 {
    padding-right: 4rem !important;
  }
  .sp-pt-45 {
    padding-top: 4.5rem !important;
  }
  .sp-pb-45 {
    padding-bottom: 4.5rem !important;
  }
  .sp-pl-45 {
    padding-left: 4.5rem !important;
  }
  .sp-pr-45 {
    padding-right: 4.5rem !important;
  }
  .sp-pt-50 {
    padding-top: 5rem !important;
  }
  .sp-pb-50 {
    padding-bottom: 5rem !important;
  }
  .sp-pl-50 {
    padding-left: 5rem !important;
  }
  .sp-pr-50 {
    padding-right: 5rem !important;
  }
  .sp-pt-55 {
    padding-top: 5.5rem !important;
  }
  .sp-pb-55 {
    padding-bottom: 5.5rem !important;
  }
  .sp-pl-55 {
    padding-left: 5.5rem !important;
  }
  .sp-pr-55 {
    padding-right: 5.5rem !important;
  }
  .sp-pt-60 {
    padding-top: 6rem !important;
  }
  .sp-pb-60 {
    padding-bottom: 6rem !important;
  }
  .sp-pl-60 {
    padding-left: 6rem !important;
  }
  .sp-pr-60 {
    padding-right: 6rem !important;
  }
  .sp-pt-65 {
    padding-top: 6.5rem !important;
  }
  .sp-pb-65 {
    padding-bottom: 6.5rem !important;
  }
  .sp-pl-65 {
    padding-left: 6.5rem !important;
  }
  .sp-pr-65 {
    padding-right: 6.5rem !important;
  }
  .sp-pt-70 {
    padding-top: 7rem !important;
  }
  .sp-pb-70 {
    padding-bottom: 7rem !important;
  }
  .sp-pl-70 {
    padding-left: 7rem !important;
  }
  .sp-pr-70 {
    padding-right: 7rem !important;
  }
  .sp-pt-75 {
    padding-top: 7.5rem !important;
  }
  .sp-pb-75 {
    padding-bottom: 7.5rem !important;
  }
  .sp-pl-75 {
    padding-left: 7.5rem !important;
  }
  .sp-pr-75 {
    padding-right: 7.5rem !important;
  }
  .sp-pt-80 {
    padding-top: 8rem !important;
  }
  .sp-pb-80 {
    padding-bottom: 8rem !important;
  }
  .sp-pl-80 {
    padding-left: 8rem !important;
  }
  .sp-pr-80 {
    padding-right: 8rem !important;
  }
  .sp-pt-85 {
    padding-top: 8.5rem !important;
  }
  .sp-pb-85 {
    padding-bottom: 8.5rem !important;
  }
  .sp-pl-85 {
    padding-left: 8.5rem !important;
  }
  .sp-pr-85 {
    padding-right: 8.5rem !important;
  }
  .sp-pt-90 {
    padding-top: 9rem !important;
  }
  .sp-pb-90 {
    padding-bottom: 9rem !important;
  }
  .sp-pl-90 {
    padding-left: 9rem !important;
  }
  .sp-pr-90 {
    padding-right: 9rem !important;
  }
  .sp-pt-95 {
    padding-top: 9.5rem !important;
  }
  .sp-pb-95 {
    padding-bottom: 9.5rem !important;
  }
  .sp-pl-95 {
    padding-left: 9.5rem !important;
  }
  .sp-pr-95 {
    padding-right: 9.5rem !important;
  }
  .sp-pt-100 {
    padding-top: 10rem !important;
  }
  .sp-pb-100 {
    padding-bottom: 10rem !important;
  }
  .sp-pl-100 {
    padding-left: 10rem !important;
  }
  .sp-pr-100 {
    padding-right: 10rem !important;
  }
  .sp-text-center {
    text-align: center !important;
  }
  .sp-text-left {
    text-align: left !important;
  }
  .sp-text-right {
    text-align: right !important;
  }
  .sp-w-5 {
    width: 5px !important;
  }
  .sp-w-10 {
    width: 10px !important;
  }
  .sp-w-15 {
    width: 15px !important;
  }
  .sp-w-20 {
    width: 20px !important;
  }
  .sp-w-25 {
    width: 25px !important;
  }
  .sp-w-30 {
    width: 30px !important;
  }
  .sp-w-35 {
    width: 35px !important;
  }
  .sp-w-40 {
    width: 40px !important;
  }
  .sp-w-45 {
    width: 45px !important;
  }
  .sp-w-50 {
    width: 50px !important;
  }
  .sp-w-55 {
    width: 55px !important;
  }
  .sp-w-60 {
    width: 60px !important;
  }
  .sp-w-65 {
    width: 65px !important;
  }
  .sp-w-70 {
    width: 70px !important;
  }
  .sp-w-75 {
    width: 75px !important;
  }
  .sp-w-80 {
    width: 80px !important;
  }
  .sp-w-85 {
    width: 85px !important;
  }
  .sp-w-90 {
    width: 90px !important;
  }
  .sp-w-95 {
    width: 95px !important;
  }
  .sp-w-100 {
    width: 100px !important;
  }
  .sp-w-105 {
    width: 105px !important;
  }
  .sp-w-110 {
    width: 110px !important;
  }
  .sp-w-115 {
    width: 115px !important;
  }
  .sp-w-120 {
    width: 120px !important;
  }
  .sp-w-125 {
    width: 125px !important;
  }
  .sp-w-130 {
    width: 130px !important;
  }
  .sp-w-135 {
    width: 135px !important;
  }
  .sp-w-140 {
    width: 140px !important;
  }
  .sp-w-145 {
    width: 145px !important;
  }
  .sp-w-150 {
    width: 150px !important;
  }
  .sp-w-155 {
    width: 155px !important;
  }
  .sp-w-160 {
    width: 160px !important;
  }
  .sp-w-165 {
    width: 165px !important;
  }
  .sp-w-170 {
    width: 170px !important;
  }
  .sp-w-175 {
    width: 175px !important;
  }
  .sp-w-180 {
    width: 180px !important;
  }
  .sp-w-185 {
    width: 185px !important;
  }
  .sp-w-190 {
    width: 190px !important;
  }
  .sp-w-195 {
    width: 195px !important;
  }
  .sp-w-200 {
    width: 200px !important;
  }
  .sp-w-205 {
    width: 205px !important;
  }
  .sp-w-210 {
    width: 210px !important;
  }
  .sp-w-215 {
    width: 215px !important;
  }
  .sp-w-220 {
    width: 220px !important;
  }
  .sp-w-225 {
    width: 225px !important;
  }
  .sp-w-230 {
    width: 230px !important;
  }
  .sp-w-235 {
    width: 235px !important;
  }
  .sp-w-240 {
    width: 240px !important;
  }
  .sp-w-245 {
    width: 245px !important;
  }
  .sp-w-250 {
    width: 250px !important;
  }
  .sp-w-255 {
    width: 255px !important;
  }
  .sp-w-260 {
    width: 260px !important;
  }
  .sp-w-265 {
    width: 265px !important;
  }
  .sp-w-270 {
    width: 270px !important;
  }
  .sp-w-275 {
    width: 275px !important;
  }
  .sp-w-280 {
    width: 280px !important;
  }
  .sp-w-285 {
    width: 285px !important;
  }
  .sp-w-290 {
    width: 290px !important;
  }
  .sp-w-295 {
    width: 295px !important;
  }
  .sp-w-300 {
    width: 300px !important;
  }
  .sp-w-305 {
    width: 305px !important;
  }
  .sp-w-310 {
    width: 310px !important;
  }
  .sp-w-315 {
    width: 315px !important;
  }
  .sp-w-320 {
    width: 320px !important;
  }
  .sp-w-325 {
    width: 325px !important;
  }
  .sp-w-330 {
    width: 330px !important;
  }
  .sp-w-335 {
    width: 335px !important;
  }
  .sp-w-340 {
    width: 340px !important;
  }
  .sp-w-345 {
    width: 345px !important;
  }
  .sp-w-350 {
    width: 350px !important;
  }
  .sp-w-355 {
    width: 355px !important;
  }
  .sp-w-360 {
    width: 360px !important;
  }
  .sp-w-365 {
    width: 365px !important;
  }
  .sp-w-370 {
    width: 370px !important;
  }
  .sp-w-375 {
    width: 375px !important;
  }
  .sp-w-380 {
    width: 380px !important;
  }
  .sp-w-385 {
    width: 385px !important;
  }
  .sp-w-390 {
    width: 390px !important;
  }
  .sp-w-395 {
    width: 395px !important;
  }
  .sp-w-400 {
    width: 400px !important;
  }
  .sp-w-5per {
    width: 5% !important;
  }
  .sp-w-10per {
    width: 10% !important;
  }
  .sp-w-15per {
    width: 15% !important;
  }
  .sp-w-20per {
    width: 20% !important;
  }
  .sp-w-25per {
    width: 25% !important;
  }
  .sp-w-30per {
    width: 30% !important;
  }
  .sp-w-35per {
    width: 35% !important;
  }
  .sp-w-40per {
    width: 40% !important;
  }
  .sp-w-45per {
    width: 45% !important;
  }
  .sp-w-50per {
    width: 50% !important;
  }
  .sp-w-55per {
    width: 55% !important;
  }
  .sp-w-60per {
    width: 60% !important;
  }
  .sp-w-65per {
    width: 65% !important;
  }
  .sp-w-70per {
    width: 70% !important;
  }
  .sp-w-75per {
    width: 75% !important;
  }
  .sp-w-80per {
    width: 80% !important;
  }
  .sp-w-85per {
    width: 85% !important;
  }
  .sp-w-90per {
    width: 90% !important;
  }
  .sp-w-95per {
    width: 95% !important;
  }
  .sp-w-100per {
    width: 100% !important;
  }
  .sp-w-1em {
    width: 1em !important;
  }
  .sp-w-2em {
    width: 2em !important;
  }
  .sp-w-3em {
    width: 3em !important;
  }
  .sp-w-4em {
    width: 4em !important;
  }
  .sp-w-5em {
    width: 5em !important;
  }
  .sp-w-6em {
    width: 6em !important;
  }
  .sp-w-7em {
    width: 7em !important;
  }
  .sp-w-8em {
    width: 8em !important;
  }
  .sp-w-9em {
    width: 9em !important;
  }
  .sp-w-10em {
    width: 10em !important;
  }
  .sp-w-11em {
    width: 11em !important;
  }
  .sp-w-12em {
    width: 12em !important;
  }
  .sp-w-13em {
    width: 13em !important;
  }
  .sp-w-14em {
    width: 14em !important;
  }
  .sp-w-15em {
    width: 15em !important;
  }
  .sp-w-16em {
    width: 16em !important;
  }
  .sp-w-17em {
    width: 17em !important;
  }
  .sp-w-18em {
    width: 18em !important;
  }
  .sp-w-19em {
    width: 19em !important;
  }
  .sp-w-20em {
    width: 20em !important;
  }
  .sp-w-auto {
    width: auto !important;
  }
}
