@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #1F1F1F;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.l-bg {
  background-image: url(../images/top/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-bg {
    background-image: url(../images/top/bg-sp.jpg);
  }
}

.l-footer {
  margin-top: 8.125rem;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 2.8125rem;
    margin-bottom: 1rem;
  }
}

.l-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 40rem;
    padding: 0 15px;
  }
}

.l-newyear {
  margin-top: 24.375rem;
}
@media screen and (max-width: 767px) {
  .l-newyear {
    margin-top: 13.4375rem;
  }
}
@media screen and (max-width: 399px) {
  .l-newyear {
    margin-top: 4.625rem;
  }
}
@media screen and (max-width: 374px) {
  .l-newyear {
    margin-top: 5.9375rem;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  max-width: 22.625rem;
  width: 100%;
  padding: 1.625rem 1.25rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #091631;
  background: linear-gradient(180deg, #B2833D, #FFF2B1 40%, #B2833D);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.25rem;
    padding: 1.40625rem 1.25rem;
  }
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 2.5px;
  bottom: 2.5px;
  left: 2.5px;
  right: 2.5px;
  border: 1px solid #081C45;
  border-radius: 4px;
}

.c-btn::after {
  position: absolute;
  pointer-events: none;
  content: "";
  width: 5.0625rem;
  height: 1px;
  background-color: #081C45;
  top: 50%;
  right: 2.5px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn::after {
    width: 4.0625rem;
  }
}

.c-btn.c-btn--red {
  background: linear-gradient(180deg, #680000, #E50012 40%, #680000);
  color: #fff;
}

.c-btn.c-btn--red::before {
  border: 1px solid #fff;
}

.c-btn.c-btn--red::after {
  background-color: #fff;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-countdown-list__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__item {
    flex-direction: column;
    padding: 0 0.3125rem;
  }
}

.p-countdown-list__item:not(:first-of-type) {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__item:not(:first-of-type) {
    margin-top: 2.8125rem;
  }
}

.p-countdown-list__item.p-countdown-list__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__item.p-countdown-list__item--reverse {
    flex-direction: column;
  }
}

.p-countdown-list__img {
  position: relative;
  z-index: 1;
  width: 48.4167%;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__img {
    width: 100%;
  }
}

.p-countdown-list__img img {
  width: 100%;
  aspect-ratio: 581/400;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0.1875rem 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 767px) {
  .p-countdown-list__img img {
    aspect-ratio: 335/231;
  }
}

.p-countdown-list__img p {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__img p {
    margin-top: 0.25rem;
    font-size: 0.625rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-countdown-list__body {
  position: relative;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body {
    margin-top: -0.625rem;
    width: 100%;
  }
}

.p-countdown-list__body::before {
  position: absolute;
  content: "";
  top: -12.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/top/countdown-list-bg.png);
  width: 64.0625rem;
  height: 64.0625rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body::before {
    top: -12rem;
    background-image: url(../images/top/countdown-list-bg-sp.png);
    background-position: center;
    width: 48.8125rem;
    height: 48.8125rem;
  }
}

.p-countdown-list__body-flex {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-flex {
    padding: 0 0.625rem;
  }
}

.p-countdown-list__body-title span {
  display: block;
  margin-bottom: 0.4375rem;
  font-family: "Unna", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1333333333;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-title span {
    margin-bottom: 0.5rem;
    font-size: 1.1875rem;
    line-height: 1.1578947368;
  }
}

@media screen and (max-width: 767px) {
  .p-countdown-list__body-title img {
    width: 14.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-countdown-list__item:nth-of-type(2) .p-countdown-list__body-title img {
    width: 9rem;
  }
}

.p-countdown-list__body-tag {
  width: 9.25rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-tag {
    width: 5.375rem;
  }
}

.p-countdown-list__body-tag img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-countdown-list__body-img {
  position: relative;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-img {
    margin-top: 0.6875rem;
  }
}

.p-countdown-list__body-price {
  position: relative;
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-price {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.p-countdown-list__body-price img {
  width: 6.5rem;
}

.p-countdown-list__body-price p {
  font-weight: 700;
  font-size: 3.5625rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-price p {
    font-size: 2.5rem;
  }
}

.p-countdown-list__body-price p span {
  display: inline-block;
  margin-left: 0.625rem;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-price p span {
    margin-left: 0.125rem;
    font-size: 1.25rem;
  }
}

.p-countdown-list__body-text-group {
  position: relative;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-group {
    margin-top: 0.9375rem;
    padding-left: 0.75rem;
  }
}

.p-countdown-list__body-text {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.09375rem;
       column-gap: 1.09375rem;
  font-weight: 700;
  font-size: 1.3125rem;
  color: #fff;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text {
    -moz-column-gap: 0.46875rem;
         column-gap: 0.46875rem;
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.p-countdown-list__body-text:not(:first-of-type) {
  margin-top: 0.9375rem;
}

.p-countdown-list__body-text-left {
  width: 14.97%;
  text-align: right;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-left {
    width: 21%;
  }
}
@media screen and (max-width: 374px) {
  .p-countdown-list__body-text-left {
    width: 21.2%;
  }
}

.p-countdown-list__body-text-right {
  position: relative;
  padding-left: 1.09375rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-right {
    padding-left: 0.46875rem;
  }
}

.p-countdown-list__body-text-right::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.5rem;
  background-color: #fff;
  top: 0.1875rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-right::before {
    height: 1rem;
    top: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-right .mt {
    display: block;
    margin-top: 0.75rem;
  }
}

.p-countdown-list__body-text-right .small {
  margin-top: 0.1875rem;
  display: inline-block;
  font-size: 1.125rem;
  text-indent: -1.0625rem;
  padding-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-text-right .small {
    margin-top: 0.0625rem;
    font-size: 0.875rem;
    text-indent: -1rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 374px) {
  .p-countdown-list__body-text-right .small {
    font-size: 0.8125rem;
  }
}

.p-countdown-list__body-btn {
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-countdown-list__body-btn {
    margin-top: 2.0625rem;
  }
}

.p-countdown {
  margin-top: 13.4375rem;
}
@media screen and (max-width: 767px) {
  .p-countdown {
    margin-top: 5.3125rem;
  }
}

.p-countdown__title-wrap {
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-countdown__title-wrap {
    padding: 0;
  }
}

.p-countdown__list {
  margin-top: 7.625rem;
}
@media screen and (max-width: 767px) {
  .p-countdown__list {
    margin-top: 2.5rem;
  }
}

.p-footer {
  text-align: center;
}

.p-footer__copyright {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0;
  color: #381A00;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.p-fv {
  padding-top: 5.625rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-fv__img {
  max-width: 63.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    padding: 0 0.3125rem;
  }
}

.p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-fv__btn-wrap {
  margin-top: -9.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__btn-wrap {
    margin-top: -5.3125rem;
    flex-direction: column;
    row-gap: 0.9375rem;
    text-align: center;
  }
}

.p-fv__btn {
  width: 45.83333333%;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    width: 100%;
  }
}

.p-link {
  position: relative;
  display: inline-block;
  max-width: 34.375rem;
  width: 100%;
  padding: 1.75rem 1.25rem;
  font-weight: 700;
  color: #1F1F1F;
  background: linear-gradient(180deg, #B2833D, #FFF2B1 40%, #B2833D);
  border-radius: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-link {
    padding: 0.6875rem 0.625rem;
  }
}

.p-link::before {
  content: "";
  position: absolute;
  top: 6.5px;
  bottom: 6.5px;
  left: 6.5px;
  right: 6.5px;
  border: 1px solid #1F1F1F;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-link::before {
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
  }
}

.p-link::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 6.5px;
  background-color: #1F1F1F;
  bottom: -3.25px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-link::after {
    display: none;
  }
}

.p-link__title {
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-link__title {
    font-size: 1.0625rem;
  }
}

.p-link__flex {
  position: relative;
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-link__flex {
    margin-top: 0.5rem;
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
  }
}

.p-link__date {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-link__date {
    -moz-column-gap: 0.4375rem;
         column-gap: 0.4375rem;
  }
}

.p-link__date-01 {
  padding: 0.1875rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid #1F1F1F;
}
@media screen and (max-width: 767px) {
  .p-link__date-01 {
    font-size: 0.625rem;
  }
}

.p-link__date-02 {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-link__date-02 {
    font-size: 0.875rem;
  }
}

.p-link__date-02 span {
  display: inline-block;
  margin-left: 0.375rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-link__date-02 span {
    margin-left: 0.25rem;
    font-size: 0.625rem;
  }
}

.p-link__border {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #fff;
  bottom: -2.78125rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-link__border::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 7px;
  background-color: #fff;
  bottom: -2px;
  left: 2px;
  transform: rotate(45deg);
}

.p-link.p-link--red {
  background: linear-gradient(180deg, #680000, #E50012 40%, #680000);
  color: #fff;
}

.p-link.p-link--red::before {
  border: 1px solid #fff;
}

.p-link.p-link--red::after {
  background-color: #fff;
}

.p-link__flex.p-link__flex--gap {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.p-link__date-01.p-link__date-01--white {
  border: 1px solid #fff;
}

.p-newyear-list__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2.6875rem;
       column-gap: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item {
    flex-direction: column;
    padding: 0 0.3125rem;
  }
}

.p-newyear-list__item:not(:first-of-type) {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item:not(:first-of-type) {
    margin-top: 2.8125rem;
  }
}

.p-newyear-list__item.p-newyear-list__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item.p-newyear-list__item--reverse {
    flex-direction: column;
  }
}

.p-newyear-list__item-img {
  position: relative;
  padding-top: 2.5rem;
  width: 48.4167%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-img {
    padding: 0;
    width: 100%;
  }
}

.p-newyear-list__item-img.p-newyear-list__item-img--small {
  width: 43.9166667%;
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-img.p-newyear-list__item-img--small {
    padding: 0;
    width: 100%;
  }
}

.p-newyear-list__item-img img {
  width: 100%;
  aspect-ratio: 581/400;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0.1875rem 0.1875rem 0.375rem 0 rgba(56, 26, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-img img {
    aspect-ratio: 335/230;
  }
}

.p-newyear-list__item-img.p-newyear-list__item-img--small img {
  aspect-ratio: 527/362;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-img.p-newyear-list__item-img--small img {
    aspect-ratio: 335/230;
  }
}

.p-newyear-list__item-img p {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: #381A00;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-img p {
    margin-top: 0.25rem;
    font-size: 0.625rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-newyear-list__item-body {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body {
    margin-top: 1.6875rem;
    width: 100%;
  }
}

.p-newyear-list__item-body.p-newyear-list__item-body--mt {
  width: 51.25%;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body.p-newyear-list__item-body--mt {
    margin-top: 0.8125rem;
    width: 100%;
  }
}

.p-newyear-list__item-body::before {
  position: absolute;
  content: "";
  top: -12.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/top/newyear-list-bg.png);
  width: 64.0625rem;
  height: 64.0625rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body::before {
    top: -12rem;
    background-image: url(../images/top/newyear-list-bg-sp.png);
    background-position: center;
    width: 48.8125rem;
    height: 48.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-newyear-list__item-body.p-newyear-list__item-body--mt::before {
    top: -10rem;
    background-image: url(../images/top/newyear-list-bg-sp02.png);
    background-position: center;
    width: 70.4375rem;
    height: 70.5rem;
  }
}

.p-newyear-list__item-body-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title {
    gap: 0.5rem;
  }
}

.p-newyear-list__item-body-title.p-newyear-list__item-body-title--left {
  justify-content: left;
  padding-left: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title.p-newyear-list__item-body-title--left {
    justify-content: center;
    padding: 0;
  }
}

.p-newyear-list__item-body-title-img {
  width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-img {
    width: 4.6875rem;
  }
}

.p-newyear-list__item-body-title-wrap p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0;
  max-width: 16.625rem;
  width: 100%;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background-color: #381A00;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-wrap p {
    max-width: 10.5625rem;
    font-size: 0.6875rem;
  }
}

.p-newyear-list__item-body-title-wrap p span {
  display: inline-block;
  margin-left: 1.5625rem;
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-wrap p span {
    margin-left: 0.8125rem;
    font-size: 1.0625rem;
  }
}

.p-newyear-list__item-body-title-wrap h2 {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-wrap h2 {
    margin-top: 0.25rem;
  }
}

.p-newyear-list__item-body-title-wrap h2 span {
  display: block;
  margin-bottom: 0.8125rem;
  font-family: "Unna", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1333333333;
  letter-spacing: 0.05em;
  color: #381A00;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-wrap h2 span {
    margin-bottom: 0.25rem;
    font-size: 1.1875rem;
    line-height: 1.1578947368;
  }
}

.p-newyear-list__item-body-title-wrap h2 img {
  width: 23.125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-wrap h2 img {
    width: 14.75rem;
  }
}

.p-newyear-list__item-body-title-tag {
  position: absolute;
  z-index: 2;
  top: -5.75rem;
  right: 0;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-title-tag {
    top: -4.0625rem;
    right: -0.3125rem;
    width: 7.8125rem;
  }
}

.p-newyear-list__item-body-title-tag.p-newyear-list__item-body-title-tag--position {
  top: -3.4375rem;
}

.p-newyear-list__item-body-img {
  position: relative;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-img {
    margin-top: 0.125rem;
    padding: 0 0.3125rem;
  }
}

.p-newyear-list__item-body-img.p-newyear-list__item-body-img--small {
  width: 86.6666%;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-img.p-newyear-list__item-body-img--small {
    width: 100%;
  }
}

.p-newyear-list__item-body-priceFlex {
  margin-top: 1.4375rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4375rem;
}
@media screen and (max-width: 1199px) {
  .p-newyear-list__item-body-priceFlex {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-priceFlex {
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 2.6875rem;
  }
}

.p-newyear-list__item-body-priceWrap {
  position: relative;
}

.p-newyear-list__item-body-price-img {
  width: 113.5%;
  margin-left: -2.1875rem;
}
@media screen and (max-width: 1199px) {
  .p-newyear-list__item-body-price-img {
    width: 100%;
    margin-left: 0;
  }
}

.p-newyear-list__item-body-price-tag {
  position: absolute;
  top: -3.75rem;
  right: -2.1875rem;
  width: 6.3125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-tag {
    top: -2.5rem;
    right: -0.3125rem;
    width: 5.25rem;
  }
}

.p-newyear-list__item-body-price {
  position: relative;
  margin-top: 1.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.96875rem;
       column-gap: 0.96875rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price {
    margin-top: 0.5625rem;
    -moz-column-gap: 1.0625rem;
         column-gap: 1.0625rem;
  }
}

.p-newyear-list__item-body-price--small {
  margin-top: 1.5625rem;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price--small {
    margin-top: 0.84375rem;
    -moz-column-gap: 1.0625rem;
         column-gap: 1.0625rem;
  }
}

.p-newyear-list__item-body-price img {
  width: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price img {
    width: 2.1875rem;
  }
}

.p-newyear-list__item-body-price--small img {
  width: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price--small img {
    width: 2.1875rem;
  }
}

.p-newyear-list__item-body-price-p p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: #381A00;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-p p {
    font-size: 2.5rem;
  }
}

.p-newyear-list__item-body-price-p p:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-p p:not(:first-of-type) {
    margin-top: 0.625rem;
  }
}

.p-newyear-list__item-body-price--small p {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price--small p {
    font-size: 2.5rem;
  }
}

.p-newyear-list__item-body-price-p p .mid {
  display: inline-block;
  padding-top: 1.125rem;
  margin-left: 0.625rem;
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-p p .mid {
    padding-top: 0.75rem;
    margin-left: 0.125rem;
    font-size: 1.25rem;
  }
}

.p-newyear-list__item-body-price--small p .mid {
  font-size: 1.125rem;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price--small p .mid {
    font-size: 1.25rem;
  }
}

.p-newyear-list__item-body-price-p p .small {
  display: inline-block;
  margin-right: 0.9375rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-p p .small {
    margin-right: 0.6875rem;
    font-size: 0.9375rem;
  }
}

.p-newyear-list__item-body-price--small p .small {
  font-size: 0.9375rem;
  margin-right: 0.6875rem;
}

.p-newyear-list__item-body-price-p p:nth-child(2) .small {
  margin-right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-price-p p:nth-child(2) .small {
    margin-right: 2.1875rem;
  }
}

.p-newyear-list__item-body-price--small p:nth-child(2) .small {
  margin-right: 0.6875rem;
}

.p-newyear-list__item-body-text-group {
  position: relative;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-group {
    margin-top: 1.25rem;
    padding-left: 0.75rem;
  }
}

.p-newyear-list__item-body-text {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.09375rem;
       column-gap: 1.09375rem;
  font-weight: 700;
  font-size: 1.3125rem;
  color: #381A00;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text {
    -moz-column-gap: 0.46875rem;
         column-gap: 0.46875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-newyear-list__item-body-text:not(:first-of-type) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text:not(:first-of-type) {
    margin-top: 0.6875rem;
  }
}

.p-newyear-list__item-body-text-left {
  width: 14.97%;
  text-align: right;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-left {
    width: 21%;
  }
}
@media screen and (max-width: 374px) {
  .p-newyear-list__item-body-text-left {
    width: 21.2%;
  }
}

.p-newyear-list__item-body-text-right {
  position: relative;
  padding-left: 1.09375rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right {
    padding-left: 0.46875rem;
  }
}

.p-newyear-list__item-body-text-right::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.5rem;
  background-color: #381A00;
  top: 0.1875rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right::before {
    height: 1rem;
    top: 0.25rem;
  }
}

.p-newyear-list__item-body-text-right01 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 8.625rem;
  width: 100%;
  padding: 0.15625rem 0;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background-color: #C40307;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right01 {
    max-width: 7.4375rem;
    font-size: 0.875rem;
  }
}

.p-newyear-list__item-body-text-right01 span {
  margin: 0 0.0625rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right01 span {
    margin: 0 0.125rem;
    font-size: 1.0625rem;
  }
}

.p-newyear-list__item-body-text-right02 {
  margin-top: 0.25rem;
}

.p-newyear-list__item-body-text-right02 span {
  margin: 0 0.78125rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right02 span {
    margin-left: 0;
    margin-right: 0.25rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right03 .mt {
    display: block;
    margin-top: 0.75rem;
  }
}

.p-newyear-list__item-body-text-right03 .small {
  margin-top: 0.1875rem;
  display: inline-block;
  font-size: 1.125rem;
  text-indent: -1.0625rem;
  padding-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-text-right03 .small {
    margin-top: 0.0625rem;
    font-size: 0.875rem;
    text-indent: -1rem;
    padding-left: 0.875rem;
  }
}
@media screen and (max-width: 374px) {
  .p-newyear-list__item-body-text-right03 .small {
    font-size: 0.8125rem;
  }
}

.p-newyear-list__item-body-img02 {
  position: relative;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-img02 {
    margin-top: 1.625rem;
  }
}

.p-newyear-list__item-body-btn {
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-btn {
    margin-top: 1.875rem;
  }
}

.p-newyear-list__item-body-btn.p-newyear-list__item-body-btn--margin {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-newyear-list__item-body-btn.p-newyear-list__item-body-btn--margin {
    margin-top: 1.875rem;
  }
}

.p-newyear__title-wrap {
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-newyear__title-wrap {
    padding: 0;
  }
}

.p-newyear__list {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-newyear__list {
    margin-top: 2.5rem;
  }
}

.p-section-wrap__title {
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 1.4242424242;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 767px) {
  .p-section-wrap__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.p-section-wrap__title.p-section-wrap__title--color {
  color: #381A00;
  text-shadow: 0 0 10px #fff;
  line-height: 1.6060606061;
}

.p-section-wrap__img {
  margin-top: 0.8125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-section-wrap__img {
    margin-top: 0.875rem;
  }
}

.p-section-wrap__img.p-section-wrap__img--mt {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-section-wrap__img.p-section-wrap__img--mt {
    margin-top: 1.1875rem;
  }
}

.p-section-wrap__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-show {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
