@charset "UTF-8";
.sp-only {
  display: none;
}
@media screen and (max-width: 950px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 950px) {
  .pc-only {
    display: none;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --navy: #052751;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho:
    "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho", "MS Mincho",
    "Meiryo", serif;
  --gothic:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体",
    "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.header {
  width: 100%;
  height: 100%;
}
.header__nav-sp {
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  z-index: 100;
  padding: 5rem 3rem 9rem 3rem;
  opacity: 0;
  background: var(--white);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
.header__nav-sp:before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  aspect-ratio: 750/90;
  background: url(../images/sp-check.webp) repeat center center/cover;
  z-index: 100;
}
body.menu-open .header__nav-sp {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.header__nav-sp .header__nav-sp-inner {
  overflow-y: auto;
  padding-block: 5rem 10rem;
}
.header__nav-sp .header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-sp .header__nav-item:nth-child(1) a img {
  width: 8.9rem;
}
.header__nav-sp .header__nav-item:nth-child(3) a img {
  width: 18.2rem;
}
.header__nav-sp .header__nav-item:nth-child(2) a img {
  width: 14.1rem;
}
.header__nav-sp .header__nav-item:nth-child(4) a img {
  width: 40.1rem;
}
.header__nav-sp .header__nav-item:nth-child(5) a img {
  width: 14.3rem;
}
.header__nav-sp .header__nav-item:nth-child(6) a img {
  width: 12.7rem;
}
.header__nav-sp .header__nav-item:nth-child(7) a img {
  width: 11.2rem;
}
.header {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header::-webkit-scrollbar {
  display: none;
}

body:has(.menu-button.is-active) .menu-button {
  background: var(--white);
}
body:has(.menu-button.is-active) .menu-icon {
  width: 8.6rem;
  height: 8.6rem;
}
body:has(.menu-button.is-active) .menu-icon span {
  background-color: #d52926;
  top: 50%;
  left: 50%;
  height: 0.2rem;
}
body:has(.menu-button.is-active) .menu-icon span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
body:has(.menu-button.is-active) .menu-icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
body:has(.menu-button.is-active) .menu-icon span:nth-child(3) {
  display: none;
}

.menu-button {
  position: fixed;
  border: none;
  top: 3.8rem;
  right: 3rem;
  z-index: 997;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  padding: 0;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: #d52926;
}
.menu-button:focus {
  outline: none;
}
.menu-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 0.4rem;
}

.menu-icon {
  width: 6rem;
  height: 4.4rem;
  position: relative;
}
.menu-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: var(--white);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.menu-icon span:nth-child(3) {
  top: 100%;
}

body.menu-open {
  overflow: hidden;
}

.footer {
  background: #d52926;
  padding: 6rem 3rem 3rem;
}
.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.5rem;
}
.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__content--left > img, .footer__content--right > img {
  width: 28.3rem;
}
.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__links li .footer__link-icon--insta {
  width: 12rem;
}
.footer__links li .footer__link-icon--x {
  width: 8.5rem;
}
.footer__copy {
  text-align: center;
  margin-top: -1.2rem;
}
.footer__copy small {
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.fixed {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  z-index: 100;
}

.fixed.show {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: visible;
}

.cta-btn {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94%;
  height: auto;
}

.btn {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-animation: pulse-scale 2s ease-in-out infinite;
          animation: pulse-scale 2s ease-in-out infinite;
}
.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@-webkit-keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.floating {
  width: 100%;
}

.sp-only-btn {
  width: max(35.4rem, 95%);
  max-width: 45rem;
  aspect-ratio: 354/101;
  margin-inline: auto;
}
@media (min-width: 1000px) {
  .sp-only-btn {
    display: none;
  }
}

.pc-only-btn {
  background-color: var(--white);
  width: 100cqi;
  padding: 1rem;
}
.pc-only-btn__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
}
.pc-only-btn__text {
  width: 52.7rem;
}
.pc-only-btn .btn {
  width: 47.2rem;
}
@media (max-width: 1000px) {
  .pc-only-btn {
    display: none;
  }
}

.campaign {
  background: #d52926;
  padding-block: 2.8rem 5rem;
  padding-inline: 4rem;
}
.campaign__title {
  width: 67.2rem;
  height: auto;
  margin-inline: auto;
}
.campaign__title img {
  width: 100%;
  height: auto;
}
.campaign__subtitle--concept {
  width: 38.7rem;
  height: auto;
  margin-inline: auto;
  padding-top: 6.9rem;
}
.campaign__subtitle--campaign {
  width: 47.7rem;
  height: auto;
  margin-inline: auto;
  padding-top: 12.5rem;
}
.campaign__text--concept {
  padding-top: 3rem;
}
.campaign__text {
  font-size: max(3rem, 12px);
  line-height: 150%;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-block: var(--leading-trim);
  white-space: nowrap;
}
.campaign__bunner-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.campaign__bunner-text--campaign {
  margin-top: 3rem;
}
.campaign__bunner-text span {
  font-size: max(3.6rem, 14px);
  line-height: 1;
  color: #d52926;
  background: var(--white);
  letter-spacing: -0.04em;
  padding-inline: 2.6rem;
  padding-block: 0.7rem;
  display: inline-block;
}
.campaign__item {
  position: relative;
  z-index: 1;
}
.campaign__item--01 {
  margin-top: 13.6rem;
  background: #f3d7df;
  padding: 6.3rem 4rem 4.5rem;
}
.campaign__item--02 {
  margin-top: 16.7rem;
  background: #fff9e1;
  padding: 7.5rem 3.5rem 6rem;
}
.campaign__item-head-pop {
  width: 53.2rem;
  height: 32.5rem;
  border-radius: 50%;
  position: absolute;
  top: -10.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.campaign__item-head-pop img {
  width: 38.2rem;
  display: block;
  margin-inline: auto;
}
.campaign__item-head-pop--01 {
  padding-top: 4.2rem;
  background: #f3d7df;
}
.campaign__item-head-pop--02 {
  padding-top: 4.4rem;
  background: #fff9e1;
}
.campaign__item-body {
  position: relative;
  z-index: 2;
}
.campaign__item-01-text01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.campaign__item-01-text01-01 {
  font-size: max(3.5rem, 13px);
  line-height: 1.9142857143;
  letter-spacing: -0.04em;
  font-weight: 600;
  border-bottom: 2px solid #d52926;
  margin-block: var(--leading-trim);
  display: block;
}
.campaign__item-01-text01-01--center {
  text-align: center;
}
.campaign__item-01-text01-02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  padding-top: 1.9rem;
}
.campaign__item-01-text01-02-01 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(3.5rem, 13px);
  line-height: 1.5714285714;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.campaign__item-01-text01-02-02 {
  font-size: max(4rem, 15px);
  line-height: 1.675;
  letter-spacing: -0.04em;
  font-weight: 600;
  background: #d52926;
  color: var(--white);
  width: 14.5rem;
  height: 5.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.campaign__item-02-text01 {
  font-size: max(3.5rem, 13px);
  line-height: 1.9142857143;
  letter-spacing: -0.04em;
  font-weight: 600;
  border-bottom: 2px solid #d52926;
  margin-block: var(--leading-trim);
  display: block;
  text-align: center;
}
.campaign__item-02-text01--02 {
  margin-top: 7rem;
}
.campaign__item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 4.6rem;
}
.campaign__item-title--01-02 {
  padding-top: 4rem;
  border-top: 3px solid #df99bc;
}
.campaign__item-title-icon {
  width: 10rem;
  height: 11.5rem;
}
.campaign__item-title-text {
  font-size: max(3.2rem, 12px);
  line-height: 1.625;
  font-weight: 600;
  color: #182983;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-top: 3.8rem;
  margin-block: var(--leading-trim);
}
.campaign__item-img {
  margin-top: 2.4rem;
}
.campaign__item-img img {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(212, 137, 191, 0.4));
          filter: drop-shadow(7px 7px 5px rgba(212, 137, 191, 0.4));
}
.campaign__item-02-img {
  width: 56.3rem;
  margin-top: -2rem;
  margin-inline: auto;
}
.campaign__item-02-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1.6rem;
}
.campaign__item-02-col--01 {
  margin-top: 1.3rem;
}
.campaign__item-02-col--01 .campaign__item-02-col-img {
  min-width: 64rem;
  position: relative;
  left: -2.4rem;
}
.campaign__item-02-col--02 {
  margin-top: 4.2rem;
}
.campaign__item-02-col--02 .campaign__item-02-col-img {
  width: 52.4rem;
  position: relative;
  right: -1.6rem;
}
.campaign__item-02-col-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem;
  margin-top: 4.3rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.campaign__item-02-col-text-01 {
  font-size: max(5.2rem, 18px);
  line-height: 1.1923076923;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-block: var(--leading-trim);
  display: block;
  white-space: nowrap;
}
.campaign__item-02-col-text-02 {
  font-size: max(4.3rem, 15px);
  line-height: 1.7441860465;
  font-weight: 900;
  margin-block: var(--leading-trim);
  display: block;
  color: #d70b24;
}
.campaign__item-02-btn {
  display: block;
  max-width: 100%;
  width: 60rem;
  height: 8.8rem;
  margin-inline: auto;
  background: #d52926;
  color: var(--white);
  font-size: max(4rem, 15px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 7.2rem;
  border-radius: 99.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.campaign__item-02-btn:hover {
  opacity: 0.7 !important;
}
.campaign__attention {
  margin-top: 3.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.campaign__attention-title {
  font-size: max(2.6rem, 12px);
  line-height: 2;
  color: #d52926;
  background-color: var(--white);
  padding-inline: 2.6rem;
  padding-block: 0.7rem;
  display: inline-block;
  letter-spacing: 0.4em;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.campaign__attention-text {
  font-size: max(2.2rem, 12px);
  line-height: 1.5909090909;
  font-weight: 400;
  color: var(--white);
  margin-top: 2rem;
  margin-block: var(--leading-trim);
}

.product-list {
  background-image: url(../images/product-list-bg.webp);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding-block: 8.8rem 8.3rem;
  padding-inline: 2rem;
}
.product-list__title {
  font-size: max(4rem, 16px);
  line-height: 1.3;
  letter-spacing: 0.09em;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 1.3rem;
  border-bottom: 0.8rem solid #d52926;
}
.product-list__inner {
  margin-top: 8.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 0;
}
.product-list__item {
  position: relative;
}
.product-list__item-img {
  width: 20.8rem;
  margin-inline: auto;
}
.product-list__item-title {
  height: 2.8rem;
  margin-inline: auto;
  margin-top: 2.6rem;
}
.product-list__item-title--01 {
  width: 18.4rem;
}
.product-list__item-title--02 {
  width: 16.6rem;
}
.product-list__item-title--03 {
  width: 16.7rem;
}
.product-list__item-title--04 {
  width: 13.4rem;
}
.product-list__item-title--05 {
  width: 16.7rem;
}
.product-list__item-title--06 {
  width: 29.8rem;
}
.product-list__item-title--07 {
  width: 8.7rem;
}
.product-list__item-title--08 {
  width: 20.7rem;
}
.product-list__item-title--09 {
  width: 10.8rem;
}
.product-list__item-title--10 {
  width: 13.2rem;
}
.product-list__item-text {
  font-size: max(2.7rem, 11px);
  line-height: 1.4074074074;
  letter-spacing: 0;
  font-weight: 400;
  margin-block: var(--leading-trim);
  display: block;
  text-align: center;
  margin-top: 1.6rem;
}
.product-list__btn {
  font-size: max(4rem, 16px);
  line-height: 1.3;
  letter-spacing: 0.13em;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-list__btn:hover {
    opacity: 0.7;
  }
}
.product-list__btn--more {
  width: 44rem;
  height: 10rem;
  border-radius: 2rem;
  background-color: #d52926;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 6.4rem;
}
.product-list__btn--page {
  width: 60rem;
  height: 10rem;
  border-radius: 99.9rem;
  background-color: #ff9500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 8.4rem;
}
.product-list .product-list__inner#product-list-default-hidden {
  display: none;
}
.product-list__btn--page {
  display: none;
}
.product-list.is-expanded .product-list__inner#product-list-default-hidden {
  display: grid;
}
.product-list.is-expanded .product-list__btn--page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product {
  padding-block: 8.8rem 5rem;
  background: #d52926;
  padding-inline: 4rem;
}
.product__title {
  width: 38.5rem;
  margin-inline: auto;
}
.product__cards {
  margin-top: 9.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.2rem;
}
.product__card {
  position: relative;
  background-image: url(../images/product-card-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 24.8rem 2rem;
  padding-inline: 2rem;
}
.product__card-head {
  position: absolute;
}
.product__card-head--01 {
  width: 64rem;
  top: -2.8rem;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 1.8rem));
          transform: translateX(calc(-50% - 1.8rem));
}
.product__card-head--02 {
  width: 62.4rem;
  top: -3rem;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 2.8rem));
          transform: translateX(calc(-50% + 2.8rem));
}
.product__card-text {
  font-size: max(2.4rem, 12px);
  line-height: 1.625;
  letter-spacing: 0.03em;
  margin-block: var(--leading-trim);
  display: block;
}
.product__card-img {
  margin-top: 2.4rem;
}

.shop {
  padding-block: 10rem 8.2rem;
  background: #f8f3ee;
}
.shop__title {
  width: 31.2rem;
  margin-inline: auto;
}
.shop__text {
  font-size: max(3rem, 15px);
  line-height: 1.3333333333;
  letter-spacing: 0.13em;
  margin-block: var(--leading-trim);
  display: block;
  text-align: center;
  padding-top: 4.6rem;
}
.shop__attention-text {
  margin-block: var(--leading-trim);
  margin-top: 3rem;
  font-size: max(2.2rem, 12px);
  line-height: 1.5909090909;
  font-weight: 400;
  padding-inline: 4rem;
}
.shop__inner {
  padding-inline: 3.8rem;
}
.shop__item--01 {
  margin-top: 4.1rem;
}
.shop__item-head--01 {
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-columns: 1fr 17.2rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.3rem solid #d5d5d5;
}
.shop__item-head--01 .shop__item-head-title {
  padding-left: 1.3rem;
  border-left: 0.7rem solid #d52926;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1.2rem;
}
.shop__item-head--01 .shop__item-head-title-bunner {
  font-size: max(2.4rem, 12px);
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  font-weight: 500;
  background: #d52926;
  color: var(--white);
  width: 34.4rem;
  height: 4.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop__item-head--01 .shop__item-head-title-text {
  padding-bottom: 1.4rem;
  padding-top: 1.9rem;
  font-size: max(3rem, 15px);
  line-height: 1.6;
  letter-spacing: 0.13em;
  margin-block: var(--leading-trim);
  display: block;
}
.shop__item-head--02 {
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-columns: 1fr 23.5rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.3rem solid #d5d5d5;
}
.shop__item-head--02 .shop__item-head-title {
  padding-left: 1.3rem;
  border-left: 0.7rem solid #d52926;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 1.2rem;
}
.shop__item-head--02 .shop__item-head-title-text {
  padding-block: 2.2rem;
  font-size: max(3rem, 15px);
  line-height: 1.6;
  letter-spacing: 0.13em;
  margin-block: var(--leading-trim);
  display: block;
}
.shop__item--02 {
  margin-top: 3.4rem;
}
.shop__item-body {
  display: block;
  margin-top: 3rem;
}
.shop__filter {
  margin-bottom: 2.4rem;
  position: relative;
}
.shop__filter::after {
  content: "▼";
  font-size: 2rem;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 1.6rem;
  top: 6.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.shop__filter-label {
  display: block;
  font-size: max(1.8rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  margin-block: var(--leading-trim);
  margin-bottom: 0.8rem;
}
.shop__filter-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--white);
  background-image: none;
  border: 0.3rem solid #c8d2df;
  border-radius: 0.4rem;
  color: var(--black);
  font-size: max(2.4rem, 12px);
  font-weight: 500;
  height: 6.4rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-block: var(--leading-trim);
  padding-inline: 1.4rem 5.6rem;
  width: 100%;
}
.shop__filter-select::-ms-expand {
  display: none;
}
.shop__filter-help {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.6rem, 9px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-block: var(--leading-trim);
  margin-top: 0.8rem;
}
.shop__item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.shop__item-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 3.8rem;
  gap: 2.8rem;
  border-bottom: 0.3rem solid #d5d5d5;
}
.shop__item-list-item[hidden] {
  display: none;
}
.shop__item-list-item-title {
  font-size: max(2.6rem, 13px);
  line-height: 1.1538461538;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-block: var(--leading-trim);
  display: block;
}
.shop__item-list-item-text {
  font-size: max(2rem, 10px);
  line-height: 2;
  letter-spacing: 0.13em;
  font-weight: 500;
  margin-block: var(--leading-trim);
  display: block;
}

.brand {
  background: #d52926;
  margin-bottom: 4rem;
  padding-top: 11.2rem;
}
.brand__title img {
  width: 33.3rem;
  margin-inline: auto;
}
.brand__title {
  padding-bottom: 6.7rem;
  position: relative;
}
.brand__title::before {
  content: "";
  position: absolute;
  aspect-ratio: 750/40;
  bottom: 0;
  left: 0;
  height: 4rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.06)), to(rgba(0, 0, 0, 0.25)));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.25) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.25) 100%);
}
.brand__content {
  background: var(--white);
  padding-top: 9rem;
  margin-bottom: 4rem;
}
.brand__content-title-img {
  margin-inline: auto;
}
.brand__content-title-img--01 {
  width: 34rem;
}
.brand__content-title-img--02 {
  width: 38rem;
}
.brand__content-text {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.875;
  text-align: center;
  letter-spacing: -0.08em;
}
.brand__content-img-wrap {
  margin-top: 6rem;
  position: relative;
}
.brand__content-img-wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -4rem;
  left: 0;
  width: 100%;
  aspect-ratio: 750/40;
  height: 4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.35)), color-stop(8%, rgba(255, 255, 255, 0.15)), color-stop(25%, transparent)), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.35)), color-stop(8%, rgba(0, 0, 0, 0.15)), color-stop(25%, transparent)), #d52926;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15) 8%, transparent 25%), -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 8%, transparent 25%), #d52926;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15) 8%, transparent 25%), linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 8%, transparent 25%), #d52926;
}

.clothes {
  background: #f8f2e7;
}
.clothes .section-line {
  background: var(--white);
}
.clothes__inner {
  padding-block: 8rem 11rem;
}
.clothes__title img {
  width: 52.1rem;
  margin-inline: auto;
}
.clothes__text {
  text-align: center;
  padding-top: 3rem;
  font-size: max(3rem, 12px);
  line-height: 150%;
  letter-spacing: -0.04em;
  margin-block: var(--leading-trim);
}
.clothes__list {
  margin-top: 6.5rem;
  padding-inline: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 0rem;
}
.clothes__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.clothes__item:hover .clothes__tag,
.clothes__item:hover .clothes__name {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clothes__tag {
  font-size: 2rem;
  width: 28rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clothes__tag, .clothes__tag--modal {
  padding: 1.5rem;
  background: #ee9898;
  border-radius: 2.65rem;
  text-align: center;
  color: var(--white);
  text-align: center;
  margin-inline: auto;
  line-height: 1;
}
.clothes__tag--modal {
  width: 38rem;
  font-size: 2.6rem;
  margin-top: -1.5rem;
}
.clothes__name, .clothes__name--modal {
  margin-top: 2rem;
  text-align: center;
  color: #92572b;
  line-height: 1;
}
.clothes__name {
  font-size: 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clothes__name--modal {
  font-size: 4rem;
  margin-top: 2.5rem;
}
.clothes .clothes-modal__close {
  background: none;
  border: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  width: 10rem;
  height: 10rem;
}
.clothes .clothes-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.48);
  overflow-y: auto;
}
.clothes .clothes-modal[hidden] {
  display: none;
}
.clothes .clothes-modal__wrap {
  width: 75rem;
  background: #f8f2e7;
  max-width: 100%;
  max-height: 92vh;
  padding: 7rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.clothes .clothes-modal__inner {
  -webkit-box-shadow: 0 0 1.5rem #e4c38e;
          box-shadow: 0 0 1.5rem #e4c38e;
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white);
  border-radius: 4rem;
  padding-inline: 3.5rem;
  padding-bottom: 6rem;
}
.clothes .clothes-modal__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.clothes .clothes-modal__img {
  width: 39.6rem;
  margin-inline: auto;
}
.clothes .clothes-modal__list {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 4px solid #d5d5d5;
}
.clothes .clothes-modal__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: var(--leading-trim);
}
.clothes .clothes-modal__item dd,
.clothes .clothes-modal__item dt {
  font-size: 3rem;
  line-height: 1.6666666667;
}
.clothes .clothes-modal__item dt {
  color: #ee9898;
}
.clothes .clothes-modal__title {
  margin-block: var(--leading-trim);
  padding-top: 3rem;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  color: #ee9898;
  padding-bottom: 2rem;
}
.clothes .clothes-modal__text {
  font-size: 3rem;
  line-height: 1.6666666667;
  margin-block: var(--leading-trim);
}

.contact {
  padding-block: 8rem 10rem;
  padding-inline: 4rem;
}
.contact__title {
  padding: 1.8rem 1.6rem;
  background: #eeeeee;
  font-size: max(2.6rem, 13px);
  line-height: 1;
  letter-spacing: 0.07em;
  display: block;
}
.contact__text {
  font-size: max(2rem, 10px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-block: var(--leading-trim);
  display: block;
  padding-top: 1.6rem;
  word-break: break-all;
}

.official {
  padding-block: 0rem 10rem;
  padding-inline: 4rem;
}
.official__title {
  padding: 1.8rem 1.6rem;
  background: #eeeeee;
  font-size: max(2.6rem, 13px);
  line-height: 1;
  letter-spacing: 0.07em;
  display: block;
}
.official__link {
  margin-top: 3rem;
  display: block;
  width: 28.3rem;
  margin-inline: auto;
}
.official__link:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */