@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 63px;
  font-size: 16px;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
  color: #392E29;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

video,
img,
svg {
  width: 100%;
  height: auto;
}

picture,
img,
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  /* ホバー時の透過度を設定 */
}
@media screen and (min-width: 800px) {
  a:hover {
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

.l-inner {
  padding-inline: 16px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .l-inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 800px) / (1366 - 800), 203px);
  }
}

.l-footer {
  background: -webkit-gradient(linear, left top, right top, from(#DFB8C4), to(#B7A4C9));
  background: linear-gradient(90deg, #DFB8C4 0%, #B7A4C9 100%);
}

.l-footer__inner {
  padding: 20px;
  margin-inline: auto;
}

.l-footer__copyright p {
  color: #fff;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.l-fv {
  width: 100%;
  background-color: #fff;
}
.l-fv img,
.l-fv picture {
  display: block;
}

.l-fv__inner {
  position: relative;
}

.l-fv__img {
  position: relative;
}

.l-fv__scroll-down {
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 236px;
  -webkit-animation: float 0.85s ease-in-out infinite;
          animation: float 0.85s ease-in-out infinite;
}
@media screen and (min-width: 1366px) {
  .l-fv__scroll-down {
    width: 318px;
  }
}

@media screen and (min-width: 800px) {
  .c-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.c-button {
  max-width: 438px;
  margin-inline: auto;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #DFB8C4;
  position: relative;
  border-radius: 43px;
  color: #FFF;
}
@media screen and (min-width: 800px) {
  .c-button {
    max-width: none;
    width: 482px;
    padding-inline: 85px;
    padding-block: 20px;
  }
}
.c-button p {
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 800px) {
  .c-button::before {
    top: 56%;
    width: 48px;
    right: 45px;
  }
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  -webkit-transform: translateY(-88%) rotate(-59deg);
          transform: translateY(-88%) rotate(-59deg);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  width: 1px;
  height: 11px;
  background-color: currentColor;
  -webkit-transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 800px) {
  .c-button::after {
    top: 56%;
    right: 50px;
  }
}
.c-button:hover P {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.c-button:hover::before {
  right: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-button:hover::after {
  right: 31px;
  -webkit-transform: translateY(-88%) rotate(-59deg);
          transform: translateY(-88%) rotate(-59deg);
}

/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.c-title-wrapper {
  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: 10px;
  text-align: center;
}
@media screen and (min-width: 1366px) {
  .c-title-wrapper {
    gap: 20px;
  }
}

.c-title {
  color: #63524A;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .c-title {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.21429;
  }
}
@media screen and (min-width: 1366px) {
  .c-title {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.c-title-sub {
  color: #C0B29D;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2.8px;
}

.c-label-main {
  background: #A68EBD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 190px;
  height: 27px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
}
.c-label-main p {
  color: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.c-label-default {
  border-radius: 3px;
  border: 1px solid #B7A4C9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 190px;
  height: 27px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-label-default p {
  color: #B7A4C9;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

/*----------------------------------
    p-campaign
-----------------------------------*/
.p-campaign {
  position: relative;
}
.p-campaign__inner {
  position: relative;
  padding-inline: 16px;
  max-width: 542px;
  margin-inline: auto;
  padding-bottom: 135px;
}
@media screen and (min-width: 800px) {
  .p-campaign__inner {
    max-width: 800px;
    padding-inline: clamp(26px, 26px + (0) * (100vw - 800px) / (1366 - 800), 26px);
    padding-bottom: clamp(70px, 70px + (10) * (100vw - 800px) / (1366 - 800), 80px);
  }
}
@media screen and (min-width: 1366px) {
  .p-campaign__inner {
    max-width: 1520px;
    padding-inline: clamp(56px, 56px + (44) * (100vw - 1366px) / (1926 - 1366), 100px);
  }
}

.p-campaign__title-wrapper {
  padding-top: 40px;
  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;
}
@media screen and (min-width: 800px) {
  .p-campaign__title-wrapper {
    padding-top: clamp(70px, 70px + (10) * (100vw - 800px) / (1366 - 800), 80px);
  }
}

.p-campaign__title-sub p {
  color: #C594A3;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
}

.p-campaign__title {
  position: relative;
  padding-top: 4px;
}
.p-campaign__title h2 {
  color: #63524A;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.23;
}
@media screen and (min-width: 800px) {
  .p-campaign__title h2 {
    color: #63524A;
    text-align: center;
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 1.3966431095rem + 0.7067137809vw, 2rem);
    line-height: 1.21429;
  }
}

.p-campaign__title-img {
  position: absolute;
  width: 35px;
}
.p-campaign__title-img svg path {
  stroke: #C594A3;
}

.p-campaign__title-img-left {
  left: -30px;
  top: 45%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
@media screen and (min-width: 800px) {
  .p-campaign__title-img-left {
    left: -20px;
  }
}

.p-campaign__title-img-right {
  right: -30px;
  top: 45%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media screen and (min-width: 800px) {
  .p-campaign__title-img-right {
    right: -20px;
  }
}

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

.p-campaign__contents-time {
  padding-top: 27px;
  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: 10px;
}
@media screen and (min-width: 800px) {
  .p-campaign__contents-time {
    padding-top: 36px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.p-campaign__contents-time-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 3px;
  background: #DFB8C4;
  color: #FFF;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  /* 100% */
}

.p-campaign__contents-time-value P {
  color: #392E29;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-campaign__contents-coupon {
  padding-top: 15px;
}
@media screen and (min-width: 800px) {
  .p-campaign__contents-coupon {
    padding-top: 30px;
  }
}
.p-campaign__contents-coupon p {
  color: #F27649;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-campaign__contents-coupon-description {
  padding-top: 10px;
}
.p-campaign__contents-coupon-description p {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.92857;
}

.p-campaign__img-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 263px;
}
@media screen and (min-width: 800px) {
  .p-campaign__img-wrap {
    bottom: -28px;
    left: auto;
    right: 0;
  }
}

.p-campaign__img-woman {
  position: absolute;
  width: 180px;
  bottom: -61px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  right: 60px;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .p-campaign__img-woman {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    right: -14px;
  }
}
@media screen and (min-width: 1366px) {
  .p-campaign__img-woman {
    width: 284px;
    right: 64px;
    bottom: -36px;
  }
}

.p-campaign__img-coupon {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  right: 191px;
  width: 161px;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .p-campaign__img-coupon {
    right: 91px;
    bottom: 9px;
    width: 128px;
  }
}
@media screen and (min-width: 1366px) {
  .p-campaign__img-coupon {
    right: 226px;
    bottom: 119px;
    width: 169px;
  }
}

/*----------------------------------
    p-user
-----------------------------------*/
.p-user {
  padding-block: 80px 58px;
  background: #FBF7F1;
}
@media screen and (min-width: 800px) {
  .p-user {
    padding-block: 80px 60px;
  }
}
@media screen and (min-width: 1366px) {
  .p-user {
    padding-block: 80px;
  }
}

.p-user__inner {
  padding-inline: 20px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .p-user__inner {
    max-width: 1160px;
    padding-inline: clamp(50px, 50px + (30) * (100vw - 800px) / (1366 - 800), 80px);
  }
}
@media screen and (min-width: 1366px) {
  .p-user__inner {
    max-width: 1606px;
    padding-inline: clamp(143px, 143px + (57) * (100vw - 1366px) / (1926 - 1366), 200px);
  }
}

.p-user__contents {
  margin-top: 30px;
  border-radius: 5px;
  background: #FFF;
}
@media screen and (min-width: 1366px) {
  .p-user__contents {
    margin-top: 40px;
  }
}

.p-user__contents-inner {
  padding-inline: 30px;
  padding-block: 40px 30px;
  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: 40px;
}
@media screen and (min-width: 800px) {
  .p-user__contents-inner {
    padding-inline: 35px;
    padding-block: 44px 37px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 34px;
  }
}
@media screen and (min-width: 1366px) {
  .p-user__contents-inner {
    padding-inline: 50px;
    padding-block: 60px 50px;
    gap: 50px;
  }
}

.p-user__contents-item {
  width: 100%;
  max-width: 330px;
}
@media screen and (min-width: 800px) {
  .p-user__contents-item {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-user__contents-item-1 .p-user__contents-item-top {
  height: 25px;
  border-top: 1px solid #B7A4C9;
  border-left: 1px solid #B7A4C9;
  border-right: 1px solid #B7A4C9;
}
.p-user__contents-item-1 .p-user__contents-item-bottom {
  height: 25px;
  border-bottom: 1px solid #B7A4C9;
  border-left: 1px solid #B7A4C9;
  border-right: 1px solid #B7A4C9;
}
.p-user__contents-item-2 .p-user__contents-item-top {
  height: 25px;
  border-top: 1px solid #DFB8C4;
  border-left: 1px solid #DFB8C4;
  border-right: 1px solid #DFB8C4;
}
.p-user__contents-item-2 .p-user__contents-item-bottom {
  height: 25px;
  border-bottom: 1px solid #DFB8C4;
  border-left: 1px solid #DFB8C4;
  border-right: 1px solid #DFB8C4;
}
.p-user__contents-wrap {
  position: relative;
  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;
}
@media screen and (min-width: 800px) {
  .p-user__contents-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-user__contents-item-df {
  position: relative;
  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;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .p-user__contents-item-df {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-df {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-user__contents-item-df-wrap {
  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;
  width: 100%;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-df-wrap {
    padding-left: 15px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-user__contents-item-title {
  margin-top: -22px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  translate: 0 -50%;
  padding-inline: 5px;
}
.p-user__contents-item-title h3 {
  color: #A68EBD;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-title h3 {
    font-size: 1.75rem;
  }
}

.p-user__contents-item-2 .p-user__contents-item-title {
  padding-inline: 0px;
}
.p-user__contents-item-2 .p-user__contents-item-title h3 {
  color: #C594A3;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-2 .p-user__contents-item-title h3 {
    font-size: 1.75rem;
  }
}
.p-user__contents-item-2 .p-user__contents-item-title span {
  letter-spacing: -2px;
}

.p-user__contents-item-img {
  width: 195px;
  padding-top: 5px;
}
@media screen and (min-width: 800px) {
  .p-user__contents-item-img {
    width: clamp(217px, 217px + (10) * (100vw - 800px) / (1366 - 800), 227px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-img {
    padding-top: 0px;
  }
}

.p-user__contents-item-label {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 800px) {
  .p-user__contents-item-label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 58px;
  }
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-label {
    margin-top: 7px;
    margin-right: 10px;
  }
}
.p-user__contents-item-label p {
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.22222;
}

.p-user__contents-item-list {
  padding-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.p-user__contents-item-btn {
  padding-top: 19px;
}

.p-user__contents-item-list-text {
  padding-top: 25px;
}
.p-user__contents-item-list-text p {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-list-text p {
    text-align: left;
  }
}

.p-user__contents-item-list-description {
  padding-top: 15px;
  padding-inline: 20px;
}
@media screen and (min-width: 800px) {
  .p-user__contents-item-list-description {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-list-description {
    padding-inline: 0;
  }
}
.p-user__contents-item-list-description span {
  color: #C594A3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

p {
  color: #392E29;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

p + p {
  padding-top: 11px;
}

.p-user__contents-item-list-description-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline;
}

.p-user__contents-item-list li {
  position: relative;
  padding-left: 12px;
}
.p-user__contents-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-color: #B7A4C9;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10'%3E%3Cpath d='M5.775 4.37049C6.09375 4.76424 6.07188 5.34236 5.70625 5.70799L1.70625 9.70799C1.41875 9.99549 0.990625 10.0799 0.615625 9.92361C0.240625 9.76736 0 9.40486 0 9.00174V1.00174C0 0.598615 0.24375 0.23299 0.61875 0.0767397C0.99375 -0.0795103 1.42187 0.0079897 1.70937 0.292365L5.70937 4.29236L5.77812 4.36736L5.775 4.37049Z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10'%3E%3Cpath d='M5.775 4.37049C6.09375 4.76424 6.07188 5.34236 5.70625 5.70799L1.70625 9.70799C1.41875 9.99549 0.990625 10.0799 0.615625 9.92361C0.240625 9.76736 0 9.40486 0 9.00174V1.00174C0 0.598615 0.24375 0.23299 0.61875 0.0767397C0.99375 -0.0795103 1.42187 0.0079897 1.70937 0.292365L5.70937 4.29236L5.77812 4.36736L5.775 4.37049Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.p-user__contents-item-list li p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-user__contents-item-btn-link {
  text-decoration: none;
  position: relative;
  padding-right: 38px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #A68EBD;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-btn-link {
    padding-right: 30px;
  }
}
.p-user__contents-item-btn-link::before {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 33px;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-btn-link::before {
    right: -8px;
  }
}
.p-user__contents-item-btn-link::after {
  content: "";
  position: absolute;
  top: 61%;
  right: 4px;
  -webkit-transform: translateY(-88%) rotate(-59deg);
          transform: translateY(-88%) rotate(-59deg);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  width: 1px;
  height: 11px;
  background-color: currentColor;
  -webkit-transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-btn-link::after {
    right: -4px;
  }
}
.p-user__contents-item-btn-link:hover::before {
  right: -8px;
  width: 28px;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-btn-link:hover::before {
    right: -20px;
    width: 45px;
  }
}
.p-user__contents-item-btn-link:hover::after {
  right: -8px;
}
@media screen and (min-width: 1366px) {
  .p-user__contents-item-btn-link:hover::after {
    right: -16px;
  }
}

/*----------------------------------
    p-about
-----------------------------------*/
.p-about {
  padding-block: 55px 170px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-about {
    padding-block: 70px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about {
    padding-block: 80px;
  }
}

.p-about__title {
  -webkit-padding-after: 40px;
          padding-block-end: 40px;
}
@media screen and (min-width: 800px) {
  .p-about__title {
    -webkit-padding-after: 60px;
            padding-block-end: 60px;
  }
}

.p-about__title-main {
  padding-inline: 40px;
}

.p-about__title-sub {
  letter-spacing: 4.2px;
}
@media screen and (min-width: 800px) {
  .p-about__title-sub {
    padding-top: 10px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__title-sub {
    padding-top: 2px;
  }
}

.p-about__contents-inner {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .p-about__contents-inner {
    max-width: 100%;
    gap: 48px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-inner {
    gap: 62px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-inner {
    max-width: 1920px;
  }
}

.p-about__contents-item-img {
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
  width: clamp(355px, 355px + (385) * (100vw - 375px) / (800 - 375), 740px);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  aspect-ratio: 355/187.41;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: clamp(380px, 380px + (280) * (100vw - 800px) / (1366 - 800), 660px);
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-img {
    width: clamp(660px, 660px + (140) * (100vw - 1366px) / (1926 - 1366), 800px);
  }
}

.p-about__contents-item {
  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: 25px;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item {
    gap: 103px;
  }
}

@media screen and (min-width: 800px) {
  .p-about__contents-item-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-1 {
    padding-right: clamp(100px, 100px + (100) * (100vw - 1366px) / (1926 - 1366), 200px);
  }
}

@media screen and (min-width: 800px) {
  .p-about__contents-item-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-2 {
    padding-left: clamp(100px, 100px + (100) * (100vw - 1366px) / (1926 - 1366), 200px);
  }
}

.p-about__contents-item-1 {
  position: relative;
}
.p-about__contents-item-1 .p-about__contents-item-img {
  border-radius: 0 30px 30px 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-1 .p-about__contents-item-img {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (min-width: 1926px) {
  .p-about__contents-item-1 .p-about__contents-item-img {
    border-radius: 30px 30px 30px 30px;
  }
}
.p-about__contents-item-1::before {
  content: "";
  position: absolute;
  top: -7%;
  right: -56px;
  width: 240px;
  height: 241px;
  aspect-ratio: 240/241;
  background-image: url("../img/bg_circle01@3x 1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-1::before {
    width: 325px;
    height: 327px;
    left: -53px;
    right: auto;
    top: -88px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-1::before {
    width: 484px;
    height: 487px;
    top: -192px;
  }
}

.p-about__contents-item-2 .p-about__contents-item-img {
  border-radius: 30px 0 0 30px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-2 .p-about__contents-item-img {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (min-width: 1926px) {
  .p-about__contents-item-2 .p-about__contents-item-img {
    border-radius: 30px 30px 30px 30px;
  }
}

.p-about__contents-item-text-wrap {
  padding-inline: 20px;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-text-wrap {
    padding-inline: 0;
  }
}

.p-about__contents-item-text-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #B7A4C9;
  padding-inline: 10px;
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-text-title {
    padding-inline: 20px;
  }
}
.p-about__contents-item-text-title h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 30px;
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-text-title h3 {
    font-size: 1.5rem;
    line-height: 36px;
  }
}

.p-about__contents-item-1 .p-about__contents-item-text-title {
  position: relative;
}
.p-about__contents-item-1 .p-about__contents-item-text-title::before {
  content: "";
  position: absolute;
  top: -26%;
  left: -9px;
  width: 60px;
  height: 60px;
  background-image: url("../img/bg_circle01@3x 1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-1 .p-about__contents-item-text-title::before {
    width: 70px;
    height: 70px;
    top: 50px;
    left: -14px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-1 .p-about__contents-item-text-title::before {
    width: 100px;
    height: 101px;
    top: -26%;
    left: -30px;
  }
}
.p-about__contents-item-1 h3 {
  color: #A68EBD;
}

.p-about__contents-item-2 .p-about__contents-item-text-title {
  position: relative;
}
.p-about__contents-item-2 .p-about__contents-item-text-title::before {
  content: "";
  position: absolute;
  top: -22%;
  left: -12px;
  width: 60px;
  height: 60px;
  background-image: url("../img/bg_circle01@3x 4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-2 .p-about__contents-item-text-title::before {
    width: 70px;
    height: 70px;
    top: -34%;
    left: -15px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-2 .p-about__contents-item-text-title::before {
    width: 100px;
    height: 101px;
    top: -51%;
    left: -30px;
  }
}
.p-about__contents-item-2 h3 {
  color: #C594A3;
}

.p-about__contents-item-text-description {
  padding-top: 20px;
  padding-inline: 10px;
  position: relative;
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-text-description {
    padding-inline: 20px;
  }
}
.p-about__contents-item-text-description p {
  color: #392E29;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-about__contents-item-text-description p + p {
  padding-top: 15px;
}

.p-about__contents-item-2 .p-about__contents-item-text-description::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -86px;
  width: 240px;
  height: 241px;
  aspect-ratio: 240/241;
  background-image: url("../img/bg_circle01@3x 4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .p-about__contents-item-2 .p-about__contents-item-text-description::before {
    width: 432px;
    height: 435px;
    left: 126%;
    top: -138px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__contents-item-2 .p-about__contents-item-text-description::before {
    width: 612px;
    height: 616px;
    left: 143%;
    top: -211px;
  }
}

.p-about__buttons {
  padding-top: 40px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 800px) {
  .p-about__buttons {
    padding-top: 57px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__buttons {
    padding-top: 68px;
  }
}

.p-about__button-otice {
  position: relative;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-about__button-otice p {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .p-about__button-otice p {
    color: #392E29;
    text-align: center;
    font-size: 1.25rem;
  }
}
.p-about__button-otice::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -45px;
  width: 45px;
  height: 45px;
  background-image: url("../img/fukidashi.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  rotate: -1deg;
}
@media screen and (min-width: 800px) {
  .p-about__button-otice::before {
    top: -9px;
  }
}
.p-about__button-otice::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -45px;
  width: 45px;
  height: 45px;
  background-image: url("../img/fukidashi.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 1;
  rotate: 1deg;
}
@media screen and (min-width: 800px) {
  .p-about__button-otice::after {
    top: -9px;
  }
}

.p-about__button {
  margin-top: 20px;
}

.p-about__button-description {
  padding-top: 20px;
}
.p-about__button-description p {
  color: #392E29;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-about__img-wrap {
  position: absolute;
  bottom: 0;
  left: 53%;
}
@media screen and (min-width: 800px) {
  .p-about__img-wrap {
    bottom: 17px;
    left: 20%;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__img-wrap {
    bottom: 28px;
    left: 50%;
    width: 100%;
    max-width: 600px;
  }
}

.p-about__img {
  width: 131px;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(24%);
          transform: translateX(-50%) translateY(24%);
  bottom: 0;
}
@media screen and (min-width: 800px) {
  .p-about__img {
    width: 153px;
  }
}
@media screen and (min-width: 1366px) {
  .p-about__img {
    width: 200px;
    left: -52%;
  }
}

/*----------------------------------
    p-present
-----------------------------------*/
.p-present {
  padding-block: 50px 54px;
  background: #FBF7F1;
}
@media screen and (min-width: 800px) {
  .p-present {
    padding-block: 90px 70px;
  }
}
@media screen and (min-width: 1366px) {
  .p-present {
    padding-block: 97px 80px;
  }
}

.p-present__inner {
  padding-inline: 20px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .p-present__inner {
    max-width: 1160px;
    padding-inline: clamp(50px, 50px + (30) * (100vw - 800px) / (1366 - 800), 80px);
  }
}
@media screen and (min-width: 1366px) {
  .p-present__inner {
    max-width: 1606px;
    padding-inline: clamp(143px, 143px + (57) * (100vw - 1366px) / (1926 - 1366), 200px);
  }
}

.p-present__title {
  position: relative;
  padding-top: 4px;
  margin-inline: auto;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-present__title h2 {
  color: #63524A;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.23;
}
@media screen and (min-width: 800px) {
  .p-present__title h2 {
    color: #63524A;
    text-align: center;
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 1.3966431095rem + 0.7067137809vw, 2rem);
    line-height: 1.21429;
  }
}

.p-present__title-img {
  position: absolute;
  width: 35px;
}
.p-present__title-img svg path {
  stroke: #C594A3;
}

.p-present__title-img-left {
  left: -9px;
  top: 54%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
@media screen and (min-width: 800px) {
  .p-present__title-img-left {
    left: -12px;
  }
}
@media screen and (min-width: 1366px) {
  .p-present__title-img-left {
    left: -20px;
  }
}

.p-present__title-img-right {
  right: -9px;
  top: 54%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media screen and (min-width: 800px) {
  .p-present__title-img-right {
    right: -12px;
  }
}
@media screen and (min-width: 1366px) {
  .p-present__title-img-right {
    right: -20px;
  }
}

.p-present__contents {
  margin-top: 23px;
  border-radius: 5px;
  background: #FFF;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-present__contents {
    margin-top: 47px;
  }
}
@media screen and (min-width: 1366px) {
  .p-present__contents {
    margin-top: 35px;
  }
}

.p-present__contents-inner {
  padding-inline: 20px;
  padding-block: 40px;
}
@media screen and (min-width: 800px) {
  .p-present__contents-inner {
    padding-inline: 40px;
  }
}

.p-present__contents-img {
  position: absolute;
  width: 125px;
  height: 65px;
  aspect-ratio: 25/13;
  right: 11px;
  top: -32.979px;
}
@media screen and (min-width: 800px) {
  .p-present__contents-img {
    width: 154px;
    height: 80px;
    right: 4%;
    top: -14px;
  }
}
@media screen and (min-width: 1366px) {
  .p-present__contents-img {
    width: 214px;
    height: 111px;
    right: 5.5%;
  }
}

.p-present__contents-title h3 {
  color: #63524A;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-present__contents-items {
  padding-top: 21px;
  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: 14px;
}
@media screen and (min-width: 800px) {
  .p-present__contents-items {
    padding-top: 32px;
    gap: 20px;
  }
}

.p-present__contents-item {
  border-bottom: 1px solid #B7A4C9;
  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: 10px;
  width: 100%;
  padding-bottom: 15px;
}
@media screen and (min-width: 800px) {
  .p-present__contents-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 20px;
    gap: 18px;
    padding-bottom: 19px;
    max-width: 707px;
  }
}

.p-present__contents-item-value p {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .p-present__contents-item-value p {
    text-align: left;
  }
}

.p-present__contents-item-value-default p {
  font-weight: 400;
}

.p-present__description {
  padding-top: 29px;
}
@media screen and (min-width: 1366px) {
  .p-present__description {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.p-present__description p {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.p-present__btn-wrap {
  margin-top: 42px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (min-width: 800px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 800px) {
  .u-hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 1366px) {
  .u-hidden-xd {
    display: none;
  }
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.u-color-white {
  color: #fff;
}

.u-color-coupon {
  color: #F27649;
}

.u-color-accent {
  color: #A68EBD;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-button-accent {
  background-color: #B7A4C9;
}

.u-bg-button-main {
  background-color: #DFB8C4;
}

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