:root {
  --base-font: "Noto Sans JP", sans-serif;
  --second-font: "Noto Serif JP", serif;
  --inner: 1152px;
  --inner-small: 900px;
  --sp-max-width: 540px;
  --padding-pc: 25px;
  --padding-sp: 20px;
  --padding: 36px;
  --c-base: #fff;
  --c-accent: #ec5504;
  --c-text: #573225;
  --c-text-white: #fff;
  --z-index-modal: 50;
  --z-index-modal-open: 100;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
  --z-index-page-top: 5;
  --z-index-following-banner: 5;
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  --rounded-xxs: 2px;
  --rounded-xs: 5px;
  --rounded-sm: 7px;
  --rounded-md: 12px;
  --rounded-lg: 15px;
  --rounded-xl: 20px;
  --rounded-full: 99rem;
  --flex-track: minmax(0, 1fr);
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: "";
}

:where(em) {
  font-style: normal;
}

:where(address) {
  font-style: normal;
}

:where(summary) {
  display: block;
  list-style: none;
}

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

:where(img) {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}

:where(button) {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

:where([type=text], [type=email], [type=tel], select, textarea) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

:where(textarea) {
  resize: none;
  field-sizing: content;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

@media (hover: hover) {
  :where(a):hover {
    opacity: 0.7;
  }
}
:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: var(--base-font);
  font-size: 16px;
  color: var(--c-text);
  background-color: #fffbd9;
  font-feature-settings: "palt";
}

.c-icon {
  display: block;
  width: 100%;
}

.c-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentcolor;
  display: block;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon[data-c-icon=circle_arrow]::before {
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/icon_circle_arrow.svg);
          mask-image: url(../img/icon_circle_arrow.svg);
}

.c-button {
  --_text-width: 350px;
  --_icon-width: 42px;
  --_circle-width: 40px;
  --_circle-position-right: 32px;
  --_min-height: 110px;
  --_column-gap: 10px;
  display: inline-flex;
  background-color: var(--c-accent);
  border-radius: var(--rounded-full);
  color: var(--c-text-white);
  padding: 10px 100px 10px 80px;
  position: relative;
  min-height: var(--_min-height);
}

.c-button__text {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: var(--_column-gap);
       column-gap: var(--_column-gap);
}

.c-button__text img {
  width: var(--_text-width);
}

.c-button__text::before {
  display: inline-block;
  content: "";
  width: var(--_icon-width);
  aspect-ratio: 33/30;
  background-color: currentColor;
  -webkit-mask-image: url(/img/icon_cart.svg);
          mask-image: url(/img/icon_cart.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-button__icon {
  display: flex;
  width: var(--_circle-width);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--_circle-position-right);
}

.c-button[data-size=lg] {
  --_text-width: 509px;
  --_icon-width: 57px;
  --_circle-width: 58px;
  --_circle-position-right: 56px;
  --_min-height: 165px;
  --_column-gap: 20px;
}

.c-button[data-display=block] {
  display: flex;
  justify-content: center;
}

.l-footer__upper {
  display: flex;
  justify-content: center;
  padding: 70px 20px;
}

.l-footer__link {
  display: inline-block;
  -webkit-text-decoration: revert;
          text-decoration: revert;
  font-size: 20px;
  color: #000;
  padding: 0 28px;
}

.l-footer__link:nth-of-type(2) {
  position: relative;
}

.l-footer__link:nth-of-type(2)::before {
  content: "";
  width: 1px;
  height: 1em;
  background-color: currentColor;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  transform: translate(0, -50%);
}

.l-footer__bottom {
  padding: 35px 0;
  text-align: center;
  color: var(--c-text-white);
  background-color: #573225;
}

.l-footer__copy {
  font-size: 20px;
}

.l-inner {
  width: min(var(--sp-max-width), 100%);
  padding: 0 var(--padding-sp);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: min(var(--inner) + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .l-inner--small {
    width: min(var(--inner-small) + var(--padding-pc) * 2, 100%);
  }
}

.l-wrapper {
  margin: 0 auto;
  width: min(1000px, 100%);
  background-color: var(--c-base);
  overflow-x: clip;
}

.p-mv {
  position: relative;
}

.p-mv__texts {
  display: inline-flex;
  flex-direction: row-reverse;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: absolute;
  top: 115px;
  left: 75px;
}

.p-mv__logo {
  width: 316px;
}

.p-mv__copy {
  width: 46px;
  align-self: flex-end;
  padding-bottom: 45px;
}

.p-mv__products {
  width: 915px;
  position: absolute;
  bottom: 170px;
  right: 20px;
}

.p-line-up {
  padding: 70px 0 120px;
}

.p-line-up__inner {
  padding: 0 40px;
}

.p-line-up__title {
  margin: 0 auto;
  width: 664px;
}

.p-line-up__en {
  width: 179px;
  margin: 55px auto 0;
}

.p-line-up__list {
  margin-top: 10px;
}

.p-line-up__item + .p-line-up__item {
  margin-top: 70px;
}

.p-line-up__item-img[data-index="1"] {
  width: 1001px;
  transform: translateX(-60px);
}

.p-line-up__item-img[data-index="2"] {
  width: 1029px;
  transform: translateX(-55px);
}

.p-line-up__cols {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  position: relative;
}

.p-line-up__cols[data-index="1"] {
  margin-top: -325px;
}

.p-line-up__cols[data-index="2"] {
  margin-top: -240px;
}

.p-line-up__item-logo[data-index="1"] {
  width: 189px;
}

.p-line-up__item-logo[data-index="2"] {
  width: 230px;
}

.p-line-up__item-text {
  font-size: 27px;
  line-height: 1.75;
}

.p-line-up__button {
  margin-top: 105px;
}

.p-reason {
  padding: 35px 0 115px;
  background-color: #f9faf5;
}

.p-reason__inner {
  padding: 0 30px;
}

.p-reason__img {
  margin: 0 auto;
  width: min(842px, 100%);
}

.p-reason__text-main {
  margin: -20px auto 0;
  width: min(795px, 100%);
}

.p-reason__text-sub {
  margin-top: 45px;
  font-size: 33px;
  line-height: 1.75;
  text-align: center;
}

.p-reason__list {
  margin-top: 60px;
}

.p-reason__item {
  display: grid;
  grid-template: "title img" auto "text img" 1fr/var(--flex-track) auto;
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 25px;
  padding: 55px 0 75px;
  position: relative;
}

.p-reason__item::before,
.p-reason__item::after {
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-reason__item:first-of-type:before {
  top: 0;
}

.p-reason__item::after {
  bottom: 0;
}

.p-reason__item-title {
  grid-area: title;
}

.p-reason__item-title[data-index="1"] {
  width: 126px;
}

.p-reason__item-title[data-index="2"] {
  width: 180px;
}

.p-reason__item-title[data-index="3"] {
  width: 354px;
}

.p-reason__item-text {
  grid-area: text;
  font-size: 33px;
  line-height: 1.75;
}

.p-reason__item-img {
  grid-area: img;
  width: 235px;
}

.p-scene {
  position: relative;
}

.p-scene__texts {
  width: 464px;
  position: relative;
  z-index: 1;
  margin: 0 0 0 38px;
  transform: translateY(-52px);
}

.p-scene__text {
  font-size: 33px;
  color: var(--c-text-white);
  line-height: 1.75;
  writing-mode: vertical-rl;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% + 5px);
  transform: translate(-50%, -50%);
}

.p-scene__products {
  margin-top: -647px;
  width: min(963px, 100%);
  position: relative;
  z-index: 1;
}

.p-scene__main {
  margin-top: -180px;
  position: relative;
  z-index: 1;
}

.p-scene__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-commit {
  margin-top: -50px;
  background: linear-gradient(to bottom, var(--c-base), #f1f0e4);
  padding: 130px 0 190px;
  position: relative;
}

.p-commit::before {
  content: "";
  width: 100%;
  aspect-ratio: 1001/569;
  background-image: url(../img/bg_commit.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-commit__inner {
  padding: 0 30px;
  position: relative;
}

.p-commit__title {
  margin: 0 auto;
  width: 561px;
}

.p-commit__block {
  margin-top: 25px;
  position: relative;
}

.p-commit__block:first-of-type {
  margin-top: 95px;
}

.p-commit__block:first-of-type::before {
  content: "";
  width: 320px;
  aspect-ratio: 1;
  background-image: url(../img/pic_commit_1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  right: 0;
}

.p-commit__block:nth-of-type(2)::before {
  content: "";
  width: 392px;
  aspect-ratio: 1;
  background-image: url(../img/pic_commit_3.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -150px;
  right: -35px;
}

.p-commit__copy[data-index="1"] {
  width: 554px;
}

.p-commit__copy[data-index="2"] {
  width: 830px;
}

.p-commit__text {
  margin-top: 40px;
  font-size: 33px;
  line-height: 1.75;
}

.p-commit__img {
  margin-top: 10px;
  width: 103%;
  transform: translateX(-1%);
}

.p-products {
  padding: 60px 0 140px;
}

.p-products__inner {
  padding: 0 30px;
}

.p-products__title {
  margin: 0 auto;
  width: 329px;
}

.p-products__block {
  margin-top: 100px;
}

.p-products__block:not(:first-of-type) {
  margin-top: 150px;
  padding-top: 72px;
  position: relative;
}

.p-products__block:not(:first-of-type)::before {
  content: "";
  width: calc(100% - 50px);
  height: 1px;
  background-color: #573225;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-products__logo {
  margin: 0 auto;
}

.p-products__logo[data-index="1"] {
  width: 189px;
}

.p-products__logo[data-index="2"] {
  width: 331px;
}

.p-products__lead {
  margin-top: 52px;
  font-size: 28px;
  line-height: 1.75;
  text-align: center;
}

.p-products__list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 120px;
}

.p-products__list[data-margin-top=lg] {
  margin-top: 150px;
  row-gap: 190px;
}

.p-products__item {
  position: relative;
}

.p-products__item[data-index="1"] {
  display: grid;
  grid-template: "title img" auto ". img" 40px "text img" 1fr ". ." 20px "button button" auto/470fr 470fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.p-products__item[data-index="2"] .p-products__item-texts {
  margin-top: 100px;
}

.p-products__item[data-index="2"] .p-products__item-button {
  margin-top: 65px;
}

.p-products__item[data-index="2"] .p-products__item-button[data-margin=md] {
  margin-top: 100px;
}

.p-products__item[data-index="2"] .p-products__item-button[data-margin=lg] {
  margin-top: 142px;
}

.p-products__item-body {
  width: 655px;
}

.p-products__item-title {
  grid-area: title;
  margin-left: 15px;
}

.p-products__item-title[data-index="1"] {
  width: 197px;
}

.p-products__item-title[data-index="2"] {
  width: 282px;
}

.p-products__item-title[data-index="3"] {
  width: 120%;
}

.p-products__item-title[data-index="6"] {
  width: 281px;
}

.p-products__item-texts {
  grid-area: text;
}

.p-products__item-text {
  font-size: 32px;
  line-height: 1.75;
}

.p-products__item-price {
  font-size: 64px;
}

.p-products__item-price small {
  font-size: 35px;
}

.p-products__item-img {
  grid-area: img;
}

.p-products__item-img[data-index="1"] {
  width: 110%;
  transform: translateX(2.5%);
}

.p-products__item-img[data-index="2"] {
  width: 100%;
  transform: translateX(2.5%);
}

.p-products__item-img[data-index="3"] {
  width: 105%;
  transform: translate(5%, 50px);
}

.p-products__item-img[data-index="4"] {
  width: 492px;
  position: absolute;
  top: -135px;
  right: -60px;
}

.p-products__item-img[data-index="5"] {
  width: 492px;
  position: absolute;
  top: -135px;
  right: -50px;
}

.p-products__item-img[data-index="6"] {
  width: 454px;
  position: absolute;
  top: -55px;
  right: -25px;
}

.p-products__item-button {
  grid-area: button;
  text-align: center;
}

.p-movie {
  padding: 45px 0;
}

.p-movie__inner {
  padding: 0 30px;
}

.p-movie__lead {
  margin: 0 auto;
  width: 686px;
}

.p-movie__text {
  margin-top: 40px;
  font-size: 29px;
  text-align: center;
}

.p-movie__video {
  margin-top: 30px;
}

.p-movie__video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 940/528;
}

.u-hidden {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  visibility: hidden;
  opacity: 0;
  outline: none;
  overflow: hidden;
  pointer-events: none;
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: revert;
  }
}

.u-di {
  display: inline;
}

.u-db {
  display: block;
}

.u-dib {
  display: inline-block;
}

.u-font-en {
  font-family: var(--second-font);
}

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

.u-font-semibold {
  font-weight: 600;
}

.u-font-medium {
  font-weight: 500;
}

.u-tracking-widest {
  letter-spacing: 0.1em;
}

.u-tracking-wider {
  letter-spacing: 0.05em;
}

.u-tracking-wide {
  letter-spacing: 0.02em;
}

.u-leading-loose {
  line-height: 2;
}

.u-leading-relaxed {
  line-height: 1.7;
}

.u-leading-none {
  line-height: 1;
}

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

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