@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
span {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  display: block;
  max-width: 100%;
}

body {
  min-width: 1116px;
  font-family: "Zen Old Mincho", serif;
  color: #13240d;
}
@media (max-width: 768px) {
  body {
    min-width: auto;
  }
}
body * {
  box-sizing: border-box;
}
body p,
body a {
  line-height: 1.5;
}
body picture {
  display: block;
}
@media (max-width: 768px) {
  body img {
    width: 100%;
  }
}

.l-body-inner {
  overflow-x: clip;
}
@media (max-width: 768px) {
  .l-body-inner {
    overflow-x: hidden;
    overflow-y: visible;
  }
}

.l-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 5.3333333333vw;
  }
}

.pc-none {
  display: none;
}
@media (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.c-note {
  font-size: 12px;
  line-height: 1.8333333333;
}

.l-header-wrap {
  position: sticky;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 99;
}

.l-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  padding: 8px;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .l-header {
    padding: 2.1333333333vw;
  }
}

.l-header-inner {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}

.l-header-bg {
  display: none;
}

.l-header__btn {
  display: block;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  pointer-events: all;
}
@media (max-width: 768px) {
  .l-header__btn {
    width: 12.8vw;
    height: 12.8vw;
    gap: 1.6vw;
  }
}
.l-header__btn .l-header__btn-text img {
  width: 29px;
}
@media (max-width: 768px) {
  .l-header__btn .l-header__btn-text img {
    width: 7.7333333333vw;
  }
}
.l-header__btn .l-header__btn-text .close {
  display: none;
}
.l-header__btn:hover {
  cursor: pointer;
}
.l-header__btn .l-header__btn-inner {
  position: relative;
  width: 18px;
  height: 14px;
}
@media (max-width: 768px) {
  .l-header__btn .l-header__btn-inner {
    width: 4.8vw;
    height: 3.7333333333vw;
  }
}
.l-header__btn .l-header__btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: 0.3s ease;
  border-radius: 1px;
  background-color: #ab9044;
}
@media (max-width: 768px) {
  .l-header__btn .l-header__btn-inner span {
    height: 0.5333333333vw;
    border-radius: 0.2666666667vw;
  }
}
.l-header__btn .l-header__btn-inner span:nth-child(1) {
  top: 0;
}
.l-header__btn .l-header__btn-inner span:nth-child(2) {
  top: 7px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .l-header__btn .l-header__btn-inner span:nth-child(2) {
    top: calc(3.7333333333vw / 2);
  }
}
.l-header__btn .l-header__btn-inner span:nth-child(3) {
  top: 12px;
}
@media (max-width: 768px) {
  .l-header__btn .l-header__btn-inner span:nth-child(3) {
    top: 3.2vw;
  }
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .l-header__btn.is-open .l-header__btn-inner span:nth-child(1) {
    top: calc(3.7333333333vw / 2);
  }
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(2) {
  opacity: 0;
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .l-header__btn.is-open .l-header__btn-inner span:nth-child(3) {
    top: calc(3.7333333333vw / 2);
  }
}
.l-header__btn.is-open .l-header__btn-text img {
  width: 26px;
}
@media (max-width: 768px) {
  .l-header__btn.is-open .l-header__btn-text img {
    width: 6.9333333333vw;
  }
}
.l-header__btn.is-open .l-header__btn-text .close {
  display: block;
}
.l-header__btn.is-open .l-header__btn-text .open {
  display: none;
}

.l-header__content {
  display: none;
}
@media (max-width: 768px) {
  .l-header__content {
    display: none;
  }
}
.l-header__content.is-open {
  display: flex;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  padding: 0 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .l-header__content.is-open {
    padding: 0 2.6666666667vw;
  }
}
.l-header__content::before {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/bg01.svg) center center/10px 4px repeat;
}
@media (max-width: 768px) {
  .l-header__content::before {
    background-size: 2.6666666667vw 1.0666666667vw;
  }
}

.l-header__content-inner {
  display: flex;
  flex-direction: column;
  padding: 150px 50px 50px;
  align-items: flex-start;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .l-header__content-inner {
    padding: 40vw 13.3333333333vw 13.3333333333vw;
  }
}
.l-header__content-inner nav {
  width: 100%;
}

/****************************
nav
****************************/
.l-header-nav {
  display: none;
  position: sticky;
  z-index: 99;
  top: 0;
  transition: padding 0.3s ease;
  background: url(../img/bg_header01.png) top center/cover no-repeat;
  pointer-events: all;
}
.l-header-nav.is-open {
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #fff;
  padding: 140px 20px 0;
}
@media (max-width: 768px) {
  .l-header-nav.is-open {
    padding: 37.3333333333vw 5.3333333333vw 0;
  }
}
.l-header-nav .c-btn {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .l-header-nav .c-btn {
    margin-top: 6.4vw;
  }
}
.l-header-nav .l-header-nav__logo {
  position: absolute;
  top: 0;
  left: 40px;
  width: 132px;
}
@media (max-width: 768px) {
  .l-header-nav .l-header-nav__logo {
    left: 10.6666666667vw;
    width: 35.2vw;
  }
}

.l-header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .l-header-nav__inner {
    gap: 5.3333333333vw;
  }
}

.l-header-nav__nav {
  pointer-events: all;
  width: 100%;
  max-width: 295px;
  margin: 0 auto;
  padding-top: 17px;
  position: relative;
}
@media (max-width: 768px) {
  .l-header-nav__nav {
    max-width: 78.6666666667vw;
    padding-top: 4.5333333333vw;
  }
}
.l-header-nav__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/bg_header02.png) center center/contain no-repeat;
  width: 100%;
  aspect-ratio: 17.3529411765;
}
.l-header-nav__nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-nav__nav li {
  display: block;
  width: 100%;
}
.l-header-nav__nav a {
  font-size: 18px;
  line-height: 1.16;
  position: relative;
  display: block;
  padding: 24px 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .l-header-nav__nav a {
    font-size: 4.8vw;
    padding: 6.4vw 2.1333333333vw;
  }
}
.l-header-nav__nav a::before {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 7px;
  height: 15px;
  content: "";
  transform: translateY(-50%);
  background: url(../img/ico_triangle02.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .l-header-nav__nav a::before {
    right: 2.1333333333vw;
    width: 1.8666666667vw;
    height: 4vw;
  }
}

.l-header.is-tracking {
  background-color: #fff;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .l-header.is-tracking {
    opacity: 1;
    pointer-events: initial;
    box-shadow: 0 0.8vw 1.0666666667vw rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 768px) {
  .l-header.is-tracking .l-header__logo {
    display: block;
  }
}
.l-header.is-tracking .l-header-nav {
  display: block;
}
@media (max-width: 768px) {
  .l-header.is-tracking .l-header-nav {
    display: none;
  }
}
.l-header.is-tracking .l-header-nav .is-tracking {
  padding: 10px 0;
}
@media (max-width: 768px) {
  .l-header.is-tracking .l-header-nav .is-tracking {
    padding: 2.6666666667vw 0;
  }
}
@media (max-width: 768px) {
  .l-header.is-tracking .l-header-nav .is-tracking .l-header-nav__link {
    display: none;
  }
}
.l-header.is-tracking .l-header-nav.is-open {
  display: block;
}

.l-footer {
  position: relative;
  z-index: 1;
  background: #fff;
}

.l-footer-cr {
  padding: 0;
}
.l-footer-cr .l-footer__logo {
  display: flex;
  justify-content: center;
}
.l-footer-cr img {
  width: 132px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-footer-cr img {
    width: 35.2vw;
  }
}

/****************************

common

****************************/
.c-header--lv2 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 37px;
  gap: 8px;
}
@media (max-width: 768px) {
  .c-header--lv2 {
    padding-top: 9.8666666667vw;
    gap: 2.1333333333vw;
  }
}
.c-header--lv2::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 168px;
  height: 29px;
  content: "";
  transform: translateX(-50%);
  background: url(../img/ico_header01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-header--lv2::before {
    width: 44.8vw;
    height: 7.7333333333vw;
  }
}
.c-header--lv2 p {
  font-family: "Times New Roman", "Cinzel", serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: #13240d;
}
@media (max-width: 768px) {
  .c-header--lv2 p {
    font-size: 12.8vw;
  }
}
.c-header--lv2 h2 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #13240d;
}
@media (max-width: 768px) {
  .c-header--lv2 h2 {
    font-size: 4.2666666667vw;
  }
}
.c-header--lv2 + * {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-header--lv2 + * {
    margin-top: 10.6666666667vw;
  }
}

.c-btn-wrapper {
  display: flex;
  justify-content: center;
}

.c-btn {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  display: block;
  width: 335px;
  margin-right: auto;
  margin-left: auto;
  padding: 19px 10px 21px;
  transition: box-shadow 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 1000px;
  background: linear-gradient(to bottom, #8e1d1d 0%, #4b0c0b 100%);
  box-shadow: 0 0 10px rgba(19, 36, 13, 0.25);
}
@media (max-width: 768px) {
  .c-btn {
    font-size: 4.2666666667vw;
    width: 89.3333333333vw;
    padding: 5.0666666667vw 2.6666666667vw 5.6vw;
    border-radius: 266.6666666667vw;
    box-shadow: 0 0 2.6666666667vw rgba(19, 36, 13, 0.25);
  }
}
.c-btn::before {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 9px;
  height: 19px;
  content: "";
  transition: opacity 0.3s;
  transform: translateY(-50%);
  opacity: 1;
  background: url(../img/ico_triangle02.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-btn::before {
    right: 10.6666666667vw;
    width: 2.4vw;
    height: 5.0666666667vw;
  }
}
.c-btn::after {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 9px;
  height: 19px;
  content: "";
  transition: opacity 0.3s;
  transform: translateY(-50%);
  opacity: 0;
  background: url(../img/ico_triangle03.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-btn::after {
    right: 10.6666666667vw;
    width: 2.4vw;
    height: 5.0666666667vw;
  }
}
.c-btn:hover {
  color: #8e1d1d;
  border: 1px solid #8e1d1d;
  background: #ffffff;
  box-shadow: 0 0 0 rgba(19, 36, 13, 0.2);
}
.c-btn:hover::before {
  opacity: 0;
}
.c-btn:hover::after {
  opacity: 1;
}
.c-btn--16 {
  font-size: 16px;
}
@media (max-width: 768px) {
  .c-btn--16 {
    font-size: 4.2666666667vw;
  }
}
.c-btn--20 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .c-btn--20 {
    font-size: 5.3333333333vw;
  }
}
.c-btn .smaller {
  font-size: 16px;
}
@media (max-width: 768px) {
  .c-btn .smaller {
    font-size: 4.2666666667vw;
  }
}

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

.l-body-inner {
  position: relative;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: center;
  min-width: 1116px;
  height: 100vh;
}
@media (max-width: 768px) {
  .l-body-inner {
    display: block;
    overflow: visible;
    width: 100%;
    min-width: auto;
    height: auto;
  }
}

.c-sec-contents-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .c-sec-contents-wrapper {
    gap: 10.6666666667vw;
  }
}

/* ======================================
PC Parts
====================================== */
.l-center {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 375px;
}
@media (max-width: 768px) {
  .l-center {
    overflow-x: initial;
    overflow-y: visible;
    width: 100%;
  }
}

.l-left,
.l-right {
  position: sticky;
  top: 0;
  left: 0;
  width: calc((100% - 375px) / 2);
  height: 100vh;
}
@media (max-width: 768px) {
  .l-left,
  .l-right {
    display: none;
  }
}

.l-right {
  right: 0;
  left: initial;
}

.l-pc-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/bg_kv01.png) center center/cover no-repeat;
}
.l-pc-inner::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.88;
  background-color: rgba(19, 36, 13, 0.1);
}

.l-left .l-pc-inner {
  display: flex;
  align-items: center;
}

.l-right .l-pc-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.p-pc-nav {
  position: relative;
  width: 100%;
  max-width: 295px;
}
.p-pc-nav::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 311px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
  background: url(../img/img_header02.png) center center/contain no-repeat;
}

.p-pc-nav__list {
  display: flex;
  flex-direction: column;
}

.p-pc-nav__item {
  border-bottom: 1px solid rgba(19, 36, 13, 0.4);
}
.p-pc-nav__item a {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.16;
  position: relative;
  display: block;
  padding: 24px 8px;
  text-decoration: none;
  color: #13240d;
}
.p-pc-nav__item a::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: auto;
  content: "";
  transform: translateY(-50%);
  background: url(../img/ico_triangle01.svg) center center/contain no-repeat;
  aspect-ratio: 1.7777777778;
}

.p-pc-cta {
  margin-top: 60px;
}

/* ======================================
KV
====================================== */
.p-kv__inner {
  position: relative;
}

.p-kv__img img {
  width: 100%;
}

.p-kv__btn {
  position: absolute;
  bottom: 8px;
  left: 50%;
  padding-right: 15px;
  padding-left: 0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-kv__btn {
    bottom: 2.1333333333vw;
    padding-right: 4vw;
  }
}
.p-kv__btn::before, .p-kv__btn::after {
  right: 23px;
}
@media (max-width: 768px) {
  .p-kv__btn::before, .p-kv__btn::after {
    right: 6.1333333333vw;
  }
}

/* ======================================
about｜キャンペーン概要
====================================== */
.p-about {
  position: relative;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-about {
    padding: 10.6666666667vw 0;
  }
}
.p-about::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: url(../img/bg_about01.png) top center/cover no-repeat;
}
.p-about .l-container {
  padding: 0;
}

.p-about__content {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-about__content {
    margin-top: 4.8vw;
    gap: 6.4vw;
  }
}

@media (max-width: 768px) {
  .p-about__item01 {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .p-about__item02 {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .p-about__item03 {
    margin-top: 0;
  }
}
.p-about__item03 img {
  width: 80%;
  margin: 0 auto;
}

.p-about__img {
  width: 100%;
}

.p-slider {
  background: #f5f3f2;
}

.p-slider__item {
  width: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  .p-slider__item {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
  }
}

.p-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ======================================
present｜特典紹介
====================================== */
.p-present {
  padding-top: 40px;
  background: #153a2e;
}
@media (max-width: 768px) {
  .p-present {
    padding-top: 10.6666666667vw;
  }
}
.p-present .c-header--lv2 p,
.p-present .c-header--lv2 h2 {
  color: #ffffff;
}

.p-present__block02 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-present__block02 {
    gap: 10.6666666667vw;
  }
}

.p-present__block03,
.c-set {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (max-width: 768px) {
  .p-present__block03,
  .c-set {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
  }
}
.p-present__block03 .c-btn,
.c-set .c-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-present__block03 .c-btn,
  .c-set .c-btn {
    bottom: 10.6666666667vw;
  }
}

.p-present__img {
  display: block;
  width: 100%;
}
/* ======================================
product｜対象商品
====================================== */
.p-product {
  padding-top: 40px;
  background: #13240d;
}
@media (max-width: 768px) {
  .p-product {
    padding-top: 10.6666666667vw;
  }
}
.p-product .c-header--lv2 p,
.p-product .c-header--lv2 h2 {
  color: #ffffff;
}

.p-product__block04 .p-product__img {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .p-product__block04 .p-product__img {
    margin-top: 6.4vw;
  }
}

.p-product__inner {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 16px 0 24px;
}
@media (max-width: 768px) {
  .p-product__inner {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
    padding: 4.2666666667vw 0 6.4vw;
  }
}
.p-product__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 40px);
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background: #ffffff;
}
@media (max-width: 768px) {
  .p-product__inner::before {
    width: calc(100% - 10.6666666667vw);
  }
}

.p-product__block06 {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (max-width: 768px) {
  .p-product__block06 {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
  }
}

.p-product__block06-item02 {
  position: relative;
}
.p-product__block06-item02 .c-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-product__block06-item02 .c-btn {
    bottom: 10.6666666667vw;
  }
}

.p-product__title {
  position: relative;
  z-index: 1;
}
.p-product__title img {
  width: 46.9333333333%;
  margin: 0 auto;
}

/* slider */
.p-product-slider {
  position: relative;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .p-product-slider {
    margin-top: 4.2666666667vw;
  }
}

.p-product-slider--02 .p-product-slider__next {
  right: -10px;
}
@media (max-width: 768px) {
  .p-product-slider--02 .p-product-slider__next {
    right: -2.6666666667vw;
  }
}
.p-product-slider--02 .p-product-slider__prev {
  left: -10px;
}
@media (max-width: 768px) {
  .p-product-slider--02 .p-product-slider__prev {
    left: -2.6666666667vw;
  }
}

.p-product-slider__item {
  width: 192px;
}
@media (max-width: 768px) {
  .p-product-slider__item {
    width: 51.2vw;
  }
}

.p-product-slider__prev {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 10px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%) rotate(-180deg);
  border: 0;
  background: url(../img/ico_slider_arrow01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-product-slider__prev {
    left: 2.6666666667vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.p-product-slider__prev:hover {
  cursor: pointer;
}

.p-product-slider__next {
  position: absolute;
  z-index: 9;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 0;
  background: url(../img/ico_slider_arrow01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-product-slider__next {
    right: 2.6666666667vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.p-product-slider__next:hover {
  cursor: pointer;
}

.p-product-slider__pagination {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 12px;
}
@media (max-width: 768px) {
  .p-product-slider__pagination {
    margin-top: 3.2vw;
    gap: 3.2vw;
  }
}
.p-product-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  background: #ffffff;
}
@media (max-width: 768px) {
  .p-product-slider__pagination .swiper-pagination-bullet {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-product-slider__pagination .swiper-pagination-bullet-active {
  background: #ab9044;
}

/* ======================================
how to｜特典受け取りまでの流れ
====================================== */
.p-howto {
  background: #f6f5ee;
}
.p-howto__block01 {
  position: relative;
  z-index: 1;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-howto__block01 {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
    padding: 10.6666666667vw 0;
  }
}
.p-howto__block01::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.6;
  background: url(../img/bg_howto01.png) top center/cover no-repeat;
}
.p-howto__block01 .p-howto__item01 {
  width: 80%;
  margin: 0 auto;
}
.p-howto__block01 .p-howto__item02 {
  position: relative;
  width: 89.3333333333%;
  margin: 0 auto 0;
}
.p-howto__block01 .p-howto__item02 .c-btn {
  position: absolute;
  bottom: 326px;
  left: 50%;
  width: 295px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-howto__block01 .p-howto__item02 .c-btn {
    bottom: 86.9333333333vw;
    width: 78.6666666667vw;
  }
}

.p-howto__block02 {
  display: flex;
  flex-direction: column;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 40px 20px;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-howto__block02 {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
    padding: 10.6666666667vw 5.3333333333vw;
    gap: 10.6666666667vw;
  }
}

.p-howto__block03 {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (max-width: 768px) {
  .p-howto__block03 {
    width: calc(100% + 10.6666666667vw);
    margin-left: -5.3333333333vw;
  }
}
.p-howto__block03 .p-howto__sns {
  position: absolute;
  right: 37px;
  bottom: 175px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-howto__block03 .p-howto__sns {
    right: 9.8666666667vw;
    bottom: 47.7333333333vw;
    gap: 2.6666666667vw;
  }
}
.p-howto__block03 .p-howto__sns a {
  display: block;
  width: 24px;
}
@media (max-width: 768px) {
  .p-howto__block03 .p-howto__sns a {
    width: 6.4vw;
  }
}

/* ======================================
attention｜注意事項
====================================== */
.p-attention {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-attention {
    padding: 10.6666666667vw 0;
  }
}

.c-attention__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 12px;
}
@media (max-width: 768px) {
  .c-attention__wrapper {
    margin-top: 6.4vw;
    gap: 3.2vw;
  }
}

.c-attention dt {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4444444444;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 19px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-attention dt {
    font-size: 4.2666666667vw;
    padding: 3.4666666667vw 5.0666666667vw;
  }
}
.c-attention dt::before, .c-attention dt::after {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 13px;
  height: 2px;
  content: "";
  transition: transform 0.3s;
  transform: translateY(-50%);
  background-color: #ab9044;
}
@media (max-width: 768px) {
  .c-attention dt::before, .c-attention dt::after {
    right: 6.6666666667vw;
    width: 3.4666666667vw;
    height: 0.5333333333vw;
  }
}
.c-attention dt::after {
  transform: translateY(-50%) rotate(90deg);
}
.c-attention dt.is-active::after {
  transform: translateY(-50%) rotate(0deg);
}
@media (max-width: 768px) {
  .c-attention dt img {
    width: auto;
    height: 3.4666666667vw;
  }
}
.c-attention dt:hover {
  cursor: pointer;
}
.c-attention dd {
  position: relative;
  margin-top: 11px;
  padding: 24px 19px 13px;
}
@media (max-width: 768px) {
  .c-attention dd {
    margin-top: 2.9333333333vw;
    padding: 6.4vw 5.0666666667vw 3.4666666667vw;
  }
}
.c-attention dd::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 40px);
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: #ab9044;
}
@media (max-width: 768px) {
  .c-attention dd::before {
    width: calc(100% - 10.6666666667vw);
    height: 0.2666666667vw;
  }
}
.c-attention a {
  text-decoration: none;
  color: #13240d;
}
.c-attention a:hover {
  text-decoration: underline;
}

.c-attention-inner {
  border: 1px solid #ab9044;
  box-shadow: 2px 3px 8px rgba(19, 36, 13, 0.12);
}
@media (max-width: 768px) {
  .c-attention-inner {
    border-width: 0.2666666667vw;
    box-shadow: 0.5333333333vw 0.8vw 2.1333333333vw rgba(19, 36, 13, 0.12);
  }
}

.c-attention__header {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-attention__header {
    font-size: 4.2666666667vw;
  }
}

.c-attention__desc {
  font-size: 13px;
  line-height: 1.3;
  margin-top: 8px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .c-attention__desc {
    font-size: 3.4666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.c-attention__desc p {
  display: block;
}
.c-attention__desc p + p {
  margin-top: 16.9px;
}
@media (max-width: 768px) {
  .c-attention__desc p + p {
    margin-top: calc(3.4666666667vw * 1.3);
  }
}
.c-attention__desc + .c-attention__header {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .c-attention__desc + .c-attention__header {
    margin-top: 4.2666666667vw;
  }
}

/* ======================================
contact｜お問い合わせ
====================================== */
.p-contact__contents {
  padding: 40px 0;
  background: #13240d;
}
@media (max-width: 768px) {
  .p-contact__contents {
    padding: 10.6666666667vw 0;
  }
}
.p-contact__contents .c-header--lv2 p,
.p-contact__contents .c-header--lv2 h2 {
  color: #ffffff;
}

.p-contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 24px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-contact-inner {
    margin-top: 6.4vw;
    padding: 10.6666666667vw 0;
  }
}
.p-contact-inner::before, .p-contact-inner::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 295px;
  height: auto;
  content: "";
  transform: translateX(-50%);
  background: url(../img/bg_contact01.png) center center/contain no-repeat;
  aspect-ratio: 17.3529411765;
}
@media (max-width: 768px) {
  .p-contact-inner::before, .p-contact-inner::after {
    width: 78.6666666667vw;
  }
}
.p-contact-inner::after {
  top: initial;
  bottom: 0;
  transform: translateX(-50%);
}
.p-contact-inner a {
  text-decoration: none;
  color: #ffffff;
}
.p-contact-inner a:hover {
  text-decoration: underline;
}
.p-contact-inner .c-btn {
  color: #ffffff;
}

.p-contact-copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-contact-copy {
    font-size: 4.8vw;
  }
}

.p-contact-note {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5714285714;
  width: 100%;
  max-width: 614px;
  margin-top: 30px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-contact-note {
    font-size: 3.7333333333vw;
    max-width: 163.7333333333vw;
    margin-top: 8vw;
  }
}

.p-contact-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-contact-list {
    margin-top: 6.4vw;
    gap: 6.4vw;
  }
}
.p-contact-list .inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .p-contact-list .inner {
    gap: 2.1333333333vw;
  }
}
.p-contact-list dd,
.p-contact-list dt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-contact-list dd,
  .p-contact-list dt {
    font-size: 4.8vw;
  }
}
.p-contact-list dd {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-contact-list dd {
    width: auto;
  }
}
.p-contact-list dd .smaller {
  font-size: 8px;
  display: block;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .p-contact-list dd .smaller {
    font-size: 2.1333333333vw;
    margin-top: 1.0666666667vw;
  }
}
.p-contact-list dd .column {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.p-contact-list dt {
  font-size: 14px;
  position: relative;
  color: #d4bf61;
}
@media (max-width: 768px) {
  .p-contact-list dt {
    font-size: 3.7333333333vw;
  }
}

.c-btn--tracking {
  position: sticky;
  display: none;
  opacity: 0;
  bottom: 10px;
  left: 0;
  pointer-events: none;
  z-index: 98;
}
@media (max-width: 768px) {
  .c-btn--tracking {
    display: block;
  }
}
.c-btn--tracking.is-active {
  opacity: 1;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */