@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Lato:wght@400;700&display=swap");
*:not(:is(ul, ol, li)) {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  font-size: 62.5%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

:where(:is(ul, ol):not(.is-list-normal)) {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
:where(:is(ul, ol):not(.is-list-normal)) li {
  margin: 0;
  padding: 0;
}

:where(ul.is-list-normal) {
  padding-left: 1em;
  list-style: disc;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: bottom;
  max-width: 100%;
}

picture {
  max-width: 100%;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

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

input:is([type=checkbox][type=radio]), select, button {
  cursor: pointer;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --color-text: #c0c0c0;
  --color-bg: #131313;
  --color-bg-secondary: #c0c0c0;
  --color-border: #dfdfdf;
  --text-1: #000000;
  --button: #b8ab6c;
  --text-primary: "Noto Sans JP", sans-serif;
  --content-padding: min(3.2rem, 2.2222222222vw);
  --content-width: 1920px;
  --header-height: min(6.4rem, 4.4444444444vw);
  --trd-duration: 0.5s;
  --trd-hover-duration: 0.2s;
  --trd-timing: cubic-bezier(.165, .84, .44, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: var(--text-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: var(--text-size-base);
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin-inline: auto;
  position: relative;
  z-index: var(--content-index);
}

.container {
  padding-inline: var(--content-padding);
  z-index: var(--content-index);
  position: relative;
  border-top: 1px solid transparent;
}

.header {
  position: relative;
  z-index: var(--header-index);
}

.main {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: var(--main-index);
}

.footer {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 min(3rem, 2.0833333333vw);
  color: var(--text-1);
  font-size: min(1.1rem, 0.7638888889vw);
  text-align: center;
  background: var(--color-bg-secondary);
}
@media (max-width: 768px) {
  .footer {
    font-size: min(2.2rem, 1.5277777778vw);
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
.wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}

.section__inner {
  width: min(90%, var(--content-width));
  margin: 0 auto;
}
.section__title {
  width: 100%;
}
.section__desc {
  font-size: min(1.6rem, 1.1111111111vw);
  text-align: center;
}
@media (max-width: 768px) {
  .section__desc {
    font-size: min(3.2rem, 2.2222222222vw);
  }
}
.section__note {
  width: 90%;
  margin: 0 auto;
  font-size: min(1.6rem, 1.1111111111vw);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section__note {
    font-size: min(4rem, 2.7777777778vw);
  }
}

.mv {
  background: #131313;
}
.mv__img {
  aspect-ratio: 1920/1080;
}
.mv .section__inner {
  width: 100%;
  padding: min(3.2rem, 2.2222222222vw);
}
@media (max-width: 768px) {
  .mv .section__inner {
    padding: min(6.4rem, 4.4444444444vw);
  }
}
.mv .section__title {
  margin-bottom: min(1rem, 0.6944444444vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .mv .section__title {
    margin-bottom: min(3rem, 2.0833333333vw);
  }
}
.mv .section__title img {
  width: min(82.8rem, 57.5vw);
  aspect-ratio: 828/268;
}
@media (max-width: 768px) {
  .mv .section__title img {
    width: 100%;
  }
}
.mv .section__title--sub {
  padding: min(2.4rem, 1.6666666667vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-bg-secondary);
}
.mv .section__title--sub img {
  width: min(58.2rem, 40.4166666667vw);
}
@media (max-width: 768px) {
  .mv .section__title--sub img {
    width: 65vw;
  }
}
.mv .section__desc {
  text-align: center;
}
@media (max-width: 768px) {
  .mv .section__desc {
    font-size: min(1.8rem, 3vw);
    line-height: 1.6;
  }
}

.goods {
  background: url(../img/goods_pattern.png) no-repeat center top/cover;
}
.goods .section__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-bottom: min(3.3rem, 2.2916666667vw);
}
@media (max-width: 768px) {
  .goods .section__inner {
    padding-bottom: min(6.6rem, 4.5833333333vw);
  }
}
.goods .section__title {
  width: min(100%, var(--content-width));
  aspect-ratio: 1440/250;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto auto min(3.3rem, 2.2916666667vw);
  background: url(../img/goods_ttl_bg.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .goods .section__title {
    margin-bottom: min(6.6rem, 4.5833333333vw);
  }
}
.goods .section__titleImg {
  max-width: var(--content-width);
  height: 24%;
  margin: 0 auto;
  position: relative;
}
.goods .section__titleImg::before {
  content: "";
  display: block;
  text-align: center;
  width: 100%;
  font-size: min(1.4rem, 0.9722222222vw);
  position: absolute;
  bottom: max(-3.2rem, -2.2222222222vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .goods .section__titleImg::before {
    bottom: max(-4.4rem, -3.0555555556vw);
    font-size: min(2.4rem, 1.6666666667vw);
  }
}
.goods .section__title p {
  width: 100%;
  text-align: center;
  font-size: min(1.4rem, 0.9722222222vw);
}
.goods .section__content {
  width: min(87.5%, 760px);
  aspect-ratio: 1310/1482;
  margin: auto;
  background: url(../img/goods_bg.png) no-repeat center top/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.goods .section__contentImg {
  width: 100%;
  -webkit-box-flex: 1230;
      -ms-flex: 1230 0 0px;
          flex: 1230 0 0;
  position: relative;
}
.goods .section__contentImg img {
  height: auto;
}
.goods .section__contentBadge {
  width: 12.5%;
  position: absolute;
  top: 7.75%;
  right: -3%;
}
.goods .section__desc {
  color: var(--text-1);
  font-size: min(1.3rem, 0.9027777778vw);
  line-height: 1.8;
  text-align: center;
  -webkit-box-flex: 237;
      -ms-flex: 237 0 0px;
          flex: 237 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 min(1.5rem, 1.0416666667vw);
}
@media (max-width: 768px) {
  .goods .section__desc {
    font-size: min(2.8rem, 1.9444444444vw);
    line-height: 1.3;
  }
}
.goods--01 .section__titleImg::before, .goods--02 .section__titleImg::before, .goods--03 .section__titleImg::before {
  content: "※絵柄をお選びいただけます。";
}
.goods--04 .section__titleImg::before, .goods--05 .section__titleImg::before {
  content: "※絵柄はお選びいただけません。";
}
.goods--07 .section__titleImg {
  height: 40%;
}
@media (max-width: 768px) {
  .goods--07 .section__titleImg {
    height: min(11rem, 7.6388888889vw);
  }
}
@media (max-width: 768px) {
  .goods--07 .section__note {
    font-size: min(4.4rem, 3.0555555556vw);
  }
}
.goods .deco-line {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}
.goods .deco-line img {
  width: 100%;
  margin: 0 auto;
}

.button {
  width: min(53.3rem, 37.0138888889vw);
  aspect-ratio: 533/90;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--button);
  position: relative;
  border-radius: 100px;
  -webkit-transition: var(--trd-hover-duration);
  transition: var(--trd-hover-duration);
}
@media (max-width: 768px) {
  .button {
    width: 90%;
  }
}
.button:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.button::before {
  content: "";
  width: min(3.1rem, 2.1527777778vw);
  aspect-ratio: 31/24;
  display: block;
  background: url(../img/btn_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: min(2.4rem, 1.6666666667vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .button::before {
    width: min(8rem, 5.5555555556vw);
    right: min(5.6rem, 3.8888888889vw);
  }
}
.button img {
  margin: 0 auto;
}
.button.btn_shop img {
  width: min(22rem, 15.2777777778vw);
}
@media (max-width: 768px) {
  .button.btn_shop img {
    width: min(52rem, 36.1111111111vw);
  }
}
.button.btn_online {
  margin: min(6rem, 4.1666666667vw) auto min(1.6rem, 1.1111111111vw);
}
@media (max-width: 768px) {
  .button.btn_online {
    margin-bottom: min(3.2rem, 2.2222222222vw);
  }
}
.button.btn_online img {
  width: min(24.9rem, 17.2916666667vw);
}
@media (max-width: 768px) {
  .button.btn_online img {
    width: min(56rem, 38.8888888889vw);
  }
}
@media (max-width: 768px) {
  .button.btn_top {
    width: 100%;
  }
}
.button.btn_top img {
  width: min(34.8rem, 24.1666666667vw);
}
@media (max-width: 768px) {
  .button.btn_top img {
    width: min(68rem, 47.2222222222vw);
  }
}

.shop-list {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  background: var(--color-bg-secondary);
}
.shop-list .section__inner {
  padding: min(8rem, 5.5555555556vw) 0 min(7rem, 4.8611111111vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.6rem, 1.1111111111vw);
  color: var(--text-1);
  font-size: min(1.6rem, 1.1111111111vw);
  text-align: center;
}
@media (max-width: 768px) {
  .shop-list .section__inner {
    gap: min(3.2rem, 2.2222222222vw);
    font-size: min(2.6rem, 1.8055555556vw);
  }
}
.shop-list p {
  font-size: min(1.6rem, 1.1111111111vw);
}
@media (max-width: 768px) {
  .shop-list p {
    font-size: min(1.8rem, 3vw);
  }
}

.info {
  width: 100%;
  margin: 0 auto;
  background: var(--color-bg-secondary);
}
.info .section__inner {
  padding: min(8rem, 5.5555555556vw) 0 min(7rem, 4.8611111111vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(7rem, 4.8611111111vw);
  color: var(--text-1);
  text-align: center;
}
.info .section__desc {
  font-size: min(1.6rem, 1.1111111111vw);
}
@media (max-width: 768px) {
  .info .section__desc {
    font-size: min(1.8rem, 2.5vw);
  }
}

.u-hidden {
  display: none !important;
}

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

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

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

.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.u-flex-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-flex-between {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.u-m-unit0 {
  margin: 0px !important;
}

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

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

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

.u-mr-unit0 {
  margin-right: 0px !important;
}

.u-p-unit0 {
  padding: 0px !important;
}

.u-pt-unit0 {
  padding-top: 0px !important;
}

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

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

.u-pr-unit0 {
  padding-right: 0px !important;
}

.u-mbl-unit0 {
  margin-block: 0px !important;
}

.u-pbl-unit0 {
  padding-block: 0px !important;
}

.u-mil-unit0 {
  margin-inline: 0px !important;
}

.u-pil-unit0 {
  padding-inline: 0px !important;
}

.u-m-unit1 {
  margin: 5px !important;
}

.u-mt-unit1 {
  margin-top: 5px !important;
}

.u-mb-unit1 {
  margin-bottom: 5px !important;
}

.u-ml-unit1 {
  margin-left: 5px !important;
}

.u-mr-unit1 {
  margin-right: 5px !important;
}

.u-p-unit1 {
  padding: 5px !important;
}

.u-pt-unit1 {
  padding-top: 5px !important;
}

.u-pb-unit1 {
  padding-bottom: 5px !important;
}

.u-pl-unit1 {
  padding-left: 5px !important;
}

.u-pr-unit1 {
  padding-right: 5px !important;
}

.u-mbl-unit1 {
  margin-block: 5px !important;
}

.u-pbl-unit1 {
  padding-block: 5px !important;
}

.u-mil-unit1 {
  margin-inline: 5px !important;
}

.u-pil-unit1 {
  padding-inline: 5px !important;
}

.u-m-unit2 {
  margin: 10px !important;
}

.u-mt-unit2 {
  margin-top: 10px !important;
}

.u-mb-unit2 {
  margin-bottom: 10px !important;
}

.u-ml-unit2 {
  margin-left: 10px !important;
}

.u-mr-unit2 {
  margin-right: 10px !important;
}

.u-p-unit2 {
  padding: 10px !important;
}

.u-pt-unit2 {
  padding-top: 10px !important;
}

.u-pb-unit2 {
  padding-bottom: 10px !important;
}

.u-pl-unit2 {
  padding-left: 10px !important;
}

.u-pr-unit2 {
  padding-right: 10px !important;
}

.u-mbl-unit2 {
  margin-block: 10px !important;
}

.u-pbl-unit2 {
  padding-block: 10px !important;
}

.u-mil-unit2 {
  margin-inline: 10px !important;
}

.u-pil-unit2 {
  padding-inline: 10px !important;
}

.u-m-unit3 {
  margin: 15px !important;
}

.u-mt-unit3 {
  margin-top: 15px !important;
}

.u-mb-unit3 {
  margin-bottom: 15px !important;
}

.u-ml-unit3 {
  margin-left: 15px !important;
}

.u-mr-unit3 {
  margin-right: 15px !important;
}

.u-p-unit3 {
  padding: 15px !important;
}

.u-pt-unit3 {
  padding-top: 15px !important;
}

.u-pb-unit3 {
  padding-bottom: 15px !important;
}

.u-pl-unit3 {
  padding-left: 15px !important;
}

.u-pr-unit3 {
  padding-right: 15px !important;
}

.u-mbl-unit3 {
  margin-block: 15px !important;
}

.u-pbl-unit3 {
  padding-block: 15px !important;
}

.u-mil-unit3 {
  margin-inline: 15px !important;
}

.u-pil-unit3 {
  padding-inline: 15px !important;
}

.u-m-unit4 {
  margin: 20px !important;
}

.u-mt-unit4 {
  margin-top: 20px !important;
}

.u-mb-unit4 {
  margin-bottom: 20px !important;
}

.u-ml-unit4 {
  margin-left: 20px !important;
}

.u-mr-unit4 {
  margin-right: 20px !important;
}

.u-p-unit4 {
  padding: 20px !important;
}

.u-pt-unit4 {
  padding-top: 20px !important;
}

.u-pb-unit4 {
  padding-bottom: 20px !important;
}

.u-pl-unit4 {
  padding-left: 20px !important;
}

.u-pr-unit4 {
  padding-right: 20px !important;
}

.u-mbl-unit4 {
  margin-block: 20px !important;
}

.u-pbl-unit4 {
  padding-block: 20px !important;
}

.u-mil-unit4 {
  margin-inline: 20px !important;
}

.u-pil-unit4 {
  padding-inline: 20px !important;
}

.u-m-unit5 {
  margin: 25px !important;
}

.u-mt-unit5 {
  margin-top: 25px !important;
}

.u-mb-unit5 {
  margin-bottom: 25px !important;
}

.u-ml-unit5 {
  margin-left: 25px !important;
}

.u-mr-unit5 {
  margin-right: 25px !important;
}

.u-p-unit5 {
  padding: 25px !important;
}

.u-pt-unit5 {
  padding-top: 25px !important;
}

.u-pb-unit5 {
  padding-bottom: 25px !important;
}

.u-pl-unit5 {
  padding-left: 25px !important;
}

.u-pr-unit5 {
  padding-right: 25px !important;
}

.u-mbl-unit5 {
  margin-block: 25px !important;
}

.u-pbl-unit5 {
  padding-block: 25px !important;
}

.u-mil-unit5 {
  margin-inline: 25px !important;
}

.u-pil-unit5 {
  padding-inline: 25px !important;
}

.u-m-unit6 {
  margin: 30px !important;
}

.u-mt-unit6 {
  margin-top: 30px !important;
}

.u-mb-unit6 {
  margin-bottom: 30px !important;
}

.u-ml-unit6 {
  margin-left: 30px !important;
}

.u-mr-unit6 {
  margin-right: 30px !important;
}

.u-p-unit6 {
  padding: 30px !important;
}

.u-pt-unit6 {
  padding-top: 30px !important;
}

.u-pb-unit6 {
  padding-bottom: 30px !important;
}

.u-pl-unit6 {
  padding-left: 30px !important;
}

.u-pr-unit6 {
  padding-right: 30px !important;
}

.u-mbl-unit6 {
  margin-block: 30px !important;
}

.u-pbl-unit6 {
  padding-block: 30px !important;
}

.u-mil-unit6 {
  margin-inline: 30px !important;
}

.u-pil-unit6 {
  padding-inline: 30px !important;
}

.u-m-unit7 {
  margin: 35px !important;
}

.u-mt-unit7 {
  margin-top: 35px !important;
}

.u-mb-unit7 {
  margin-bottom: 35px !important;
}

.u-ml-unit7 {
  margin-left: 35px !important;
}

.u-mr-unit7 {
  margin-right: 35px !important;
}

.u-p-unit7 {
  padding: 35px !important;
}

.u-pt-unit7 {
  padding-top: 35px !important;
}

.u-pb-unit7 {
  padding-bottom: 35px !important;
}

.u-pl-unit7 {
  padding-left: 35px !important;
}

.u-pr-unit7 {
  padding-right: 35px !important;
}

.u-mbl-unit7 {
  margin-block: 35px !important;
}

.u-pbl-unit7 {
  padding-block: 35px !important;
}

.u-mil-unit7 {
  margin-inline: 35px !important;
}

.u-pil-unit7 {
  padding-inline: 35px !important;
}

.u-m-unit8 {
  margin: 40px !important;
}

.u-mt-unit8 {
  margin-top: 40px !important;
}

.u-mb-unit8 {
  margin-bottom: 40px !important;
}

.u-ml-unit8 {
  margin-left: 40px !important;
}

.u-mr-unit8 {
  margin-right: 40px !important;
}

.u-p-unit8 {
  padding: 40px !important;
}

.u-pt-unit8 {
  padding-top: 40px !important;
}

.u-pb-unit8 {
  padding-bottom: 40px !important;
}

.u-pl-unit8 {
  padding-left: 40px !important;
}

.u-pr-unit8 {
  padding-right: 40px !important;
}

.u-mbl-unit8 {
  margin-block: 40px !important;
}

.u-pbl-unit8 {
  padding-block: 40px !important;
}

.u-mil-unit8 {
  margin-inline: 40px !important;
}

.u-pil-unit8 {
  padding-inline: 40px !important;
}

.u-m-unit9 {
  margin: 45px !important;
}

.u-mt-unit9 {
  margin-top: 45px !important;
}

.u-mb-unit9 {
  margin-bottom: 45px !important;
}

.u-ml-unit9 {
  margin-left: 45px !important;
}

.u-mr-unit9 {
  margin-right: 45px !important;
}

.u-p-unit9 {
  padding: 45px !important;
}

.u-pt-unit9 {
  padding-top: 45px !important;
}

.u-pb-unit9 {
  padding-bottom: 45px !important;
}

.u-pl-unit9 {
  padding-left: 45px !important;
}

.u-pr-unit9 {
  padding-right: 45px !important;
}

.u-mbl-unit9 {
  margin-block: 45px !important;
}

.u-pbl-unit9 {
  padding-block: 45px !important;
}

.u-mil-unit9 {
  margin-inline: 45px !important;
}

.u-pil-unit9 {
  padding-inline: 45px !important;
}

.u-m-unit10 {
  margin: 50px !important;
}

.u-mt-unit10 {
  margin-top: 50px !important;
}

.u-mb-unit10 {
  margin-bottom: 50px !important;
}

.u-ml-unit10 {
  margin-left: 50px !important;
}

.u-mr-unit10 {
  margin-right: 50px !important;
}

.u-p-unit10 {
  padding: 50px !important;
}

.u-pt-unit10 {
  padding-top: 50px !important;
}

.u-pb-unit10 {
  padding-bottom: 50px !important;
}

.u-pl-unit10 {
  padding-left: 50px !important;
}

.u-pr-unit10 {
  padding-right: 50px !important;
}

.u-mbl-unit10 {
  margin-block: 50px !important;
}

.u-pbl-unit10 {
  padding-block: 50px !important;
}

.u-mil-unit10 {
  margin-inline: 50px !important;
}

.u-pil-unit10 {
  padding-inline: 50px !important;
}

.u-m-unit11 {
  margin: 55px !important;
}

.u-mt-unit11 {
  margin-top: 55px !important;
}

.u-mb-unit11 {
  margin-bottom: 55px !important;
}

.u-ml-unit11 {
  margin-left: 55px !important;
}

.u-mr-unit11 {
  margin-right: 55px !important;
}

.u-p-unit11 {
  padding: 55px !important;
}

.u-pt-unit11 {
  padding-top: 55px !important;
}

.u-pb-unit11 {
  padding-bottom: 55px !important;
}

.u-pl-unit11 {
  padding-left: 55px !important;
}

.u-pr-unit11 {
  padding-right: 55px !important;
}

.u-mbl-unit11 {
  margin-block: 55px !important;
}

.u-pbl-unit11 {
  padding-block: 55px !important;
}

.u-mil-unit11 {
  margin-inline: 55px !important;
}

.u-pil-unit11 {
  padding-inline: 55px !important;
}

.u-m-unit12 {
  margin: 60px !important;
}

.u-mt-unit12 {
  margin-top: 60px !important;
}

.u-mb-unit12 {
  margin-bottom: 60px !important;
}

.u-ml-unit12 {
  margin-left: 60px !important;
}

.u-mr-unit12 {
  margin-right: 60px !important;
}

.u-p-unit12 {
  padding: 60px !important;
}

.u-pt-unit12 {
  padding-top: 60px !important;
}

.u-pb-unit12 {
  padding-bottom: 60px !important;
}

.u-pl-unit12 {
  padding-left: 60px !important;
}

.u-pr-unit12 {
  padding-right: 60px !important;
}

.u-mbl-unit12 {
  margin-block: 60px !important;
}

.u-pbl-unit12 {
  padding-block: 60px !important;
}

.u-mil-unit12 {
  margin-inline: 60px !important;
}

.u-pil-unit12 {
  padding-inline: 60px !important;
}

.u-m-unit13 {
  margin: 65px !important;
}

.u-mt-unit13 {
  margin-top: 65px !important;
}

.u-mb-unit13 {
  margin-bottom: 65px !important;
}

.u-ml-unit13 {
  margin-left: 65px !important;
}

.u-mr-unit13 {
  margin-right: 65px !important;
}

.u-p-unit13 {
  padding: 65px !important;
}

.u-pt-unit13 {
  padding-top: 65px !important;
}

.u-pb-unit13 {
  padding-bottom: 65px !important;
}

.u-pl-unit13 {
  padding-left: 65px !important;
}

.u-pr-unit13 {
  padding-right: 65px !important;
}

.u-mbl-unit13 {
  margin-block: 65px !important;
}

.u-pbl-unit13 {
  padding-block: 65px !important;
}

.u-mil-unit13 {
  margin-inline: 65px !important;
}

.u-pil-unit13 {
  padding-inline: 65px !important;
}

.u-m-unit14 {
  margin: 70px !important;
}

.u-mt-unit14 {
  margin-top: 70px !important;
}

.u-mb-unit14 {
  margin-bottom: 70px !important;
}

.u-ml-unit14 {
  margin-left: 70px !important;
}

.u-mr-unit14 {
  margin-right: 70px !important;
}

.u-p-unit14 {
  padding: 70px !important;
}

.u-pt-unit14 {
  padding-top: 70px !important;
}

.u-pb-unit14 {
  padding-bottom: 70px !important;
}

.u-pl-unit14 {
  padding-left: 70px !important;
}

.u-pr-unit14 {
  padding-right: 70px !important;
}

.u-mbl-unit14 {
  margin-block: 70px !important;
}

.u-pbl-unit14 {
  padding-block: 70px !important;
}

.u-mil-unit14 {
  margin-inline: 70px !important;
}

.u-pil-unit14 {
  padding-inline: 70px !important;
}

.u-m-unit15 {
  margin: 75px !important;
}

.u-mt-unit15 {
  margin-top: 75px !important;
}

.u-mb-unit15 {
  margin-bottom: 75px !important;
}

.u-ml-unit15 {
  margin-left: 75px !important;
}

.u-mr-unit15 {
  margin-right: 75px !important;
}

.u-p-unit15 {
  padding: 75px !important;
}

.u-pt-unit15 {
  padding-top: 75px !important;
}

.u-pb-unit15 {
  padding-bottom: 75px !important;
}

.u-pl-unit15 {
  padding-left: 75px !important;
}

.u-pr-unit15 {
  padding-right: 75px !important;
}

.u-mbl-unit15 {
  margin-block: 75px !important;
}

.u-pbl-unit15 {
  padding-block: 75px !important;
}

.u-mil-unit15 {
  margin-inline: 75px !important;
}

.u-pil-unit15 {
  padding-inline: 75px !important;
}

.u-m-unit16 {
  margin: 80px !important;
}

.u-mt-unit16 {
  margin-top: 80px !important;
}

.u-mb-unit16 {
  margin-bottom: 80px !important;
}

.u-ml-unit16 {
  margin-left: 80px !important;
}

.u-mr-unit16 {
  margin-right: 80px !important;
}

.u-p-unit16 {
  padding: 80px !important;
}

.u-pt-unit16 {
  padding-top: 80px !important;
}

.u-pb-unit16 {
  padding-bottom: 80px !important;
}

.u-pl-unit16 {
  padding-left: 80px !important;
}

.u-pr-unit16 {
  padding-right: 80px !important;
}

.u-mbl-unit16 {
  margin-block: 80px !important;
}

.u-pbl-unit16 {
  padding-block: 80px !important;
}

.u-mil-unit16 {
  margin-inline: 80px !important;
}

.u-pil-unit16 {
  padding-inline: 80px !important;
}

.u-m-unit17 {
  margin: 85px !important;
}

.u-mt-unit17 {
  margin-top: 85px !important;
}

.u-mb-unit17 {
  margin-bottom: 85px !important;
}

.u-ml-unit17 {
  margin-left: 85px !important;
}

.u-mr-unit17 {
  margin-right: 85px !important;
}

.u-p-unit17 {
  padding: 85px !important;
}

.u-pt-unit17 {
  padding-top: 85px !important;
}

.u-pb-unit17 {
  padding-bottom: 85px !important;
}

.u-pl-unit17 {
  padding-left: 85px !important;
}

.u-pr-unit17 {
  padding-right: 85px !important;
}

.u-mbl-unit17 {
  margin-block: 85px !important;
}

.u-pbl-unit17 {
  padding-block: 85px !important;
}

.u-mil-unit17 {
  margin-inline: 85px !important;
}

.u-pil-unit17 {
  padding-inline: 85px !important;
}

.u-m-unit18 {
  margin: 90px !important;
}

.u-mt-unit18 {
  margin-top: 90px !important;
}

.u-mb-unit18 {
  margin-bottom: 90px !important;
}

.u-ml-unit18 {
  margin-left: 90px !important;
}

.u-mr-unit18 {
  margin-right: 90px !important;
}

.u-p-unit18 {
  padding: 90px !important;
}

.u-pt-unit18 {
  padding-top: 90px !important;
}

.u-pb-unit18 {
  padding-bottom: 90px !important;
}

.u-pl-unit18 {
  padding-left: 90px !important;
}

.u-pr-unit18 {
  padding-right: 90px !important;
}

.u-mbl-unit18 {
  margin-block: 90px !important;
}

.u-pbl-unit18 {
  padding-block: 90px !important;
}

.u-mil-unit18 {
  margin-inline: 90px !important;
}

.u-pil-unit18 {
  padding-inline: 90px !important;
}

.u-m-unit19 {
  margin: 95px !important;
}

.u-mt-unit19 {
  margin-top: 95px !important;
}

.u-mb-unit19 {
  margin-bottom: 95px !important;
}

.u-ml-unit19 {
  margin-left: 95px !important;
}

.u-mr-unit19 {
  margin-right: 95px !important;
}

.u-p-unit19 {
  padding: 95px !important;
}

.u-pt-unit19 {
  padding-top: 95px !important;
}

.u-pb-unit19 {
  padding-bottom: 95px !important;
}

.u-pl-unit19 {
  padding-left: 95px !important;
}

.u-pr-unit19 {
  padding-right: 95px !important;
}

.u-mbl-unit19 {
  margin-block: 95px !important;
}

.u-pbl-unit19 {
  padding-block: 95px !important;
}

.u-mil-unit19 {
  margin-inline: 95px !important;
}

.u-pil-unit19 {
  padding-inline: 95px !important;
}

.u-m-unit20 {
  margin: 100px !important;
}

.u-mt-unit20 {
  margin-top: 100px !important;
}

.u-mb-unit20 {
  margin-bottom: 100px !important;
}

.u-ml-unit20 {
  margin-left: 100px !important;
}

.u-mr-unit20 {
  margin-right: 100px !important;
}

.u-p-unit20 {
  padding: 100px !important;
}

.u-pt-unit20 {
  padding-top: 100px !important;
}

.u-pb-unit20 {
  padding-bottom: 100px !important;
}

.u-pl-unit20 {
  padding-left: 100px !important;
}

.u-pr-unit20 {
  padding-right: 100px !important;
}

.u-mbl-unit20 {
  margin-block: 100px !important;
}

.u-pbl-unit20 {
  padding-block: 100px !important;
}

.u-mil-unit20 {
  margin-inline: 100px !important;
}

.u-pil-unit20 {
  padding-inline: 100px !important;
}

.u-text-primary {
  font-family: var(--text-primary) !important;
}

.u-text-secondary {
  font-family: var(--text-secondary) !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-size-base {
  font-size: var(--text-size-base) !important;
}

.u-text-size-small {
  font-size: var(--text-size-small) !important;
}

.u-text-size-medium {
  font-size: var(--text-size-medium) !important;
}

.u-text-size-large {
  font-size: var(--text-size-large) !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-fs-xs {
  font-size: 12px !important;
}

.u-fs-sm {
  font-size: 14px !important;
}

.u-fs-md {
  font-size: 16px !important;
}

.u-fs-lg {
  font-size: 20px !important;
}

.u-fs-xl {
  font-size: 24px !important;
}

.u-title {
  font-weight: var(--text-weight-large);
  margin-bottom: 0.5em;
}

.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-italic {
  font-style: italic !important;
}

.u-uppercase {
  text-transform: uppercase !important;
}

.u-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.u-color-primary {
  color: var(--primary-color);
}

.u-color-black {
  color: var(--text-color2);
}

.u-color-white {
  color: var(--text-color);
}

.u-color-error {
  color: var(--text-color-error);
}

.u-color-success {
  color: var(--text-color-success);
}

.u-bg-color-primary {
  --text-color: var(--light-color);
  background-color: var(--primary-color);
}

.u-bg-color-black {
  --text-color: var(--white-color);
  background-color: var(--black-color);
}

.u-bg-color-white {
  --text-color: var(--black-color);
  background-color: var(--white-color);
}

.u-bg-wall-primary {
  --text-color: var(--white-color);
  background-color: var(--black-color);
}

.u-bg-wall-black {
  background-image: url("/site_dns/assets/img/common/bg_wall_black.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .u-bg-wall-black {
    background-image: url("/site_dns/assets/img/common/sp/bg_wall_black.jpg");
  }
}

.u-border {
  border: 1px solid var(--border-color);
}
.u-border--white {
  border-color: var(--white-color);
}
.u-border--black {
  border-color: var(--black-color);
}

.u-border-dashed {
  border: 1px dashed var(--border-color);
}

.u-border-gray {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.u-w-100 {
  width: 100% !important;
}

.u-h-100 {
  height: 100% !important;
}

.u-max-w-100 {
  max-width: 100% !important;
}

.u-relative {
  position: relative !important;
}

.u-absolute {
  position: absolute !important;
}

.u-fixed {
  position: fixed !important;
}

.u-center {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/* BEM構造を壊さない範囲で一時的な補助として使用 */
.u-shadow {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.u-transition {
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.u-opacity-0 {
  opacity: 0 !important;
}

.u-opacity-50 {
  opacity: 0.5 !important;
}

.u-opacity-100 {
  opacity: 1 !important;
}

.u-z-top {
  z-index: 1000 !important;
}

.u-z-back {
  z-index: -1 !important;
}

.u-cursor-pointer {
  cursor: pointer !important;
}

.u-pointer-none {
  pointer-events: none !important;
}
/*# sourceMappingURL=style.css.map */