@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: calc(1066px + 50px);
  font-family: "Zen Old Mincho", serif;
  background: #f6f5ef;
  color: #13240d;
}
@media (max-width: 768px) {
  body {
    min-width: auto;
  }
}
body * {
  -webkit-box-sizing: border-box;
          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;
}

.l-container {
  width: 100%;
  max-width: calc(1000px + 50px);
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 30px;
  }
}

.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: calc(22 / 12);
}

.l-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  min-width: calc(1066px + 50px);
  padding-right: 30px;
}
@media (max-width: 768px) {
  .l-header {
    opacity: 0;
    background-color: #fff;
    min-width: auto;
    padding-right: 15px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
  }
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-header-inner {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.l-header__logo {
  z-index: 99;
  display: block;
  padding: 22px 28px;
  border-radius: 0 0 20px 0;
  background-color: #fff;
  width: 191px;
}
@media (max-width: 768px) {
  .l-header__logo {
    width: auto;
    padding: 12px 12px;
  }
}
.l-header__logo img {
  width: 135px;
}
@media (max-width: 768px) {
  .l-header__logo img {
    width: calc(71 / 375 * 100vw);
  }
}

.l-header__btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .l-header__btn {
    display: block;
  }
}
.l-header__btn .l-header__btn-inner {
  position: relative;
  width: 26px;
  height: 12px;
}
.l-header__btn .l-header__btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 1px;
  background-color: #000;
}
.l-header__btn .l-header__btn-inner span:nth-child(1) {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__btn .l-header__btn-inner span:nth-child(2) {
  top: calc(12px / 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__btn .l-header__btn-inner span:nth-child(3) {
  top: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__btn.is-open .l-header__btn-inner span:nth-child(1) {
  top: calc(12px / 2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.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: calc(12px / 2);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

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

.l-header__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 150px 50px 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 768px) {
  .l-header__content-inner {
    padding: 113px 50px 0;
  }
}
.l-header__content-inner nav {
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__content-inner nav {
    width: 100%;
  }
}

/****************************
nav
****************************/
.l-header-nav {
  display: none;
  position: sticky;
  z-index: 99;
  top: 0;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
@media (max-width: 768px) {
  .l-header-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .l-header-nav.is-open {
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: #fff;
    padding: 80px 20px;
  }
}

.l-header-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Zen Old Mincho", serif;
  gap: 34px;
}
@media (max-width: 768px) {
  .l-header-nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .l-header-nav__nav {
    width: 100%;
  }
}
.l-header-nav__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .l-header-nav__nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-right: 0;
    gap: 4px 0;
  }
}
.l-header-nav__nav li {
  display: block;
}
@media (max-width: 768px) {
  .l-header-nav__nav li {
    width: 100%;
    border-left: 0;
  }
}
.l-header-nav__nav li:last-child a::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 4px;
  height: 42px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../assets/img/ico_header_line01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .l-header-nav__nav li:last-child a::after {
    left: 50%;
    bottom: calc(-21px);
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}
.l-header-nav__nav a {
  font-size: 16px;
  position: relative;
  display: block;
  padding: 9px 20px;
  text-align: center;
  text-decoration: none;
  color: #13240d;
  font-weight: 900;
}
@media (max-width: 768px) {
  .l-header-nav__nav a {
    font-size: 14px;
    padding: 20px;
  }
}
.l-header-nav__nav a::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 4px;
  height: 42px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../assets/img/ico_header_line01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .l-header-nav__nav a::before {
    left: 50%;
    top: calc(-21px);
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
  }
}

.l-header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-bottom: 1px;
}
@media (max-width: 768px) {
  .l-header-nav__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.l-header-nav__link a {
  font-size: 10px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  line-height: calc(15 / 10);
  text-decoration: none;
}
.l-header-nav__link img {
  width: 34px;
  height: 34px;
}

.l-header.is-tracking {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .l-header.is-tracking {
    opacity: 1;
    pointer-events: initial;
  }
}
@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 .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::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc((1497px - 1280px) / 2 * -1);
  width: calc(1497 / 1280 * 100%);
  height: 100%;
  content: "";
  opacity: 0.25;
  background: url(../../assets/img/bg_product01.webp) center center/cover repeat-y;
}
@media (max-width: 768px) {
  .l-footer::before {
    width: calc(860 / 375 * 100%);
    left: calc((860px - 375px) / 2 * -1);
  }
}

.l-footer-bg {
  position: relative;
}
.l-footer-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50px;
  background: url(../../assets/img/bg_footer01.webp) center center/contain repeat-x;
}
@media (max-width: 768px) {
  .l-footer-bg::before {
    height: 22px;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 74px;
  padding: 67px 0 36px;
}
@media (max-width: 768px) {
  .l-footer__inner {
    margin-top: 47px;
    padding: 35px 0 22px;
  }
}

.l-footer__logo {
  width: 110px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    width: 75px;
  }
}
.l-footer__logo img {
  width: 100%;
}

.l-footer__copyright {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    font-size: 10px;
  }
}

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

common

****************************/
.c-header--lv2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 45px;
}
@media (max-width: 768px) {
  .c-header--lv2 {
    padding-top: 39px;
  }
}
.c-header--lv2::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 162px;
  height: 35px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../assets/img/img_header01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-header--lv2::before {
    width: 161px;
    aspect-ratio: calc(161 / 35);
    height: auto;
  }
}
.c-header--lv2 p {
  font-family: "Cinzel", serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1.3454545455;
}
@media (max-width: 768px) {
  .c-header--lv2 p {
    font-size: 32px;
  }
}
.c-header--lv2 h2 {
  font-size: 15px;
  font-weight: bold;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-header--lv2 h2 {
    font-size: 12px;
  }
}

.c-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* aタグ：テキスト指定を入れる */
.c-btn {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.44;
  position: relative;
  display: block;
  width: 100%;
  max-width: 589px;
  padding: 7px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #ffffff;
  border: 2px solid #ac923d;
  border-radius: 1000px;
  background: -webkit-gradient(linear, left top, left bottom, from(#921e1e), to(#470b0b));
  background: linear-gradient(to bottom, #921e1e 0%, #470b0b 100%);
  -webkit-box-shadow: 0 10px 10px rgba(19, 36, 13, 0.2);
          box-shadow: 0 10px 10px rgba(19, 36, 13, 0.2);
}
@media (max-width: 768px) {
  .c-btn {
    font-size: 13px;
    padding: 5px;
    max-width: 275px;
  }
}
.c-btn:hover {
  -webkit-box-shadow: 0 0 0 rgba(19, 36, 13, 0.2);
          box-shadow: 0 0 0 rgba(19, 36, 13, 0.2);
}
.c-btn::before, .c-btn::after {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 66px;
  height: 112px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../assets/img/ico_btn01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .c-btn::before, .c-btn::after {
    width: 37px;
    height: 64px;
    left: -14px;
  }
}
.c-btn::after {
  right: -27px;
  left: initial;
  -webkit-transform: rotate(-180deg) translateY(50%);
          transform: rotate(-180deg) translateY(50%);
}
@media (max-width: 768px) {
  .c-btn::after {
    right: -14px;
  }
}

.c-btn-inner {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border: 1px solid #ac923d;
  border-radius: 1000px;
}
@media (max-width: 768px) {
  .c-btn-inner {
    padding: 6px;
  }
}

/* aタグ（modifier）：テキスト指定を入れる */
.c-btn--small {
  font-size: 16px;
  line-height: 1.5;
  max-width: 388px;
  padding: 4px;
}
@media (max-width: 768px) {
  .c-btn--small {
    font-size: 13px;
    max-width: 100%;
  }
}
.c-btn--small::before, .c-btn--small::after {
  width: 43px;
  height: 74px;
}
@media (max-width: 768px) {
  .c-btn--small::before, .c-btn--small::after {
    width: 38px;
    height: 66px;
  }
}
.c-btn--small .c-btn-inner {
  padding: 9px;
}

/* aタグ（modifier）：テキスト指定を入れる */
.c-btn--green {
  background: #13240d;
}
.c-note {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}
.p-tracking-cta {
  position: fixed;
  z-index: 98;
  right: -1px;
  bottom: 33px;
  width: calc(140 / 1280 * 100vw);
  max-width: 180px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  display: none;
  -webkit-filter: drop-shadow(0 12px 15px rgba(56, 53, 40, 0.4));
          filter: drop-shadow(0 12px 15px rgba(56, 53, 40, 0.4));
}
@media (max-width: 768px) {
  .p-tracking-cta {
    -webkit-filter: drop-shadow(0 -2px 10px rgba(56, 53, 40, 0.4));
            filter: drop-shadow(0 -2px 10px rgba(56, 53, 40, 0.4));
    width: 100%;
    bottom: 0px;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: none;
  }
}
.p-tracking-cta:hover {
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0px 0px rgba(56, 53, 40, 0.4));
          filter: drop-shadow(0 0px 0px rgba(56, 53, 40, 0.4));
}

.c-section-line {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  background: url(../../assets/img/ico_line01.svg) left center/contain repeat-x;
}

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

KV

****************************/
.p-kv {
  position: relative;
  z-index: 4;
}

.p-kv-scroll {
  position: absolute;
  left: calc(10px - (128px / 2));
  bottom: 15px;
  -webkit-transform: rotate(-90deg) translateX(50%) translateY(50%);
          transform: rotate(-90deg) translateX(50%) translateY(50%);
}
@media (max-width: 768px) {
  .p-kv-scroll {
    bottom: -74px;
  }
}
.p-kv-scroll p {
  position: relative;
  padding-right: 83px;
  font-size: 11px;
  line-height: calc(16 / 11);
  font-weight: bold;
  text-transform: uppercase;
}
.p-kv-scroll p::before, .p-kv-scroll p::after {
  position: absolute;
  content: "";
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-kv-scroll p::before {
  right: 0;
  width: 70px;
  background-color: #e8e4d9;
  z-index: 0;
}
.p-kv-scroll p::after {
  right: 0;
  width: 35px;
  background-color: #a59973;
  z-index: 1;
  -webkit-animation: lineScroll 1.5s ease-in-out infinite;
          animation: lineScroll 1.5s ease-in-out infinite;
}
@-webkit-keyframes lineScroll {
  0% {
    width: 35px;
  }
  70% {
    width: 70px;
  }
  71% {
    width: 35px;
    /* 一瞬でリセット */
  }
  100% {
    width: 35px;
  }
}
@keyframes lineScroll {
  0% {
    width: 35px;
  }
  70% {
    width: 70px;
  }
  71% {
    width: 35px;
    /* 一瞬でリセット */
  }
  100% {
    width: 35px;
  }
}

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

STORY

****************************/
.p-content01 {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  padding-bottom: 84px;
}
@media (max-width: 768px) {
  .p-content01 {
    margin-top: 31px;
    padding-bottom: 61px;
  }
}
.p-content01::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-height: 982px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.4;
  background: url(../../assets/img/bg_story01.webp) center center/cover no-repeat;
  aspect-ratio: calc(1280 / 982);
}
@media (max-width: 768px) {
  .p-content01::before {
    background: url(../../assets/img/bg_story01_sp.webp) center center/cover no-repeat;
    aspect-ratio: calc(374 / 500);
    max-height: auto;
  }
}
.p-content01::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  width: 100%;
  max-height: 982px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f5ef), to(rgba(246, 245, 239, 0)));
  background: linear-gradient(to bottom, #f6f5ef 0%, rgba(246, 245, 239, 0) 100%);
  aspect-ratio: calc(1280 / 982);
}
@media (max-width: 768px) {
  .p-content01::after {
    aspect-ratio: calc(374 / 500);
    max-height: auto;
  }
}
.p-content01 .c-btn-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .p-content01 .c-btn-wrapper {
    margin-top: 40px;
  }
}

.p-content01-inner {
  position: relative;
}
.p-content01-inner::before, .p-content01-inner::after {
  position: absolute;
  content: "";
}
.p-content01-inner::before {
  top: 238px;
  left: calc((140px - 62px) * -1);
  width: calc(120 / 1000 * 100%);
  background: url(../../assets/img/ico_story02.svg) center center/contain no-repeat;
  aspect-ratio: calc(120 / 114);
}
.p-content01-inner::after {
  top: 72px;
  right: calc((140px - 60px) * -1);
  width: calc(157 / 1000 * 100%);
  background: url(../../assets/img/ico_story01.svg) center center/contain no-repeat;
  aspect-ratio: calc(157 / 191);
}

.p-content01-copy {
  width: calc(799 / 1000 * 100%);
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  .p-content01-copy {
    width: calc(319 / 315 * 100%);
    margin-left: calc(10 / 375 * 100vw * -1);
    margin-top: 25px;
  }
}

.p-content01-video {
  display: block;
  width: calc(866 / 1000 * 100%);
  margin: 28px auto 0;
}
@media (max-width: 768px) {
  .p-content01-video {
    width: 100%;
    margin-top: 30px;
  }
}
.p-content01-video .c-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-content01-video .c-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

character

****************************/
.p-content02 {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .p-content02 {
    padding-top: 77px;
  }
}
.p-content02::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 263px);
  content: "";
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-content02::before {
    height: calc(100% - 394px);
  }
}

.p-content02-copy {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #752020;
}
@media (max-width: 768px) {
  .p-content02-copy {
    font-size: 20px;
    line-height: calc(32 / 20);
    margin-top: 50px;
  }
}

/* span.inner */
.p-content02-copy .inner {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-content02-copy .inner {
    padding: 0;
  }
}
.p-content02-copy .inner::before {
  position: absolute;
  z-index: -1;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#ebe6d7), color-stop(50%, #ebd9a9), to(#ebe6d7));
  background: linear-gradient(to right, #ebe6d7 0%, #ebd9a9 50%, #ebe6d7 100%);
}
@media (max-width: 768px) {
  .p-content02-copy .inner::before {
    display: none;
  }
}
.p-content02-copy .inner .bg-sp {
  position: relative;
  z-index: 1;
  padding: 0;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-content02-copy .inner .bg-sp {
    padding: 0 9px;
  }
  .p-content02-copy .inner .bg-sp::before {
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 7px;
    content: "";
    background: -webkit-gradient(linear, left top, right top, from(#ebe6d7), color-stop(50%, #ebd9a9), to(#ebe6d7));
    background: linear-gradient(to right, #ebe6d7 0%, #ebd9a9 50%, #ebe6d7 100%);
  }
}

/* span.smaller */
.p-content02-copy .smaller {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.28;
  color: #13240d;
}
@media (max-width: 768px) {
  .p-content02-copy .smaller {
    font-size: 16px;
  }
}

/* 各キャラクター画像 */
.p-content02-item01 {
  width: calc((877 + 45) / 1000 * 100%);
  margin-top: 68px;
  margin-left: -15px;
}
@media (max-width: 768px) {
  .p-content02-item01 {
    width: calc((350 + 55) / 375 * 100vw);
    margin-top: 47px;
    margin-left: calc((-21 - 24) / 375 * 100vw);
  }
}

.p-content02-item02 {
  display: block;
  width: calc((881 + 45) / 1000 * 100%);
  margin-top: -80px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-content02-item02 {
    width: calc((336 + 70) / 375 * 100vw);
    margin-top: 19px;
    margin-left: calc((-21 - 24) / 375 * 100vw);
  }
}

.p-content02-item03 {
  width: calc((876 + 45) / 1000 * 100%);
  margin-top: calc(17px - 92px);
  margin-left: 30px;
}
@media (max-width: 768px) {
  .p-content02-item03 {
    width: calc((343 + 70) / 375 * 100vw);
    margin-top: 44px;
    margin-left: calc((-21 - 24) / 375 * 100vw);
  }
}

.p-content02-item04 {
  position: relative;
  width: 100%;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .p-content02-item04 {
    width: 100%;
    margin-top: 77px;
  }
}
.p-content02-item04 .c-sns {
  position: absolute;
  top: 40px;
  right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .p-content02-item04 .c-sns {
    top: initial;
    bottom: calc(42 / 375 * 100vw);
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    gap: 35px;
  }
}

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

ABOUT

****************************/
.p-content03 {
  padding-top: 133px;
}
@media (max-width: 768px) {
  .p-content03 {
    padding-top: 71px;
  }
}

.p-section-bg {
  position: relative;
  z-index: 1;
}
.p-section-bg::before, .p-section-bg::after {
  position: absolute;
  width: 100%;
  height: calc(100% + 263px);
  content: "";
}
.p-section-bg::before {
  z-index: -2;
  top: -263px;
  left: 0;
  width: 100%;
  height: calc(100% + 263px);
  background-color: #f6f5ef;
}
@media (max-width: 768px) {
  .p-section-bg::before {
    top: -394px;
    height: calc(100% + 394px);
  }
}
.p-section-bg::after {
  position: absolute;
  z-index: -1;
  top: -263px;
  width: calc(1506 / 1200 * 100%);
  height: calc(100% + 263px);
  -webkit-transform: translateX(calc((1506px - 1200px) / 2 * -1));
          transform: translateX(calc((1506px - 1200px) / 2 * -1));
  opacity: 0.6;
  background: url(../../assets/img/bg_about01.webp) center top/contain repeat-y;
  mix-blend-mode: screen;
}
@media (max-width: 768px) {
  .p-section-bg::after {
    width: calc(729 / 375 * 100vw);
    top: -394px;
    height: calc(100% + 394px);
    background: url(../../assets/img/bg_about01_sp.webp) center top/contain repeat-y;
  }
}

.p-section-bg__line {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 12px;
  border-top: 1px solid #ac923d;
  border-bottom: 1px solid #ac923d;
}
.p-section-bg__line .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-section-bg__line .inner::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ac923d;
}

.p-content03-copy {
  width: calc(561 / 1000 * 100%);
  margin: 15px auto 0;
}
@media (max-width: 768px) {
  .p-content03-copy {
    width: calc(361 / 375 * 100vw);
    margin-top: 25px;
    margin-left: calc(-25 / 375 * 100vw);
  }
}

.p-content03-date {
  position: relative;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .p-content03-date {
    margin-top: 0px;
  }
}
.p-content03-date::before, .p-content03-date::after {
  position: absolute;
  z-index: 1;
  top: -29px;
  left: 50%;
  width: calc(826 / 1000 * 100%);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../assets/img/ico_about04_01.svg) center center/contain no-repeat;
  aspect-ratio: calc(826 / 32);
}
@media (max-width: 768px) {
  .p-content03-date::before, .p-content03-date::after {
    width: 100%;
    top: calc(-14 / 365 * 100vw);
    aspect-ratio: calc(309 / 17);
  }
}
.p-content03-date::after {
  top: initial;
  bottom: -29px;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
}
@media (max-width: 768px) {
  .p-content03-date::after {
    bottom: calc(-14 / 365 * 100vw);
  }
}
.p-content03-date picture {
  -webkit-filter: drop-shadow(0 10px 10px rgba(19, 36, 13, 0.1));
          filter: drop-shadow(0 10px 10px rgba(19, 36, 13, 0.1));
}

.p-content03-chara01,
.p-content03-chara02 {
  position: absolute;
  top: -405px;
  left: -11px;
  background: url(../../assets/img/img_about02.webp) center center/contain no-repeat;
  width: 297px;
  height: 405px;
}
@media (max-width: 768px) {
  .p-content03-chara01,
.p-content03-chara02 {
    display: none;
  }
}

.p-content03-chara02 {
  top: -407px;
  left: initial;
  right: -34px;
  width: 299px;
  height: 407px;
  background: url(../../assets/img/img_about03.webp) center center/contain no-repeat;
}

.p-content03-box01 {
  width: calc((1030) / 1000 * 100%);
  margin-top: 57px;
  margin-left: calc((30 / 1000 * 100%) / 2 * -1);
}
@media (max-width: 768px) {
  .p-content03-box01 {
    margin-top: 43px;
    width: calc((328 + 20) / 315 * 100%);
    margin-left: calc(((348 - 315) / 2 * -1) / 375 * 100vw);
  }
}

.p-content03-box02 {
  width: calc((1038) / 1000 * 100%);
  margin-top: 6px;
  margin-left: calc((38 / 1000 * 100%) / 2 * -1);
}
@media (max-width: 768px) {
  .p-content03-box02 {
    margin-top: 4px;
    width: calc((331 + 20) / 315 * 100%);
    margin-left: calc(((351 - 315) / 2 * -1) / 375 * 100vw);
  }
}

.p-content03 .c-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .p-content03 .c-btn {
    margin-top: 14px;
  }
}

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

X cta

****************************/
.p-cta-x {
  max-width: 1280px;
  margin: 91px auto 0;
}
@media (max-width: 768px) {
  .p-cta-x {
    margin-top: 55px;
  }
}

.p-cta-x-inner {
  position: relative;
}
.p-cta-x-inner picture {
  -webkit-filter: drop-shadow(0 0 20px rgba(114, 96, 36, 0.1));
          filter: drop-shadow(0 0 20px rgba(114, 96, 36, 0.1));
}
.p-cta-x-inner .c-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-cta-x-inner .c-btn {
    bottom: calc(49 / 375 * 100vw);
    width: calc(284 / 375 * 100%);
    letter-spacing: 0;
  }
}

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

hashtag

****************************/
.p-content04 {
  padding: 78px 0 84px;
}
.p-content04 .c-btn {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .p-content04 .c-btn {
    width: 100%;
    margin-top: 38px;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .p-content04 .c-btn::before, .p-content04 .c-btn::after {
    width: 43px;
    height: 74px;
  }
}

.p-content04-inner {
  position: relative;
}
.p-content04-inner::before {
  position: absolute;
  top: 19px;
  right: -93px;
  width: 181px;
  content: "";
  background: url(../../assets/img/img_hashtag02.webp) center center/contain no-repeat;
  aspect-ratio: calc(181 / 656);
}
@media (max-width: 768px) {
  .p-content04-inner::before {
    width: calc(80 / 375 * 100vw);
    top: calc(-35 / 375 * 100vw);
    right: calc(20 / 375 * 100vw);
    aspect-ratio: calc(80 / 198);
    z-index: 0;
    background: url(../../assets/img/img_hashtag02_sp.webp) center center/contain no-repeat;
  }
}

.p-content04-box01 {
  width: calc(912 / 1000 * 100%);
  margin-top: -10px;
}
@media (max-width: 768px) {
  .p-content04-box01 {
    margin-top: 30px;
    width: calc(331 / 315 * 100%);
    margin-left: calc(-8 / 315 * 100%);
    position: relative;
    z-index: 2;
  }
}

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

PRODUCT

****************************/
.p-content05 {
  position: relative;
  z-index: 0;
  padding: 113px 0 122px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-content05 {
    padding: 87px 0 79px;
  }
}
.p-content05::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc((1497px - 1280px) / 2 * -1);
  width: calc(1497 / 1280 * 100%);
  height: 100%;
  content: "";
  opacity: 0.25;
  background: url(../../assets/img/bg_product01.webp) center center/cover repeat-y;
}
@media (max-width: 768px) {
  .p-content05::before {
    width: calc(860 / 375 * 100%);
    left: calc((860px - 375px) / 2 * -1);
  }
}
.p-content05 .c-btn {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .p-content05 .c-btn {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .p-content05 .c-btn::before, .p-content05 .c-btn::after {
    width: 43px;
    height: 74px;
  }
}

.p-content05-copy {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.325;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .p-content05-copy {
    font-size: 19px;
  }
}
.p-content05-copy span {
  position: relative;
  padding: 0 140px 0 130px;
}
@media (max-width: 768px) {
  .p-content05-copy span {
    padding: 0;
    white-space: nowrap;
  }
}
.p-content05-copy span::before, .p-content05-copy span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 118px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../assets/img/ico_product_header01.svg) center center/contain no-repeat;
  aspect-ratio: calc(118 / 35);
}
@media (max-width: 768px) {
  .p-content05-copy span::before, .p-content05-copy span::after {
    width: 48px;
    left: -46px;
  }
}
.p-content05-copy span::after {
  right: 0;
  left: initial;
  -webkit-transform: translateY(-50%) rotateY(180deg);
          transform: translateY(-50%) rotateY(180deg);
}
@media (max-width: 768px) {
  .p-content05-copy span::after {
    right: -46px;
  }
}

.p-content05-desc {
  font-size: 15px;
  font-weight: 900;
  line-height: 2.1333333333;
  margin-top: 22px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-content05-desc {
    text-align: left;
  }
}

.p-content05-box01 {
  position: relative;
  margin-top: 124px;
}
@media (max-width: 768px) {
  .p-content05-box01 {
    margin-top: 63px;
  }
}
.p-content05-box01::before {
  position: absolute;
  z-index: 2;
  top: -72px;
  left: -64px;
  width: 564px;
  content: "";
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  background: url(../../assets/img/img_product03.webp) center center/contain no-repeat;
  aspect-ratio: calc(564 / 171);
}
@media (max-width: 768px) {
  .p-content05-box01::before {
    width: calc(284 / 315 * 100%);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: calc(-32 / 375 * 100vw);
  }
}
.p-content05-box01::after {
  position: absolute;
  z-index: 1;
  top: -62px;
  right: -92px;
  width: 389px;
  content: "";
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
  background: url(../../assets/img/img_product04.webp) center center/contain no-repeat;
  aspect-ratio: calc(389 / 296);
}
@media (max-width: 768px) {
  .p-content05-box01::after {
    width: calc(213 / 315 * 100%);
    top: calc(55 / 375 * 100vw);
    right: calc(-24 / 375 * 100vw);
  }
}

.p-content05-box01__img01 {
  -webkit-filter: drop-shadow(0 0 20px rgba(19, 36, 13, 0.1));
          filter: drop-shadow(0 0 20px rgba(19, 36, 13, 0.1));
}
.p-content05-box01__img02 {
  position: absolute;
  z-index: 2;
  right: 9px;
  bottom: 9px;
  width: calc((670 + 15) / 1000 * 100%);
}
@media (max-width: 768px) {
  .p-content05-box01__img02 {
    display: none;
  }
}

.arrow {
  position: absolute;
  bottom: -71px;
  left: 50%;
  width: calc(56px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../assets/img/ico_arrow01.svg) center center/contain no-repeat;
  aspect-ratio: calc(56 / 71);
}

.p-content05-box02 {
  position: relative;
  margin-top: 150px;
}
@media (max-width: 768px) {
  .p-content05-box02 {
    margin-top: 100px;
  }
}
.p-content05-box02::before, .p-content05-box02::after {
  position: absolute;
  z-index: 2;
  top: -64px;
  left: 50%;
  width: calc(645 / 1000 * 100%);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../assets/img/img_product07.webp) center center/contain no-repeat;
  aspect-ratio: calc(645 / 75);
}
@media (max-width: 768px) {
  .p-content05-box02::before, .p-content05-box02::after {
    width: 100%;
    top: calc(-25 / 375 * 100vw);
  }
}
.p-content05-box02::after {
  top: initial;
  bottom: -64px;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
}
@media (max-width: 768px) {
  .p-content05-box02::after {
    bottom: calc(-25 / 375 * 100vw);
  }
}

.p-content05-box02__img01 {
  -webkit-filter: drop-shadow(0 10px 10px rgba(19, 36, 13, 0.1));
          filter: drop-shadow(0 10px 10px rgba(19, 36, 13, 0.1));
}
.p-content05-box02__img02 {
  position: absolute;
  top: 42px;
  right: -38px;
  width: calc(299 / 1000 * 100%);
  aspect-ratio: calc(299 / 103);
}
@media (max-width: 768px) {
  .p-content05-box02__img02 {
    display: none;
  }
}

.p-content05-box02__img03 {
  position: absolute;
  aspect-ratio: calc(131 / 507);
  width: 131px;
  left: -63px;
  top: -75px;
}
@media (max-width: 768px) {
  .p-content05-box02__img03 {
    width: calc(57 / 315 * 100%);
    left: calc(-24 / 375 * 100vw);
    top: calc(64 / 375 * 100vw);
    z-index: 3;
  }
}

.p-content05-note {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 52px;
  text-align: right;
  color: #752020;
}
@media (max-width: 768px) {
  .p-content05-note {
    font-size: 12px;
    margin-top: calc(34 / 375 * 100vw);
    text-align: center;
  }
}

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

HOW TO

****************************/
.p-content06 {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .p-content06 {
    padding-top: 75px;
  }
}
.p-content06::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.4;
  background: url(../../assets/img/bg_howto01.webp) center center/cover no-repeat;
}
@media (max-width: 768px) {
  .p-content06::before {
    background: url(../../assets/img/bg_howto01_sp.webp) center center/cover no-repeat;
    -webkit-filter: blur(2px);
            filter: blur(2px);
    height: calc(100% - 222px);
  }
}
.p-content06::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f5ef), to(rgba(246, 245, 239, 0)));
  background: linear-gradient(to bottom, #f6f5ef 0%, rgba(246, 245, 239, 0) 100%);
}
@media (max-width: 768px) {
  .p-content06::after {
    height: calc(100% - 218px);
  }
}

.p-content06-box01 {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .p-content06-box01 {
    margin-top: 45px;
  }
}

.p-content06-box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 11px;
}
@media (max-width: 768px) {
  .p-content06-box02 {
    margin-top: 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.p-content06-box02__item {
  width: calc(100% / 3 - (11px * 2 / 3));
}
@media (max-width: 768px) {
  .p-content06-box02__item {
    width: 100%;
  }
}

.p-content06-note {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4285714286;
  margin-top: 32px;
  text-align: center;
}
.p-content06-inner {
  position: relative;
  padding-bottom: 152px;
}
@media (max-width: 768px) {
  .p-content06-inner {
    padding-bottom: 80px;
    overflow: hidden;
  }
}
.p-content06-inner::before, .p-content06-inner::after {
  position: absolute;
  content: "";
}
.p-content06-inner::before {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -140px;
  width: calc(331 / 1000 * 100%);
  content: "";
  background: url(../../assets/img/img_howto05.webp) center center/contain no-repeat;
  aspect-ratio: calc(331 / 473);
}
@media (max-width: 768px) {
  .p-content06-inner::before {
    width: 159px;
    left: -15px;
    bottom: -109px;
    background: url(../../assets/img/img_howto05_sp.webp) center center/contain no-repeat;
    aspect-ratio: calc(159 / 401);
  }
}
.p-content06-inner::after {
  position: absolute;
  z-index: 2;
  right: -182px;
  bottom: 0;
  width: calc(295 / 1000 * 100%);
  content: "";
  background: url(../../assets/img/img_howto06.webp) center center/contain no-repeat;
  aspect-ratio: calc(295 / 473);
}
@media (max-width: 768px) {
  .p-content06-inner::after {
    width: 141px;
    right: -32px;
    bottom: -108px;
    aspect-ratio: calc(141 / 400);
    background: url(../../assets/img/img_howto06_sp.webp) center center/contain no-repeat;
  }
}

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

PRESENT

****************************/
.p-content07 {
  position: relative;
  z-index: 0;
  background: #13240d;
}
.p-content07 .c-header--lv2 p,
.p-content07 .c-header--lv2 h2 {
  color: #f9f3de;
}
.p-content07::before {
  position: absolute;
  z-index: -1;
  top: 0;
  width: calc(1506 / 1200 * 100%);
  height: calc(100%);
  content: "";
  -webkit-transform: translateX(calc((1506px - 1200px) / 2 * -1));
          transform: translateX(calc((1506px - 1200px) / 2 * -1));
  opacity: 0.05;
  background: url(../../assets/img/bg_about01.webp) center top/contain repeat-y;
  mix-blend-mode: screen;
}
@media (max-width: 768px) {
  .p-content07::before {
    width: calc(729 / 375 * 100%);
  }
}

.p-content07-inner {
  position: relative;
  padding-top: 150px;
  padding-bottom: 146px;
}
@media (max-width: 768px) {
  .p-content07-inner {
    padding-top: 87px;
    padding-bottom: 70px;
  }
}

.p-content07-deco {
  position: absolute;
  top: 238px;
  left: -84px;
  width: 35px;
  height: calc(100% - (238px + 107px));
  background: url(../../assets/img/img_present_line01.webp) center center/contain repeat-y;
}
@media (max-width: 768px) {
  .p-content07-deco {
    top: 121px;
    height: calc(100% - (121px + 48px));
    left: 9px;
    width: 13px;
  }
}
.p-content07-deco .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.p-content07-deco .inner::before, .p-content07-deco .inner::after {
  position: absolute;
  width: 189px;
  height: 58px;
  content: "";
  background: url(../../assets/img/ico_deco01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-content07-deco .inner::before, .p-content07-deco .inner::after {
    width: 56px;
    height: 17px;
  }
}
.p-content07-deco .inner::before {
  top: -58px;
  left: -28px;
}
@media (max-width: 768px) {
  .p-content07-deco .inner::before {
    top: -15px;
    left: -6px;
  }
}
.p-content07-deco .inner::after {
  bottom: -58px;
  left: -28px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media (max-width: 768px) {
  .p-content07-deco .inner::after {
    bottom: -15px;
    left: -6px;
  }
}

.p-content07-deco02 {
  right: -84px;
  left: initial;
}
@media (max-width: 768px) {
  .p-content07-deco02 {
    right: 9px;
  }
}
.p-content07-deco02 .inner::before {
  right: -28px;
  left: initial;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (max-width: 768px) {
  .p-content07-deco02 .inner::before {
    right: -6px;
  }
}
.p-content07-deco02 .inner::after {
  right: -28px;
  left: initial;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
@media (max-width: 768px) {
  .p-content07-deco02 .inner::after {
    right: -6px;
  }
}

.p-content07-box01 {
  width: calc(765 / 1000 * 100%);
  margin: 7px auto 0;
}
@media (max-width: 768px) {
  .p-content07-box01 {
    width: calc(288 / 315 * 100%);
    margin-top: 31px;
    margin-left: calc(18 / 375 * 100vw);
  }
}

.p-content07-box02 {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .p-content07-box02 {
    margin-top: 18px;
  }
}
.p-content07-box02::before {
  position: absolute;
  z-index: -1;
  bottom: -183px;
  left: 50%;
  width: calc(982 / 1000 * 100%);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.59;
  border-radius: 50%/50%;
  background: radial-gradient(circle, #918766 0%, #345728 100%);
  aspect-ratio: calc(982 / 567);
  -webkit-filter: blur(50px);
          filter: blur(50px);
}
@media (max-width: 768px) {
  .p-content07-box02::before {
    bottom: calc(-104 / 375 * 100vw);
    width: calc(569 / 315 * 100%);
  }
}

.p-content07-box03 {
  position: relative;
  z-index: 1;
  width: calc(889 / 1000 * 100%);
  margin: -125px auto 0;
}
@media (max-width: 768px) {
  .p-content07-box03 {
    margin: -41px 0 0 auto;
    width: calc(310 / 315 * 100%);
  }
}

.p-content07-box04 {
  width: calc(889 / 1000 * 100%);
  margin: 46px auto 0;
}
@media (max-width: 768px) {
  .p-content07-box04 {
    margin: 21px 0 0 auto;
    width: calc(310 / 315 * 100%);
  }
}

.p-content07-box05 {
  width: calc(889 / 1000 * 100%);
  margin: 44px auto 0;
}
@media (max-width: 768px) {
  .p-content07-box05 {
    width: calc(310 / 315 * 100%);
    margin: 21px 0 0 auto;
  }
}

.p-content07-box06 {
  width: calc((855 + 30) / 1000 * 100%);
  margin: 15px auto 0;
}
@media (max-width: 768px) {
  .p-content07-box06 {
    margin: 21px auto 0;
    width: calc(298 / 315 * 100%);
  }
}

.p-content07-note {
  width: calc(834 / 1000 * 100%);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-content07-note {
    width: calc(295 / 315 * 100%);
    margin: 3px auto 0;
  }
}
.p-content07-note span {
  font-size: 13px;
  font-weight: bold;
  line-height: calc(22 / 13);
  display: block;
  padding-left: calc(13px * 1.2);
  white-space: nowrap;
  text-indent: calc(13px * 1.2 * -1);
  letter-spacing: 0.2em;
  color: #f9f3de;
}
@media (max-width: 768px) {
  .p-content07-note span {
    white-space: initial;
    font-size: 11px;
  }
}

.p-content07-box07 {
  width: calc(1076 / 1000 * 100%);
  margin-top: 42px;
  margin-left: calc(76 / 2 / 1000 * 100% * -1);
}
@media (max-width: 768px) {
  .p-content07-box07 {
    width: calc(304 / 315 * 100%);
    margin: 32px auto 0;
  }
}

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

hashtag-02

****************************/
.p-content08 {
  position: relative;
  margin-top: 88px;
  padding-bottom: 108px;
}
.p-content08::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-height: 901px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.4;
  background: url(../../assets/img/bg_hashtag01.webp) center center/cover no-repeat;
  aspect-ratio: calc(1280 / 901);
}
@media (max-width: 768px) {
  .p-content08::before {
    background: url(../../assets/img/bg_hashtag01_sp.webp) center center/cover no-repeat;
    -webkit-filter: blur(3px);
            filter: blur(3px);
    aspect-ratio: calc(446 / 1772);
    width: calc(446 / 375 * 100%);
    max-height: 1771px;
  }
}
.p-content08::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-height: 901px;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f5ef), to(rgba(246, 245, 239, 0)));
  background: linear-gradient(to bottom, #f6f5ef 0%, rgba(246, 245, 239, 0) 100%);
  aspect-ratio: calc(1280 / 901);
}
@media (max-width: 768px) {
  .p-content08::after {
    aspect-ratio: calc(374 / 1786);
    width: 100%;
    max-height: none;
  }
}

.p-content08-inner {
  position: relative;
}
.p-content08-inner::before, .p-content08-inner::after {
  content: "";
  position: absolute;
}
.p-content08-inner::before {
  top: 60px;
  left: -55px;
  width: 105px;
  height: 115px;
  background: url(../../assets/img/ico_hashtag2_01.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-content08-inner::before {
    display: none;
  }
}
.p-content08-inner::after {
  top: 82px;
  right: -69px;
  width: 158px;
  height: 475px;
  background: url(../../assets/img/ico_hashtag2_02.svg) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-content08-inner::after {
    display: none;
  }
}

.p-content08-box01 {
  position: relative;
  width: calc(872 / 1000 * 100%);
  margin: 33px 0 0 56px;
}
@media (max-width: 768px) {
  .p-content08-box01 {
    width: calc(331 / 315 * 100%);
    margin: 30px 0 0 calc((331 - 315) / 2 / 315 * 100% * -1);
  }
}
.p-content08-box01 .c-btn {
  font-size: 14px;
  position: absolute;
  right: 9px;
  bottom: 13px;
  width: 373px;
}
@media (max-width: 768px) {
  .p-content08-box01 .c-btn {
    position: relative;
    right: initial;
    bottom: initial;
    width: calc(256 / 331 * 100%);
    margin: 34px auto 0;
    font-size: 12px;
    letter-spacing: 0;
  }
}
.p-content08-box01 .c-btn::before, .p-content08-box01 .c-btn::after {
  left: -12px;
  width: 30px;
  height: 51px;
}
.p-content08-box01 .c-btn::after {
  right: -12px;
  left: initial;
}

.p-content08-box02 {
  margin-top: 73px;
}
@media (max-width: 768px) {
  .p-content08-box02 {
    margin: 56px auto 0;
    width: calc(302 / 315 * 100%);
  }
}

.p-content08-box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-content08-box03 {
    margin-top: 33px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    width: calc(325 / 315 * 100%);
    margin-left: calc((325 - 315) / 2 / 315 * -1 * 100%);
  }
}

.p-content08-box03__item {
  position: relative;
  width: calc(100% / 3 - (10px * 2 / 3));
}
@media (max-width: 768px) {
  .p-content08-box03__item {
    width: 100%;
  }
}
.p-content08-box03__item .c-btn {
  font-size: 14px;
  line-height: calc(16 / 14);
  position: absolute;
  bottom: 140px;
  left: 50%;
  width: 258px;
  padding: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-content08-box03__item .c-btn {
    width: calc(257 / 325 * 100%);
    bottom: calc(124 / 375 * 100vw);
  }
}
.p-content08-box03__item .c-btn .c-btn-inner {
  padding: 4px;
}
.p-content08-box03__item .c-btn::before, .p-content08-box03__item .c-btn::after {
  left: -12px;
  width: 29px;
  height: 50px;
}
.p-content08-box03__item .c-btn::after {
  right: -12px;
  left: initial;
}

.p-content08-note {
  font-size: 14px;
  font-weight: 900;
  line-height: calc(20 / 14);
  margin-top: 23px;
}

.p-content08-btn {
  margin-top: 66px;
}
@media (max-width: 768px) {
  .p-content08-btn {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .p-content08-btn .c-btn {
    width: 100%;
    max-width: 500px;
  }
}

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

ATTENTION

****************************/
.p-content09 {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-content09 {
    padding: 72px 0;
  }
}

.c-attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 80px;
  gap: 15px;
}
@media (max-width: 768px) {
  .c-attention {
    margin-top: 38px;
  }
}
.c-attention dt {
  font-size: 18px;
  font-weight: 900;
  line-height: calc(26 / 18);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 22px 30px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-attention dt {
    height: 70px;
    font-size: 15px;
    padding: 24px 16px;
  }
}
.c-attention dt::before, .c-attention dt::after {
  position: absolute;
  top: 50%;
  right: 42px;
  width: 28px;
  height: 3px;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ac923d;
}
@media (max-width: 768px) {
  .c-attention dt::before, .c-attention dt::after {
    right: 22px;
    width: 17px;
    height: 1px;
  }
}
.c-attention dt::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.c-attention dt.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media (max-width: 768px) {
  .c-attention dt img {
    width: auto;
    height: 13px;
  }
}
.c-attention dt:hover {
  cursor: pointer;
}
.c-attention dd {
  position: relative;
  padding: 30px 30px 70px;
}
@media (max-width: 768px) {
  .c-attention dd {
    padding: 24px 15px;
  }
}
.c-attention dd::before {
  content: "";
  position: absolute;
  width: calc(100% - 60px);
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #ac923d;
}
@media (max-width: 768px) {
  .c-attention dd::before {
    width: calc(100% - 30px);
  }
}
.c-attention a {
  color: #13240d;
  text-decoration: none;
}
.c-attention a:hover {
  text-decoration: underline;
}

.c-attention-inner {
  border: 1px solid #ac923d;
  -webkit-box-shadow: 0 10px 10px rgba(19, 36, 13, 0.1);
          box-shadow: 0 10px 10px rgba(19, 36, 13, 0.1);
}

.c-attention__header {
  font-size: 18px;
  font-weight: 900;
  line-height: calc(26 / 18);
}
@media (max-width: 768px) {
  .c-attention__header {
    font-size: 15px;
  }
}

.c-attention__desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: calc(28 / 15);
}
@media (max-width: 768px) {
  .c-attention__desc {
    font-size: 13px;
    margin-top: 15px;
  }
}
.c-attention__desc span {
  display: block;
}
.c-attention__desc span + span {
  margin-top: calc(15px * (28 / 15));
}
@media (max-width: 768px) {
  .c-attention__desc span + span {
    margin-top: calc(13px * (28 / 15));
  }
}
.c-attention__desc + .c-attention__header {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .c-attention__desc + .c-attention__header {
    margin-top: 40px;
  }
}

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

CONTACT

****************************/
.p-content10 {
  padding-top: 90px;
  position: relative;
}
.p-content10 .c-btn {
  width: 100%;
  max-width: 388px;
  margin-top: 37px;
}
.p-content10 .p-section-bg__line {
  bottom: initial;
  top: -6px;
}

.p-contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 66px;
  padding: 69px 67px 63px;
  background: -webkit-gradient(linear, left top, right top, from(#f6f5ef), color-stop(50%, #ffffff), to(#f6f5ef));
  background: linear-gradient(to right, #f6f5ef 0%, #ffffff 50%, #f6f5ef 100%);
  -webkit-box-shadow: 0 10px 10px rgba(19, 36, 13, 0.1);
          box-shadow: 0 10px 10px rgba(19, 36, 13, 0.1);
}
@media (max-width: 768px) {
  .p-contact-inner {
    margin-top: 50px;
    padding: 40px 17px 57px;
  }
}
.p-contact-inner::before, .p-contact-inner::after {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  height: 12px;
  width: 726px;
  background: url(../../assets/img/img_contact_line01.webp) center center/contain no-repeat;
}
@media (max-width: 768px) {
  .p-contact-inner::before, .p-contact-inner::after {
    width: 100%;
    height: 12px;
    background: url(../../assets/img/img_contact_line01_sp.webp) center center/contain no-repeat;
  }
}
.p-contact-inner::after {
  top: initial;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.p-contact-inner a {
  color: #13240d;
  text-decoration: none;
}
.p-contact-inner a:hover {
  text-decoration: underline;
}
.p-contact-inner .c-btn {
  color: #fff;
}

.p-contact-copy {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.1428571429;
  text-align: center;
}
@media (max-width: 768px) {
  .p-contact-copy {
    font-size: 16px;
    line-height: calc(22 / 16);
  }
}
.p-contact-copy span {
  font-size: 20px;
}
@media (max-width: 768px) {
  .p-contact-copy span {
    font-size: 14px;
  }
}

.p-contact-note {
  font-size: 14px;
  font-weight: bold;
  line-height: calc(22 / 14);
  width: 100%;
  max-width: 614px;
  margin-top: 30px;
  letter-spacing: 0.1em;
  color: #752020;
}
@media (max-width: 768px) {
  .p-contact-note {
    font-size: 13px;
  }
}

.p-contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 30px;
  padding: 29px 20px 37px;
  border: 1px solid #ac923d;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-contact-box {
    padding: 28px 15px 36px;
  }
}
.p-contact-box .p-contact-list {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .p-contact-box .p-contact-list {
    border-bottom: 0px;
    padding-bottom: 0;
    margin-top: 45px;
  }
}

.p-contact-box__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-contact-box__title {
    font-size: 15px;
  }
}

.p-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 38px;
}
@media (max-width: 768px) {
  .p-contact-list {
    width: 100%;
    gap: 45px;
    margin-top: 45px;
    padding-bottom: calc(45px / 2);
    border-bottom: 1px solid #ac923d;
  }
}
.p-contact-list .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 57px;
}
@media (max-width: 768px) {
  .p-contact-list .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .p-contact-list .inner::before {
    position: absolute;
    top: calc(45px / 2 * -1);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 1px;
    width: 100%;
    content: "";
    background: #ac923d;
  }
}
.p-contact-list dd,
.p-contact-list dt {
  font-size: 18px;
  font-weight: bold;
  line-height: calc(42 / 18);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-contact-list dd,
.p-contact-list dt {
    font-size: 15px;
    line-height: calc(22 / 15);
  }
}
.p-contact-list dd {
  width: 137px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-contact-list dd {
    width: auto;
  }
}
.p-contact-list dt {
  position: relative;
}
.p-contact-list dt::before {
  position: absolute;
  top: 50%;
  left: calc(57px / 2 * -1);
  width: 1px;
  height: 11px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ac923d;
}
@media (max-width: 768px) {
  .p-contact-list dt::before {
    display: none;
  }
}

.c-btn--random {
  pointer-events: none;
}

.is-disable {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 1000px;
}
.is-disable::before {
  content: "キャンペーンは終了しました";
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .is-disable::before {
    font-size: 16px;
  }
}