@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: 0.2em;
  background: #001034;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #fff;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-break: normal;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.7;
}

img,
svg {
  vertical-align: top;
  border: none;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: 0.25em 0.5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: 0.25em 0.5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #fff;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

form button[type=submit]:not(:disabled),
form input[type=submit]:not(:disabled),
form input[type=button]:not(:disabled) {
  cursor: pointer;
}

form button[type=submit]:not(:disabled):hover,
form button[type=submit]:not(:disabled):focus,
form input[type=submit]:not(:disabled):hover,
form input[type=submit]:not(:disabled):focus,
form input[type=button]:not(:disabled):hover,
form input[type=button]:not(:disabled):focus {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  border-color: transparent;
  background-color: #b2b2b2;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #F0F0F0;
  background-image: none;
  padding: 0.3125rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0 16px 0 0;
  padding: 0 0 0 1.875em;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: "";
}

input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 50%;
  background: #707070;
  width: 0.625em;
  height: 0.625em;
  content: "";
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.66666667em;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #fff;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  content: "";
}

input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:focus + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-30%, -70%) translateX(0.5em) rotate(45deg);
  transform: translate(-30%, -70%) translateX(0.5em) rotate(45deg);
  opacity: 1;
  border-right: 0.25em solid #fff;
  border-bottom: 0.25em solid #fff;
  width: 0.5em;
  height: 1em;
  content: "";
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: 0.4em 2.4em 0.4em 0.8em;
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

/************************************************************************
* base
************************************************************************/
a:not([class]) {
  color: #03c;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  table-layout: fixed;
}

address {
  font-style: normal;
}

/************************************************************************
* end base
************************************************************************/
.l-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top 0.3s ease 0s;
  transition: top 0.3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

.l-header.l-header--shop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 0 solid transparent;
  border-radius: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(35.08%, #FFF), to(#A8A4A4));
  background: linear-gradient(180deg, #FFF 35.08%, #A8A4A4 100%);
  padding: 0.7142857143em 2em;
  width: 11.25rem;
  color: #2A4998;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.c-btn:hover,
.c-btn:focus {
  opacity: 0.7;
  outline: none;
}

.c-btn > span {
  -webkit-background-clip: text;
  background: -webkit-gradient(linear, left top, left bottom, from(#2036A7), to(#5297DE));
  background: linear-gradient(to bottom, #2036A7 0%, #5297DE 100%);
  color: transparent;
}

.c-btn.c-btn--back {
  background: #2A4998;
  color: #fff;
}

/************************************************************************
* c-sectionTitleWrap
************************************************************************/
.c-sectionTitleWrap {
  position: relative;
  background: linear-gradient(95deg, #2036A7 0%, #5297DE 100%);
  padding: 1.75rem 20px;
  text-align: center;
}

.c-sectionTitleWrap::before,
.c-sectionTitleWrap::after {
  position: absolute;
  right: 0;
  left: 0;
  background-color: #fff;
  height: 1px;
  content: "";
}

.c-sectionTitleWrap::before {
  top: 7px;
}

.c-sectionTitleWrap::after {
  bottom: 7px;
}

/************************************************************************
* p-about
************************************************************************/
.p-about {
  background: transparent url("../img/about-bg-sp.webp") no-repeat center top/cover;
  padding-top: 6.9375rem;
  padding-bottom: 3.75rem;
}

.p-about__subTitle {
  margin-right: auto;
  margin-left: auto;
  width: 15.25rem;
  max-width: 100%;
}

.p-about__subTitle > img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.p-about__mainTitle {
  margin-top: 0.4375rem;
}

.p-about__body {
  margin-top: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 17.25rem;
}

.p-about__lead {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  color: #FFF;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 0 0.3846153846em #061B67;
}

.p-about__lead img {
  -o-object-fit: contain;
  object-fit: contain;
}

.p-about__img {
  margin-top: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
  width: 17.25rem;
  max-width: 100%;
}

.p-about__img img {
  aspect-ratio: 276/160;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-about__note {
  margin-top: 0.9375rem;
  color: #E0E4F3;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1;
}

/************************************************************************
* p-contactPage
************************************************************************/
.p-contactPage__content {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
}

.p-contactPage__forPartnerWrap {
  margin-top: 0.625rem;
  text-align: right;
}

.p-contactPage__forPartner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#2036A7), to(#5297DE));
  background: linear-gradient(to right, #2036A7, #5297DE);
  padding: 0.3em 1.5em;
  color: #fff;
  font-size: 10px;
}

.p-contactPage__forPartnerIcon {
  margin-right: 0.5em;
  width: 1.2em;
  height: 0.9em;
}

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

.p-contactPage__formWrap {
  margin-top: 1.5625rem;
}

.p-drawer {
  z-index: 40;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  margin-right: -0.625rem;
  padding: 0.625rem;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: "MENU";
}

.p-drawer__icon.is-opened::after {
  content: "CLOSE";
}

.p-header--top .p-drawer__icon {
  margin-top: 1.25rem;
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
  height: 22px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: 8px;
  background: #fff;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(10px) rotate(315deg);
  transform: translateY(10px) rotate(315deg);
  background: #fff;
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-10px) rotate(-315deg);
  transform: translateY(-10px) rotate(-315deg);
  background: #fff;
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  background: linear-gradient(102deg, #F5F4F4 0%, #BABABA 100%);
  padding-top: 7.5rem;
  padding-bottom: 12.5rem;
  width: 100%;
  max-width: 100%;
  max-height: var(--vh, 100vh);
  overflow: auto;
  color: #2A4998;
  text-align: center;
}

.p-drawer__content.is-opened {
  visibility: visible;
  opacity: 1;
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: 2.25rem;
}

.p-drawer__navLink {
  display: inline-block;
  height: 1.0625rem;
}

.p-drawer__navLink img {
  width: auto;
  height: 100%;
}

.p-drawer__navItem:last-child .p-drawer__navLink {
  height: 1.5rem;
}

.p-drawer__btnWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.5rem;
}

.p-drawer__btn {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 0.8125rem;
  width: 14.375rem;
  color: #2A4998;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.p-drawer__btn + .p-drawer__btn {
  margin-top: 0.625rem;
}

/************************************************************************
* p-drawerPc
************************************************************************/
.p-drawerPc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 50px;
  right: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.3125rem;
  overflow: hidden;
}

.p-drawerPc__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-backdrop-filter: blur(0.78125rem);
  backdrop-filter: blur(0.78125rem);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-property: width, opacity;
  transition-property: width, opacity;
  border: 1px solid currentColor;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.18);
  padding: 0;
  width: 0;
  height: 100%;
}

.p-drawerPc__navItem {
  line-height: 1;
}

.p-drawerPc__navItem + .p-drawerPc__navItem {
  position: relative;
  margin-left: 1.25rem;
}

.p-drawerPc__navItem + .p-drawerPc__navItem::before {
  position: absolute;
  top: 50%;
  left: -0.625rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  width: 2px;
  height: 0.9375rem;
  content: "";
}

.p-drawerPc__navLink {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  height: 1.5625rem;
}

.p-drawerPc__navLink img {
  display: inline-block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawerPc__navItem:last-child .p-drawerPc__navLink {
  height: 1.9375rem;
}

.p-drawerPc__icon {
  position: fixed;
  top: 50px;
  right: 40px;
  margin-left: 0;
}

.p-drawerPc .p-drawerPc__icon {
  margin-top: 0;
  margin-right: 0;
}

/* hover ******************************************************************/
.p-drawerPc:hover .p-drawerPc__navList {
  opacity: 1;
  padding: 1.125rem 6rem 1.125rem 2.5rem;
  width: 31.0625rem;
}

.p-drawerPc:hover .p-drawerPc__icon .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.p-drawerPc:hover .p-drawerPc__icon .p-drawer__bar:first-child {
  -webkit-transform: translateY(10px) rotate(315deg);
  transform: translateY(10px) rotate(315deg);
  width: 100%;
}

.p-drawerPc:hover .p-drawerPc__icon .p-drawer__bar:last-child {
  -webkit-transform: translateY(-10px) rotate(-315deg);
  transform: translateY(-10px) rotate(-315deg);
  width: 100%;
}

/************************************************************************
* p-footer
************************************************************************/
.p-footer {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 70px;
  text-align: center;
}

.p-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer__logo {
  width: 11.5rem;
}

.p-footer__logo a {
  display: block;
}

.p-footer__logo img {
  display: block;
}

.p-footer__nav {
  margin-top: 1.875rem;
}

.p-footer__navList {
  gap: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-footer__navItem {
  color: #000;
}

.p-footer__navLink {
  display: block;
  padding: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.1;
}

.p-footer__copy {
  margin-top: 1.25rem;
  color: #959595;
  font-size: 10px;
  text-align: center;
}

.p-form__list {
  background-color: #fff;
  padding: 1.25rem;
}

.p-form__item {
  display: block;
  font-size: 0.9375rem;
}

.p-form__item + .p-form__item {
  margin-top: 0.875rem;
}

.p-form__itemHead {
  width: 100%;
}

.p-form__itemBody {
  margin-top: 0.3125rem;
}

.p-form__label {
  color: #000;
}

.p-form__label.is-required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__label.is-required::after {
  display: inline-block;
  margin-left: 0.7em;
  border-radius: 0.3em;
  background-color: #2A4998;
  padding: 0.6em 0.5em;
  color: #fff;
  font-size: 66.666667%;
  line-height: 1;
  content: "必須";
}

.p-form__label--prepend {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 2.375rem;
  -ms-flex: 0 0 2.375rem;
  flex: 0 0 2.375rem;
  font-weight: 400;
}

.p-form__input {
  border-radius: 0.1875rem;
  width: 100%;
}

.p-form__textarea {
  min-height: 9.375rem;
}

.p-form__note {
  margin-top: 0.3125rem;
  font-size: 10px;
}

.p-form__privacyWrap {
  margin-top: 1.5625rem;
  color: #fff;
  text-align: center;
}

.p-form__privacyPrependText {
  font-size: 0.75rem;
}

.p-form__privacyPrependText > a {
  color: #EDECB9;
  text-decoration: underline;
}

.p-form__privacyLabelWrap {
  margin-top: 10px;
}

.p-form__privacyLabel {
  margin-top: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
}

.p-form__footer {
  margin-top: 1.5625rem;
  text-align: center;
}

.p-form__submit {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.p-form__submit + .p-form__submit {
  margin-top: 0.625rem;
}

/************************************************************************
* p-fv
************************************************************************/
.p-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}

.p-header.p-header--top {
  border-bottom: none;
}

.p-header__logo {
  margin-right: auto;
  margin-left: auto;
  width: 5.25rem;
}

.p-header__logo a {
  display: block;
}

.p-header__logo img,
.p-header__logo svg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__drawerBtn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/************************************************************************
* p-instagram
************************************************************************/
.p-instagram {
  background: transparent url("../img/instagram-bg-sp.webp") no-repeat center center/cover;
  padding-top: 9.125rem;
  padding-bottom: 9.6875rem;
}

.p-instagram__content {
  margin-right: auto;
  margin-left: auto;
  max-width: 480px;
}

.p-instagram__title {
  margin-right: auto;
  margin-left: auto;
  width: 13.875rem;
}

.p-instagram__body {
  margin-top: 1.875rem;
}

.p-instagram__imgWrap {
  gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-instagram__footer {
  margin-top: 1.875rem;
  text-align: center;
}

.p-instagram__btn {
  display: inline-block;
  width: 11.25rem;
}

/************************************************************************
  * p-lowerPage
  ************************************************************************/
.p-lowerPage__main {
  padding-top: 3.125rem;
  padding-bottom: 4.375rem;
}

.p-lowerPage__lead {
  margin-top: 1.875rem;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}

.p-lowerPage__content {
  margin-top: 1.875rem;
}

.p-lowerPage__footer {
  margin-top: 1.5625rem;
  text-align: center;
}

/************************************************************************
* p-pageTitle
************************************************************************/
.p-pageTitle {
  text-align: center;
}

.p-pageTitle__ja {
  height: 1.3125rem;
}

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

.p-pageTitle__en {
  margin-top: 0.625rem;
  height: 2.0625rem;
}

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

/************************************************************************
* p-points
************************************************************************/
.p-points__wrapper {
  padding-bottom: 6.25rem;
}

.p-points__container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  height: 100vh;
  min-height: 100vh;
}

.p-points__inner {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80vh;
}

.p-points__contentWrap {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 11;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 100%;
  margin-top: 2vh;
}

.p-points__marks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 494px;
}

.p-points__mark {
  position: relative;
  width: 5.125rem;
  height: 4.9375rem;
}

.p-points__mark + .p-points__mark {
  margin-left: -0.5rem;
}

.p-points__activeMarkImg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.5s;
  transition: -webkit-clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
}

.p-points__items {
  position: relative;
  margin-top: 0.625rem;
  width: 100%;
  height: calc(100% - 0.625rem - 4.9375rem);
}

.p-points__item {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}

.p-points__img {
  width: 100%;
  height: 100%;
  text-align: center;
}

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

.p-points__itemFooter {
  margin-top: 0.9375rem;
}

.p-points__itemFooterItem:not(:first-child) {
  display: none;
}

.p-points__itemNote {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 1.25rem;
  margin-right: 5.625rem;
  color: #E0E4F3;
  font-size: 10px;
  line-height: 1;
  margin-bottom: 3vh;
}

.p-points__itemNote p {
  padding-left: 1em;
  text-indent: -1em;
}

.p-points__code {
  position: absolute;
  top: auto;
  right: 100px;
  bottom: 0;
  left: auto;
  width: 4.4375rem;
  height: 3.875rem;
  margin-bottom: 3vh;
}

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

/************************************************************************
* p-present
************************************************************************/
.p-present {
  background: transparent url("../img/campaign-bg-sp.webp") no-repeat center top/cover;
  padding-top: 14.9333333333vw;
  padding-bottom: 4.375rem;
}

.p-present__titleWrap {
  position: relative;
  padding: 1.25rem;
}

.p-present__titleWrap::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.75;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, rgba(255, 255, 255, 0.57)), color-stop(50%, rgba(255, 255, 255, 0.85)), color-stop(75%, rgba(255, 255, 255, 0.57)), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.57) 25%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.57) 75%, transparent 100%);
  content: "";
}

.p-present__subTitle {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: 12.9375rem;
}

.p-present__mainTitle {
  position: relative;
  z-index: 1;
  margin-top: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 20.625rem;
  max-width: 100%;
}

.p-present__body {
  display: grid;
  grid-template: "main" "img" "footer";
  margin-top: 1.875rem;
}

.p-present__imgWrap {
  position: relative;
  grid-area: img;
  margin-top: 0.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 13.75rem;
}

.p-present__mainImg {
  width: 100%;
}

.p-present__mainImg img {
  aspect-ratio: 220/260;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-present__lottery {
  position: absolute;
  top: -5%;
  right: -22%;
  width: 6.25rem;
  height: 6.25rem;
}

.p-present__lottery img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-present__content {
  display: contents;
}

.p-present__main {
  grid-area: main;
  margin-right: auto;
  margin-left: auto;
  width: 11.25rem;
}

.p-present__footer {
  grid-area: footer;
  margin-top: -1.125rem;
  text-align: center;
}

.p-present__btn {
  display: inline-block;
  width: 11.25rem;
}

/************************************************************************
* p-privacyContent
************************************************************************/
.p-privacyContent {
  background-color: #fff;
  padding: 1.875rem 1.25rem;
}

.p-privacyContent__block {
  color: #000;
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-privacyContent__block + .p-privacyContent__block {
  margin-top: 1.875rem;
}

.p-privacyContent__block > p + ul {
  margin-top: 0.9375rem;
}

.p-privacyContent__block > p + ul > li {
  position: relative;
  padding-left: 1.25rem;
}

.p-privacyContent__block > p + ul > li::before {
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: linear-gradient(336deg, #D9D9D9 0%, #A8A4A4 100%);
  width: 0.625rem;
  height: 0.625rem;
  content: "";
}

.p-privacyContent__block > p + ul > li + li {
  margin-top: 0.625rem;
}

.p-privacyContent__block ul > li > ul {
  margin-top: 0.3125rem;
}

.p-privacyContent__block ul > li > ul > li {
  position: relative;
  padding-left: 0.9375rem;
}

.p-privacyContent__block ul > li > ul > li::before {
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: currentColor;
  width: 0.3125rem;
  height: 1px;
  content: "";
}

.p-privacyContent__block ul > li > ul > li + li {
  margin-top: 0.3125rem;
}

/************************************************************************
* p-product
************************************************************************/
.p-product {
  background: transparent url("../img/product-bg-sp.webp") no-repeat center bottom/cover;
  padding-bottom: 3.125rem;
}

.p-product__titleWrap {
  line-height: 1;
}

.p-product__subTitle {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 0.2222222222em currentColor;
}

.p-product__mainTitle {
  margin-top: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 13.125rem;
}

.p-product__content {
  position: relative;
  margin-top: 2.5rem;
}

.p-product__productList {
  position: absolute;
  top: 0;
  left: 0;
}

.p-product__productList li {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 0.625rem;
  font-weight: 400;
}

.p-product__productList li.is-active {
  opacity: 1;
}

.p-product__productList li + li {
  margin-top: 0.3125rem;
}

.p-product__titleList {
  position: relative;
  width: 100%;
  height: 2.125rem;
}

.p-product__titleList li {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  height: 100%;
  text-align: center;
}

.p-product__titleList li.is-active {
  visibility: visible;
  opacity: 1;
}

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

.p-product__sliderWrap {
  margin-top: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 2.9375rem;
  max-width: 502px;
}

.p-product__meta {
  margin-top: 1.25rem;
}

.p-product__metaItem {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  text-align: center;
}

.p-product__metaItem.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  -webkit-animation: fadein 1s 1 forwards;
  animation: fadeIn 1s 1 forwards;
}

.p-product__metaName {
  width: auto;
  height: 3.25rem;
}

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

.p-product__metaLead {
  margin-top: 0.625rem;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.p-product__metaLead sup {
  font-size: 0.5416666667em;
}

.p-product__metaFragrance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.75rem;
}

.p-product__metaFragrance figure {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.875rem;
  -ms-flex: 0 0 1.875rem;
  flex: 0 0 1.875rem;
  height: 1.875rem;
}

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

.p-product__metaFragrance p {
  margin-left: 0.625rem;
  width: auto;
  height: 1.0625rem;
}

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

.p-product__metaPrice {
  margin-top: 0.1875rem;
  font-size: 10px;
}

.p-product__btnArea {
  margin-top: 0.625rem;
  text-align: center;
}

.p-product__btn {
  width: 11.25rem;
}

.p-product__metaNote {
  margin-top: 1.875rem;
  width: 100%;
  font-size: 10px;
  line-height: 1.3;
  text-align: left;
}

.p-product__metaNote p {
  padding-left: 1em;
  text-indent: -1em;
}

/************************************************************************
* p-productSlider
************************************************************************/
.p-productSlider {
  position: relative;
}

.p-productSlider__img {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.p-productSlider__slide.swiper-slide-active .p-productSlider__img,
.p-productSlider__slide.swiper-slide-duplicate-active .p-productSlider__img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.p-productSlider__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-productSlider__btn.p-productSlider__btn--prev {
  left: 0;
}

.p-productSlider__btn.p-productSlider__btn--next {
  right: 0;
}

/************************************************************************
* p-shopCta
************************************************************************/
.p-shopCta {
  padding-top: 5rem;
  padding-bottom: 9.25rem;
}

.p-shopCta__titleWrap {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  text-align: center;
  text-shadow: 0 0 0.2222222222em #fff;
}

.p-shopCta__subTitle {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-shopCta__mainTitle {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
  text-transform: uppercase;
}

.p-shopCta__body {
  margin-top: 1.5625rem;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  text-align: center;
}

.p-shopCta__lead {
  font-size: 0.9375rem;
}

.p-shopCta__note {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
}

.p-shopCta__footer {
  margin-top: 1.875rem;
}

.p-shopCta__btn {
  display: inline-block;
  width: 11.25rem;
}

/************************************************************************
* p-shopFv
************************************************************************/
.p-shopFv {
  aspect-ratio: 375/530;
  position: relative;
  padding-top: 1.25rem;
}

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

.p-shopFv__logo {
  position: relative;
  z-index: 21;
  width: 5.8125rem;
}

.p-shopFv__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/************************************************************************
* p-shopHeader
************************************************************************/
.p-shopHeader {
  padding-top: 1.875rem;
}

.p-shopHeader__drawerBtn {
  display: block;
  margin-left: auto;
}

/************************************************************************
* p-shopMain
************************************************************************/
.p-shopMain {
  background: transparent url("../img/shop-body-bg-sp.webp") no-repeat center top/cover;
  padding-top: 6.25rem;
  padding-bottom: 4.375rem;
}

.p-shopMain__titleWrap {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  text-align: center;
  text-shadow: 0 0 0.2222222222em #fff;
}

.p-shopMain__subTitle {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-shopMain__mainTitle {
  margin-top: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 7.4375rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  line-height: 1;
  text-transform: uppercase;
}

.p-shopMain__body {
  margin-top: 1.875rem;
}

.p-shopMain__lead {
  margin-right: auto;
  margin-left: auto;
  width: 9.1875rem;
}

.p-shopMain__note {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  text-align: center;
}

.p-shopMain__btnArea {
  margin-top: 1.875rem;
  text-align: center;
}

.p-shopMain__buyBtn {
  display: inline-block;
  width: 11.25rem;
}

.p-shopMain__list {
  gap: 0.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 3.125rem;
}

.p-shopMain__btn {
  display: inline-block;
  -webkit-box-shadow: 0 3px 0 0 #2036A7;
  box-shadow: 0 3px 0 0 #2036A7;
  border-radius: 5px;
  background: linear-gradient(135deg, #2036A7 0%, #5297DE 100%);
  padding: 1em;
  width: calc((100% - 0.6875rem) / 2);
  font-size: 10px;
  text-align: center;
}

/************************************************************************
* p-shopPage
************************************************************************/
.p-shopPage__main {
  margin-top: -74.6666666667vw;
}

/************************************************************************
* p-therapist
************************************************************************/
.p-therapist__mainTitle {
  color: #FFF;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 0.1666666667em #FFF;
}

.p-therapist__subTitle {
  margin-top: 0.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 10.3125rem;
  max-width: 100%;
}

.p-therapist__contentWrap {
  background: transparent url("../img/therapist-bg-sp.webp") no-repeat center top/cover;
  padding-top: 2.1875rem;
  padding-bottom: 6.25rem;
}

.p-therapist__body {
  margin-right: auto;
  margin-left: auto;
  width: 60%;
  max-width: 500px;
}

.p-therapist__bodyLead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.p-therapist__bodyLead img {
  display: block;
  vertical-align: middle;
}

.p-therapist__bodyLead::before,
.p-therapist__bodyLead::after {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  background-color: currentColor;
  width: 0;
  height: 1px;
  content: "";
}

.p-therapist__bodyLead > span {
  display: inline-block;
  margin-right: 0.75rem;
  margin-left: 0.75rem;
  width: 5.3125rem;
}

.p-therapist__bodyContent {
  margin-top: 1rem;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  text-align: center;
}

.p-therapist__img {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.p-therapist__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-therapist__bodyMain {
  position: relative;
  z-index: 0;
}

.p-therapist__bodyPrimary {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.625rem;
}

.p-therapist__bodyRole {
  margin-right: auto;
  margin-left: auto;
  width: 8.8125rem;
  font-size: 1.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.p-therapist__roleMain {
  display: block;
}

.p-therapist__roleSub {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  font-size: 0.5185185185em;
}

.p-therapist__bodyName {
  margin-top: 0.3125rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-therapist__bodyName > span {
  margin-left: 0.5em;
  font-size: 0.7em;
}

.p-therapist__bodySecondary {
  margin-top: 0.625rem;
}

.p-therapist__bodyDev {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.p-therapist__bodyComp {
  margin-top: 1em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-therapist__bodyComp > a {
  color: inherit;
}

/************************************************************************
* p-top
************************************************************************/
.p-top .p-header__logo {
  display: none;
}

.p-top__fv, .sakura-fv {
  margin-top: calc(var(--header-height, 100px) * -1);
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-animationWrap {
  overflow-x: hidden !important;
}

.u-bgc-black {
  background-color: #000 !important;
}

.u-bgc-white {
  background-color: #fff !important;
}

.u-bgc-important {
  background-color: #f00 !important;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

/************************************************************************
* u-font-family
************************************************************************/
.u-ff-shippori {
  font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
}

/************************************************************************
* u-fontweight
************************************************************************/
.u-fw-regular {
  font-weight: 400 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-fullWidthPc {
  margin-left: calc(50% - 50vw + (100vw - var(--vw, 100vw)) / 2);
  width: var(--vw, 100vw);
}

.u-fullWidthPc__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 1326px;
  max-width: 100%;
}

.u-hidden {
  display: none !important;
}

.u-letter-spacing-l {
  letter-spacing: 0.18em !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

/************************************************************************
* u-strong
************************************************************************/
.u-strong {
  color: #2A4998;
  font-weight: 700;
}

.u-color-black {
  color: #000 !important;
}

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

.u-color-alert {
  color: #f00 !important;
}

.error_messe {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 1.875rem;
  height: 1.875rem;
}

.swiper-button-prev {
  background-image: url("../img/icon-chevron-left.webp");
}

.swiper-button-next {
  background-image: url("../img/icon-chevron-right.webp");
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: lightgreen;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url("../img/icon-chevron-right.webp");
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url("../img/icon-chevron-left.webp");
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
@media screen and (min-width: 600px) {
  .p-form__itemBody {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .u-hidden--tab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2441679627vw;
  }
  input,
  textarea {
    padding: 0.625rem;
  }
  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1326px;
  }
  .l-container.l-container--narrow {
    max-width: 840px;
  }
  .l-container.l-container--wide {
    max-width: 1583.2px;
  }
  .c-btn {
    width: 15.625rem;
    font-size: 1.125rem;
  }
  .c-sectionTitleWrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .c-sectionTitleWrap::before {
    top: 10px;
  }
  .c-sectionTitleWrap::after {
    bottom: 10px;
  }
  .p-about {
    background-image: url("../img/about-bg.webp");
    padding-top: 4.625rem;
    padding-bottom: 5.375rem;
  }
  .p-about__subTitle {
    width: 25.8125rem;
  }
  .p-about__mainTitle {
    margin-top: 0.9375rem;
  }
  .p-about__body {
    margin-top: 1.25rem;
    max-width: 33.9375rem;
  }
  .p-about__lead {
    font-size: 0.9375rem;
  }
  .p-about__img {
    margin-top: 1.25rem;
    width: 33.9375rem;
  }
  .p-about__img img {
    aspect-ratio: 543/300;
  }
  .p-about__note {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
  }
  .p-contactPage__forPartner {
    font-size: 0.8125rem;
  }
  .p-contactPage__formWrap {
    margin-top: 1.875rem;
  }
  .p-footer {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .p-footer__logo {
    width: 14.125rem;
  }
  .p-footer__nav {
    margin-top: 50px;
  }
  .p-footer__navList {
    gap: 1.875rem;
    grid-template-columns: repeat(3, auto);
  }
  .p-footer__navItem + .p-footer__navItem {
    position: relative;
  }
  .p-footer__navItem + .p-footer__navItem::before {
    position: absolute;
    top: 0.625rem;
    bottom: 0.625rem;
    left: -0.9375rem;
    background-color: currentColor;
    width: 1px;
    content: "";
  }
  .p-footer__navLink {
    display: inline-block;
    padding: 0.625rem;
    font-size: 0.9375rem;
  }
  .p-footer__copy {
    font-size: 0.875rem;
  }
  .p-form__list {
    padding: 2.5rem;
  }
  .p-form__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 1.125rem;
  }
  .p-form__item + .p-form__item {
    margin-top: 1.25rem;
  }
  .p-form__item.p-form__item--content {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .p-form__itemHead {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 13.75rem;
    -ms-flex: 0 0 13.75rem;
    flex: 0 0 13.75rem;
  }
  .p-form__label.is-required::after {
    font-size: 0.8125rem;
  }
  .p-form__input {
    border-radius: 0.25rem;
  }
  .p-form__textarea {
    min-height: 15.625rem;
  }
  .p-form__note {
    font-size: 0.8125rem;
  }
  .p-form__privacyWrap {
    margin-top: 1.875rem;
  }
  .p-form__privacyPrependText {
    font-size: 0.9375rem;
  }
  .p-form__privacyLabel {
    font-size: 0.9375rem;
  }
  .p-form__footer {
    margin-top: 1.875rem;
  }
  .p-form__submit + .p-form__submit {
    margin-top: 0.9375rem;
  }
  .p-header {
    padding-top: 2.5rem;
    padding-bottom: 2.1875rem;
  }
  .p-header__logo {
    width: 10.4375rem;
  }
  .p-header__nav {
    display: block;
    margin-left: auto;
  }
  .p-header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-header__nav li + li {
    margin-left: 2.875rem;
  }
  .p-header__nav li > a {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .p-header__drawer {
    display: none;
  }
  .p-instagram {
    background-image: url("../img/instagram-bg.webp");
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .p-instagram__title {
    width: 18.3125rem;
  }
  .p-instagram__imgWrap {
    gap: 0.9375rem;
  }
  .p-instagram__footer {
    margin-top: 2.5rem;
  }
  .p-instagram__btn {
    width: 15.625rem;
  }
  .p-lowerPage__main {
    padding-bottom: 7.5rem;
  }
  .p-lowerPage__lead {
    margin-top: 2.1875rem;
    font-size: 0.875rem;
  }
  .p-lowerPage__content {
    margin-top: 3.125rem;
  }
  .p-lowerPage__footer {
    margin-top: 1.875rem;
  }
  .p-pageTitle__ja {
    height: 1.8125rem;
  }
  .p-pageTitle__en {
    margin-top: 1.0625rem;
    height: 3.375rem;
  }
  .p-points__container {
    width: 80%;
  }
  .p-points__inner {
    /* height: 80vh; */
  }
  .p-points__mark {
    width: 7.6875rem;
    height: 7.375rem;
  }
  .p-points__mark + .p-points__mark {
    margin-left: 0;
  }
  .p-points__items {
    height: calc(100% - 0.625rem - 7.375rem);
  }
  .p-points__item {
    margin-right: auto;
    margin-left: auto;
  }
  .p-points__itemFooter {
    margin-top: 1.25rem;
  }
  .p-points__itemNote {
    left: 0;
    margin-right: 8.125rem;
    font-size: 0.875rem;
  }
  .p-points__code {
    right: -100px;
    width: 7.1875rem;
    height: 6.3125rem;
  }
  .p-present {
    margin-top: -25.625vw;
    background-image: url("../img/campaign-bg.webp");
    padding-top: 21.5972222222vw;
    padding-bottom: 1.875rem;
  }
  .p-present__subTitle {
    width: 18rem;
  }
  .p-present__mainTitle {
    margin-top: 1.0625rem;
    width: 27.1875rem;
  }
  .p-present__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-present__imgWrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 23.0625rem;
    -ms-flex: 0 0 23.0625rem;
    flex: 0 0 23.0625rem;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 23.0625rem;
  }
  .p-present__mainImg img {
    aspect-ratio: 369/437;
  }
  .p-present__lottery {
    top: 6%;
    right: -10%;
    width: 7.8125rem;
    height: 7.8125rem;
  }
  .p-present__content {
    display: block;
    margin-left: 1.875rem;
  }
  .p-present__main {
    width: 17.75rem;
  }
  .p-present__footer {
    margin-top: 1.875rem;
  }
  .p-present__btn {
    width: 15.625rem;
  }
  .p-privacyContent {
    padding: 2.5rem;
  }
  .p-privacyContent__block {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
  .p-privacyContent__block > p + ul {
    margin-top: 1.25rem;
  }
  .p-privacyContent__block > p + ul > li::before {
    top: 0.6428571429em;
  }
  .p-privacyContent__block > p + ul > li + li {
    margin-top: 0.75rem;
  }
  .p-privacyContent__block ul > li > ul {
    margin-top: 0.5rem;
  }
  .p-privacyContent__block ul > li > ul > li::before {
    top: 0.6428571429em;
  }
  .p-product {
    background-image: url("../img/product-bg.webp");
    padding-bottom: 12.2916666667vw;
  }
  .p-product__subTitle {
    font-size: 1.5625rem;
  }
  .p-product__mainTitle {
    width: 16.375rem;
  }
  .p-product__content {
    margin-top: 3.75rem;
  }
  .p-product__productList li {
    font-size: 1rem;
  }
  .p-product__productList li + li {
    margin-top: 0.5rem;
  }
  .p-product__titleList {
    height: 2.6875rem;
  }
  .p-product__sliderWrap {
    margin-top: 1.875rem;
    padding: 0 4.375rem;
  }
  .p-product__metaName {
    height: 3.75rem;
  }
  .p-product__metaLead {
    font-size: 1rem;
  }
  .p-product__metaFragrance {
    margin-top: 0.9375rem;
  }
  .p-product__metaFragrance figure {
    -webkit-flex-basis: 2.5rem;
    -ms-flex-preferred-size: 2.5rem;
    flex-basis: 2.5rem;
    height: 2.5rem;
  }
  .p-product__metaFragrance p {
    margin-left: 0.9375rem;
    height: 1.4375rem;
  }
  .p-product__metaPrice {
    font-size: 0.8125rem;
  }
  .p-product__btn {
    width: 15.625rem;
  }
  .p-product__metaNote {
    margin-top: 0.9375rem;
    font-size: 0.8125rem;
  }
  .p-shopCta {
    background-image: url("../img/cta_bg.webp");
    background-size: cover;
    padding-top: 7.5rem;
    padding-bottom: 14.875rem;
  }
  .p-shopCta__subTitle {
    font-size: 1.5625rem;
  }
  .p-shopCta__mainTitle {
    margin-top: 0.75rem;
    font-size: 3.125rem;
  }
  .p-shopCta__body {
    margin-top: 3.125rem;
  }
  .p-shopCta__lead {
    font-size: 1.25rem;
  }
  .p-shopCta__note {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
  .p-shopCta__footer {
    margin-top: 2.5rem;
  }
  .p-shopCta__btn {
    width: 15.625rem;
  }
  .p-shopFv {
    aspect-ratio: 1440/700;
    padding-top: 3.125rem;
  }
  .p-shopFv__logo {
    width: 12.6875rem;
  }
  .p-shopMain {
    background-image: url("../img/shop-body-bg.webp");
    padding-bottom: 7.5rem;
  }
  .p-shopMain__subTitle {
    font-size: 1.5625rem;
  }
  .p-shopMain__mainTitle {
    margin-top: 0.75rem;
    width: 13rem;
    font-size: 3.125rem;
  }
  .p-shopMain__body {
    margin-top: 3.125rem;
  }
  .p-shopMain__lead {
    width: 29.5rem;
  }
  .p-shopMain__note {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
  .p-shopMain__buyBtn {
    width: 15.625rem;
  }
  .p-shopMain__list {
    gap: 1.25rem;
  }
  .p-shopMain__btn {
    width: calc((100% - 2.5rem) / 3);
    font-size: 1rem;
  }
  .p-shopPage__main {
    margin-top: -24.3055555556vw;
  }
  .p-therapist__mainTitle {
    font-size: 2.3125rem;
  }
  .p-therapist__subTitle {
    margin-top: 0.9375rem;
    width: 16.875rem;
  }
  .p-therapist__contentWrap {
    background-image: url("../img/therapist-bg.webp");
  }
  .p-therapist__body {
    margin-top: 3.125rem;
    width: 100%;
    max-width: none;
  }
  .p-therapist__bodyLead > span {
    margin-right: 1.75rem;
    margin-left: 1.75rem;
    width: 9rem;
  }
  .p-therapist__bodyContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.5rem;
  }
  .p-therapist__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    margin-left: -0.8125rem;
  }
  .p-therapist__img img {
    aspect-ratio: 380/300;
  }
  .p-therapist__bodyMain {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    margin-left: 2.5rem;
  }
  .p-therapist__bodyRole {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    font-size: 2.5rem;
  }
  .p-therapist__roleMain {
    display: inline-block;
    width: 54%;
  }
  .p-therapist__roleSub {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
    width: 46%;
  }
  .p-therapist__bodyName {
    font-size: 1.875rem;
  }
  .p-therapist__bodySecondary {
    margin-top: 1.875rem;
  }
  .p-therapist__bodyDev {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .p-therapist__bodyComp {
    font-size: 0.9375rem;
  }
  .p-top__fv, .sakura-fv {
    margin-top: calc(var(--header-height, 174px) * -1);
  }
  .p-top__about {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-onlyTab {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .u-onlyPc {
    display: block;
  }
  .u-hidden--pc {
    display: none !important;
  }
}
@media (min-width: 1286px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-points__item:nth-child(2) .p-points__code {
    bottom: -4.125rem;
  }
  .p-points__item:nth-child(3) .p-points__code {
    bottom: -1.5rem;
  }
  .p-points__item:nth-child(4) .p-points__itemFooter {
    margin-right: 4.25rem;
  }
  .p-present__titleWrap {
    margin-right: -20px;
    margin-left: -20px;
  }
  .p-therapist__bodyMain {
    margin-top: 0.625rem;
  }
  .u-onlySp {
    display: block;
  }
  .u-hidden--sp {
    display: none !important;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
.note-show {
  display: none;
}
@media (max-width: 1280px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1280px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

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

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

.new-wrap {
  background-image: url("../img/fvbg.webp");
  background-size: 100%;
  background-position: center 1.5277777778vw;
  background-repeat: no-repeat;
}
@media (min-width: 1441px) {
  .new-wrap {
    background-size: cover;
  }
}
@media (max-width: 1280px) {
  .new-wrap {
    background-size: cover;
    background-position: left top;
  }
}
@media (max-width: 1024px) {
  .new-wrap {
    background-image: url(../img/fv-sp.webp);
    background-position: center;
  }
}

.p-fv {
  padding-top: 156px;
}
@media (min-width: 1441px) {
  .p-fv {
    padding-top: 10.8333333333vw;
  }
}
@media (max-width: 1024px) {
  .p-fv {
    padding-top: 76px;
  }
}
@media (max-width: 767px) {
  .p-fv {
    padding-top: 20.2666666667vw;
  }
}
.p-fv .p-fv__inner {
  display: flex;
  max-width: 1308px;
  align-items: flex-start;
  position: relative;
  z-index: 11;
  overflow: hidden;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner {
    max-width: 90.8333333333vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner {
    flex-direction: column;
    align-items: center;
    position: static;
  }
}
.p-fv .p-fv__inner .right {
  width: 561px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .right {
    width: 38.9583333333vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .right {
    margin-top: 23px;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .right {
    margin-top: 6.1333333333vw;
  }
}
.p-fv .p-fv__inner .right img {
  width: 100%;
  position: relative;
  left: 40px;
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .right img {
    position: static;
    max-width: 330px;
    display: block;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .right img {
    max-width: 88vw;
  }
}
@media screen and (max-width: 1110px) {
  .p-fv .p-fv__inner .right {
    width: 500px;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .right {
    width: 100%;
  }
}
.p-fv .p-fv__inner .left {
  width: calc(100% - 561px);
  padding-right: 55px;
  padding-top: 120px;
  padding-left: 28px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left {
    width: calc(100% - 38.9583333333vw);
    padding-right: 3.8194444444vw;
    padding-top: 8.3333333333vw;
    padding-left: 1.9444444444vw;
  }
}
@media screen and (max-width: 1110px) {
  .p-fv .p-fv__inner .left {
    width: calc(100% - 500px);
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
  }
}
.p-fv .p-fv__inner .left .p-fv__neneWrap {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  left: -10px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap {
    margin-bottom: 2.0833333333vw;
    left: -0.6944444444vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap {
    position: static;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap {
    margin-bottom: 8vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new {
  margin-top: 27px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new {
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new {
    margin-top: 7.2vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new img {
  width: 81.53px;
  height: auto;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new img {
    width: 5.6618055556vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new img {
    position: absolute;
    width: 41.699px;
    height: auto;
    top: 25px;
    left: 25px;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__new img {
    width: 11.1197333333vw;
    top: 6.6666666667vw;
    left: 6.6666666667vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene {
  margin-left: 79px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene {
    margin-left: 5.4861111111vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene img {
  width: 335px;
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene img {
    width: 23.2638888889vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene {
    margin-left: unset;
  }
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene img {
    width: 141px;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .left .p-fv__neneWrap .p-fv__nene img {
    width: 37.6vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__leadWrap p {
  text-align: center;
}
.p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead2 {
  font-size: 32px;
  color: #FFF;
  text-shadow: 0px 0px 7px #0A2362;
  font-family: "Shippori Mincho";
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.2px;
  filter: drop-shadow(0px 0px 7px #0A2362);
}
@media (min-width: 1441px) {
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead2 {
    font-size: 2.2222222222vw;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead2 {
    font-size: 17px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead2 {
    font-size: 4.5333333333vw;
  }
}
.p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 {
  color: #FFF;
  text-align: center;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.1px;
  filter: drop-shadow(0px 0px 7px #0A2362);
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 {
    padding-top: 5px;
  }
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 img {
    display: block;
    max-width: 336px;
    margin: auto;
  }
}
@media (max-width: 1024px) {
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 {
    padding-top: 1.3333333333vw;
  }
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 img {
    max-width: 89.6vw;
  }
  .p-fv .p-fv__inner .left .p-fv__leadWrap .p-fv__lead1 img.tab-hide {
    display: none;
  }
}

.about-sec {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-top: 95px;
  position: relative;
}
@media (max-width: 1024px) {
  .about-sec {
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }
}
.about-sec::before {
  content: "";
  width: 100%;
  height: 34.7222222222vw;
  background: rgb(2, 21, 65);
  background: linear-gradient(0deg, rgb(2, 21, 65) 0%, rgb(2, 21, 65) 70%, rgba(2, 21, 65, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0px;
  background-size: cover;
  background-position: center top;
}
@media (min-width: 1441px) {
  .about-sec::before {
    height: 300px;
    background: linear-gradient(0deg, rgb(2, 21, 65) 0%, rgb(2, 21, 65) 30%, rgba(2, 21, 65, 0) 100%);
  }
}
@media (max-width: 1024px) {
  .about-sec::before {
    bottom: -1px;
  }
}
@media (max-width: 767px) {
  .about-sec::before {
    background: linear-gradient(0deg, rgb(9, 32, 83) 0%, rgb(2, 21, 65) 70%, rgba(2, 21, 65, 0) 100%);
  }
}
.about-sec .section-inner {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-sec .section-inner {
    z-index: 3;
  }
}
.about-sec .section-inner .ttl {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding-top: 31px;
  padding-bottom: 31px;
  margin-bottom: 35px;
  content: "";
}
@media (max-width: 1024px) {
  .about-sec .section-inner .ttl {
    padding-top: 15px;
    padding-bottom: 16px;
  }
}
.about-sec .section-inner .ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, rgba(255, 255, 255, 0.57)), color-stop(50%, rgba(255, 255, 255, 0.85)), color-stop(75%, rgba(255, 255, 255, 0.57)), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.57) 25%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.57) 75%, transparent 100%);
}
.about-sec .section-inner .ttl h2 {
  text-align: center;
  color: #092279;
  text-shadow: 0px 0px 3.9999997616px #FFF;
  font-family: "Cochin";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.16em;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .about-sec .section-inner .ttl h2 {
    font-size: 25px;
    letter-spacing: 0;
  }
  .about-sec .section-inner .ttl h2 span {
    letter-spacing: -0.03em;
  }
}
.about-sec .section-inner .desc {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 2px #2A4998, 0px 0px 2px #2A4998;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 22.5px */
  letter-spacing: 1.05px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 1px 4px #2A4998);
}
@media (max-width: 1024px) {
  .about-sec .section-inner .desc {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.about-sec .section-inner .desc .kome {
  position: relative;
  font-size: 10px;
  top: -5px;
}
.about-sec .section-inner .img-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.about-sec .section-inner .img-wrapper img, .about-sec .section-inner .img-wrapper video {
  width: 543px;
  height: 100%;
}
@media (max-width: 767px) {
  .about-sec .section-inner .img-wrapper {
    padding-left: 10.6666666667vw;
    padding-right: 10.6666666667vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .about-sec .section-inner .img-wrapper video {
    width: 100%;
  }
}
.about-sec .section-inner .notice-wrapper {
  max-width: 543px;
  margin: auto;
}
@media (max-width: 767px) {
  .about-sec .section-inner .notice-wrapper {
    padding-left: 10.6666666667vw;
    padding-right: 10.6666666667vw;
  }
}
.about-sec .section-inner .notice-wrapper p {
  font-size: 13px;
  line-height: 1.07692em;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .about-sec .section-inner .notice-wrapper p {
    font-size: 10px;
  }
}

.p-therapist-sec {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  padding-top: 188px;
}
@media (max-width: 767px) {
  .p-therapist-sec {
    padding-top: 120px;
  }
}
@media (max-width: 1024px) {
  .p-therapist-sec {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-therapist-sec .bg-img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 13.8888888889vw;
  z-index: -1;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .p-therapist-sec .bg-img {
    bottom: 240px;
  }
}
@media (max-width: 767px) {
  .p-therapist-sec .bg-img {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-therapist-sec .bg-img {
    bottom: unset;
    top: -13.3333333333vw;
    z-index: 2;
    height: calc(100% + 13.3333333333vw);
  }
}
.p-therapist-sec::after {
  content: "";
  width: 100%;
  height: 190px;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 3;
  opacity: 0.9;
  background: linear-gradient(0deg, rgba(235, 123, 171, 0) 0%, #021541 100%);
}
@media (max-width: 767px) {
  .p-therapist-sec::after {
    background: linear-gradient(0deg, rgba(4, 16, 43, 0.5) 0%, rgb(3, 21, 63) 50%, rgb(3, 21, 63) 100%);
  }
}
@media (max-width: 767px) {
  .p-therapist-sec::after {
    display: none;
  }
}
.p-therapist-sec .section-inner {
  position: relative;
  z-index: 4;
}
.p-therapist-sec .section-inner .ttl {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding-top: 30px;
  padding-bottom: 25px;
  margin-bottom: 50px;
  content: "";
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .ttl {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-bottom: 25px;
  }
}
.p-therapist-sec .section-inner .ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, rgba(255, 255, 255, 0.57)), color-stop(50%, rgba(255, 255, 255, 0.85)), color-stop(75%, rgba(255, 255, 255, 0.57)), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.57) 25%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.57) 75%, transparent 100%);
}
.p-therapist-sec .section-inner .ttl > * {
  z-index: 2;
  position: relative;
}
.p-therapist-sec .section-inner .ttl h2 {
  text-align: center;
  color: #092279;
  font-family: "Shippori Mincho";
  font-size: 37px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 10px;
  letter-spacing: 1.85px;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .ttl h2 {
    font-size: 25px;
    letter-spacing: 0.046em;
    margin-bottom: 10px;
    text-shadow: 0px 0px 7px #FFF;
  }
}
.p-therapist-sec .section-inner .ttl h6 {
  text-align: center;
  color: #092279;
  text-shadow: 0px 0px 9px #FFF;
  font-family: "Shippori Mincho";
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .ttl h6 {
    font-size: 14px;
  }
}
.p-therapist-sec .section-inner .p-therapist__body {
  max-width: 800px;
  margin: auto;
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyMain {
  margin-left: 33px;
  flex: 0 1 60%;
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyMain .p-therapist__bodyPrimary {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 25px;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyMain {
    margin-left: unset;
  }
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyMain .p-therapist__bodyPrimary {
    padding: unset;
  }
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyRole {
  justify-content: center;
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__img {
  flex: 0 1 40%;
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__roleSub {
  width: 42%;
  position: relative;
  top: 10px;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__roleSub {
    width: 85%;
    position: static;
    margin-top: 5px;
  }
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyName {
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodyName {
    padding-bottom: 10px;
  }
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodySecondary {
  margin-top: 15px;
  margin-bottom: 10px;
}
.p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodySecondary .p-therapist__bodyDev {
  position: relative;
  top: 3px;
  left: 2px;
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodySecondary .p-therapist__bodyDev {
    position: static;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .p-therapist-sec .section-inner .p-therapist__body .p-therapist__bodySecondary {
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .p-therapist__bodyContent {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .p-therapist__body {
    width: 53.3333333333vw;
  }
}

.p-top__points {
  background-color: #001034;
}

.p-points__container {
  max-width: 800px;
}

.p-points__wrapper {
  margin-top: 200px;
}
@media (max-width: 767px) {
  .p-points__wrapper {
    margin-top: 100px;
  }
}

.p-sectionWrap1 {
  position: relative;
  z-index: 2;
}

.new-wrap2 .p-points__wrapper .p-points__container {
  z-index: 3;
}
.new-wrap2 .p-points__wrapper .img-wrapper {
  position: absolute;
  left: 0;
  top: calc(-200px - 13.8888888889vw);
}
@media (max-width: 767px) {
  .new-wrap2 .p-points__wrapper .img-wrapper {
    top: -100px;
    height: calc(100% + 100px);
    width: 100%;
  }
}
@media (max-width: 767px) {
  .new-wrap2 .p-points__wrapper .img-wrapper img {
    height: 100%;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .new-wrap2 .p-points__wrapper .img-wrapper {
    top: -440px;
  }
  .new-wrap2 .p-points__wrapper .img-wrapper img {
    height: calc(100% + 100px);
  }
}
.new-wrap2 .p-points__wrapper .img-wrapper::after {
  content: "";
  width: 100%;
  height: 190px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(235, 123, 171, 0) 0%, #001034 100%);
}
@media (max-width: 1024px) {
  .new-wrap2 .p-points__wrapper .img-wrapper::after {
    bottom: -20px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .new-wrap2 .p-points__wrapper .img-wrapper::after {
    height: 510px;
    bottom: -145px;
  }
}
@media (max-width: 767px) {
  .new-wrap2 .p-points__wrapper .img-wrapper::after {
    display: none;
  }
}
.new-wrap2 .p-points__wrapper .bg-img {
  width: 100%;
  height: auto;
}

.p-product .l-container, .p-present .l-container {
  max-width: 1000px;
}
.p-product .ttl, .p-present .ttl {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding-top: 18px;
  padding-bottom: 17px;
  margin-bottom: 35px;
  content: "";
}
.p-product .ttl::after, .p-present .ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, rgba(255, 255, 255, 0.57)), color-stop(50%, rgb(255, 255, 255)), color-stop(75%, rgba(255, 255, 255, 0.57)), to(transparent));
  background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.57) 25%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.57) 75%, transparent 100%);
}
.p-product .ttl > *, .p-present .ttl > * {
  z-index: 2;
  position: relative;
}
.p-product .ttl h2, .p-present .ttl h2 {
  text-align: center;
  color: #092279;
  font-family: "Cochin";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  margin-top: 10px;
  letter-spacing: 1.85px;
}
@media (max-width: 1024px) {
  .p-product .ttl h2, .p-present .ttl h2 {
    font-size: 30px;
    letter-spacing: 0;
    margin-top: 7px;
  }
}
.p-product .ttl h6, .p-present .ttl h6 {
  text-align: center;
  color: #092279;
  font-family: "Shippori Mincho";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}
@media (max-width: 1024px) {
  .p-product .ttl h6, .p-present .ttl h6 {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}

.p-footer {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  .p-footer {
    padding-top: 50px;
  }
}

.section-wrapper {
  position: relative;
  overflow: hidden;
}
.section-wrapper::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 16, 52);
  background: linear-gradient(0deg, rgba(0, 16, 52, 0) 0%, rgb(0, 16, 52) 100%);
  z-index: 2;
}
.section-wrapper .bg-img {
  position: absolute;
  width: 100%;
  height: calc(100% + 100px);
  top: -100px;
}
.section-wrapper .bg-img.bg-img2 {
  height: 70%;
}
.section-wrapper > section {
  background: unset;
  position: relative;
  z-index: 2;
}
.section-wrapper .p-product {
  z-index: 10;
}
.section-wrapper .p-product .disabled {
  pointer-events: none;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .section-wrapper .p-product {
    background-image: url(../img/product-bg-sp.webp);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .section-wrapper .p-present {
    background-image: url(../img/camp-bg-sp.webp);
    background-size: cover;
  }
  .section-wrapper .p-present .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-shopCta {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p-shopCta {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/cta-bg-sp.webp);
    background-size: cover;
  }
}
.p-shopCta .p-shopCta__titleWrap h2, .p-shopCta .p-shopCta__titleWrap p {
  color: #092279;
  text-shadow: 0px 0px 7px #FFF, 0px 0px 7px #FFF, 0px 0px 7px #FFF, 0px 0px 7px #FFF;
}
.p-shopCta .p-shopCta__titleWrap p {
  font-family: "Cochin";
  margin-top: 10px;
}
.p-shopCta .p-shopCta__body p {
  color: #092279;
  text-shadow: 0px 0px 5px #FFF, 0px 0px 5px #FFF, 0px 0px 5px #FFF, 0px 0px 5px #FFF;
}
@media (max-width: 767px) {
  .p-shopCta .p-shopCta__body p {
    text-shadow: 0px 0px 4px #FFF, 0px 0px 5px #FFF, 0px 0px 4px #FFF, 0px 0px 4px #FFF;
  }
}

body {
  background-color: #082056;
}

.code-img-wrapper {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 120px;
}
@media (max-width: 1024px) {
  .code-img-wrapper {
    right: 0;
  }
}
@media (max-width: 767px) {
  .code-img-wrapper {
    width: 19.2vw;
    right: 2.6666666667vw;
  }
}

.code-img {
  width: 100%;
  height: auto;
}

.p-product .l-container {
  max-width: 840px;
}

.p-product__titleList li img {
  height: 30px;
}

.p-drawerPc {
  top: 38px;
  height: 65px;
}
@media (max-width: 1024px) {
  .p-drawerPc {
    top: 35px;
  }
}

@media (max-width: 767px) {
  .p-points__img img.hb {
    max-height: 120%;
  }
}

@media (max-width: 767px) {
  .p-present__imgWrap {
    width: 66.6666666667vw;
  }
}

@media (max-width: 767px) {
  .p-present__main {
    width: 56vw;
  }
}

@media (max-width: 767px) {
  .p-present__lottery {
    right: -15%;
  }
}

@media (max-width: 767px) {
  .p-instagram {
    padding-top: 30px;
    padding-bottom: 120px;
    background-image: url(../img/insta-bg-sp.webp) !important;
    background-size: cover !important;
  }
  .p-instagram .p-instagram__title {
    width: 59.2vw;
  }
  .p-instagram .p-instagram__body {
    max-width: 69.3333333333vw;
    margin: auto;
    margin: 8vw;
  }
}

.about-sec .img-wrapper .video-wrapper {
  position: relative;
}
.about-sec .img-wrapper .video-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  background: #021540;
  transition: all 0.2s;
}
.about-sec .img-wrapper .video-wrapper.active::after {
  opacity: 0;
  pointer-events: none;
}
.about-sec .img-wrapper .video-wrapper img.btn {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 67.12px;
  top: calc(50% - 23.56px);
  left: calc(50% - 25px);
  cursor: pointer;
}
.about-sec .img-wrapper .video-wrapper img.btn.active {
  display: none;
}
@media (max-width: 767px) {
  .about-sec .img-wrapper .video-wrapper img.btn {
    top: calc(50% - 28.56px);
  }
}

.p-form__input {
  color: #000;
}

@keyframes twinkling {
  0% {
    opacity: 1;
    box-shadow: 0px 0px 1.7361111111vw white;
    @media (max-width: 767px) {
      box-shadow: 0px 0px 2.6666666667vw white;
    }
  }
  50% {
    opacity: 0;
    box-shadow: 0px 0px 0.3472222222vw white;
    @media (max-width: 767px) {
      box-shadow: 0px 0px 0.5333333333vw white;
    }
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 1.7361111111vw white;
    @media (max-width: 767px) {
      box-shadow: 0px 0px 2.6666666667vw white;
    }
  }
}
@keyframes twinkling2 {
  0% {
    opacity: 1;
    box-shadow: 0px 0px 6px white; /* 明るさを増やす */
  }
  50% {
    opacity: 0; /* 完全に透明にならないようにする */
    box-shadow: 0px 0px 4px white;
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 6px white; /* 明るさを増やす */
  }
}
.dot {
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  position: absolute;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 5px white;
  -ms-filter: blur(5px);
  filter: blur(5px);
  animation: twinkling 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .dot {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    -ms-filter: blur(2.5px);
    filter: blur(2.5px);
  }
}

.dot2 {
  opacity: 0;
  width: 3px;
  height: 3px;
  position: absolute;
  background-color: #fff; /* 背景色を純白に設定 */
  border-radius: 50%;
  box-shadow: 0px 0px 2px white; /* 明るさを増やす */
  -ms-filter: blur(1px);
  filter: blur(1px);
  z-index: 10;
  animation: twinkling2 3s ease-in-out infinite;
}

.p-points__wrapper .dot2, .about-sec .dot2 {
  z-index: 1;
}

.new-wrap {
  position: relative;
}
.new-wrap .new-moon {
  width: 112px;
  height: auto;
  position: absolute;
  top: 30px;
  left: 44px;
}
.new-wrap .formula {
  position: absolute;
}
.new-wrap .formula1 {
  width: 15.9722222222vw;
  height: 10.4166666667vw;
  top: 11.1111111111vw;
  left: 13.8888888889vw;
}
.new-wrap .formula1 img {
  width: 100%;
}
.new-wrap .formula1 .dot {
  top: 1.5277777778vw;
  left: 3.3333333333vw;
}
.new-wrap .formula2 {
  width: 43.0555555556vw;
  height: 21.5277777778vw;
  top: 2.7777777778vw;
  right: 8.3333333333vw;
}
@media (max-width: 767px) {
  .new-wrap .formula2 {
    width: 90.6666666667vw;
    right: 2.6666666667vw;
    top: 61.3333333333vw;
  }
}
.new-wrap .formula2 img {
  width: 100%;
}
.new-wrap .formula2 .dot1 {
  top: 12.7083333333vw;
  left: 1.6666666667vw;
  animation-delay: 0s;
}
@media (max-width: 767px) {
  .new-wrap .formula2 .dot1 {
    top: 26.4vw;
    left: 3.7333333333vw;
  }
}
.new-wrap .formula2 .dot2 {
  top: 4.6527777778vw;
  left: 7.5694444444vw;
  animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .new-wrap .formula2 .dot2 {
    top: 10.1333333333vw;
    left: 15.7333333333vw;
  }
}
.new-wrap .formula2 .dot3 {
  top: 12.2916666667vw;
  left: 16.3888888889vw;
  animation-delay: 0.8s;
}
@media (max-width: 767px) {
  .new-wrap .formula2 .dot3 {
    top: 25.8666666667vw;
    left: 34.6666666667vw;
  }
}
.new-wrap .formula2 .dot4 {
  top: 6.5277777778vw;
  left: 32.4305555556vw;
  animation-delay: 1.2s;
}
@media (max-width: 767px) {
  .new-wrap .formula2 .dot4 {
    left: 68.5333333333vw;
    top: 13.8666666667vw;
  }
}
.new-wrap .formula2 .dot5 {
  top: 14.0972222222vw;
  left: 39.2361111111vw;
  animation-delay: 1.6s;
}
@media (max-width: 767px) {
  .new-wrap .formula2 .dot5 {
    left: 82.4vw;
    top: 29.3333333333vw;
  }
}

.code-img-wrapper .dot6 {
  top: -1px;
  right: 27px;
}
@media (max-width: 767px) {
  .code-img-wrapper .dot6 {
    top: 0vw;
    right: 4.5333333333vw;
  }
}
.code-img-wrapper .dot7 {
  bottom: 1px;
  left: 27px;
  animation-delay: 0.8s;
}
@media (max-width: 767px) {
  .code-img-wrapper .dot7 {
    left: 4.5333333333vw;
    bottom: 0vw;
  }
}

.p-present__lottery .dot8 {
  top: 36px;
  right: 3px;
}
@media (max-width: 767px) {
  .p-present__lottery .dot8 {
    top: 32px;
    right: 5px;
  }
}
.p-present__lottery .dot9 {
  bottom: 37px;
  left: 3px;
  animation-delay: 0.8s;
}
@media (max-width: 767px) {
  .p-present__lottery .dot9 {
    left: 5px;
    bottom: 34px;
  }
}

@media (max-width: 767px) {
  .p-fv {
    position: relative;
  }
}

.sakura-new-wrap .sakura-fv {
  position: relative;
  height: 64.1666666667vw;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv {
    height: 181.3333333333vw;
  }
}
.sakura-new-wrap .sakura-fv .sakura-fv-bg {
  position: absolute;
  left: 0;
  top: 0;
}
.sakura-new-wrap .sakura-fv .notice {
  position: absolute;
  z-index: 2;
  right: 5.5555555556vw;
  top: 51.3888888889vw;
  color: #FFF;
  font-size: 0.6944444444vw;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .sakura-new-wrap .sakura-fv .notice {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .notice {
    position: static;
    text-align: right;
    margin-top: 1.8666666667vw;
    margin-right: 4.8vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner {
  position: relative;
  z-index: 2;
  padding-left: 53.125vw;
  padding-right: 13.1944444444vw;
  padding-top: 15.5555555556vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .sakura-new-wrap .sakura-fv .section-inner {
    padding-right: unset;
  }
}
@media (max-width: 1024px) {
  .sakura-new-wrap .sakura-fv .section-inner {
    width: 546px;
    padding-left: 0;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 2.6666666667vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .logo {
  width: 17.0138888889vw;
  margin-bottom: 1.0416666667vw;
}
.sakura-new-wrap .sakura-fv .section-inner .logo img {
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.4));
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .logo {
    width: 29.3333333333vw;
    margin-bottom: 0.8vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .txt {
  margin-left: 1.0416666667vw;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .txt {
    margin-left: 0;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 {
  color: #A3606C;
  position: relative;
  text-align: center;
  text-shadow: 0px 0px 7px #FFF, 0px 0px 7px #FFF, 0px 0px 7px #FFF;
  font-family: "Shippori Mincho";
  font-size: 3.4722222222vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1::after {
  content: attr(data-txt);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .txt h1 {
    font-size: 8.4444533333vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .kome {
  position: relative;
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .kome img {
  position: absolute;
  width: 1.7361111111vw;
  height: 1.7361111111vw;
  top: -0.2083333333vw;
  left: -0.9027777778vw;
  max-width: unset;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .txt h1 .kome img {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: -0.5333333333vw;
    left: -2.1333333333vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .span1 {
  margin-right: 0.3472222222vw;
  position: relative;
  line-height: 1em;
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .span1::before {
  content: "";
  background-image: url(../img/kome.webp);
  position: absolute;
  width: 1.7361111111vw;
  height: 1.7361111111vw;
  top: -0.3472222222vw;
  right: -1.1111111111vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .txt h1 .span1::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: -0.5333333333vw;
    right: -3.2vw;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .txt h1 .span1 {
    margin-right: 1.3333333333vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .span1::after {
  content: attr(data-txt);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .span2 {
  position: relative;
  line-height: 1em;
}
.sakura-new-wrap .sakura-fv .section-inner .txt h1 .span2::after {
  content: attr(data-txt);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.sakura-new-wrap .sakura-fv .section-inner .txt .h1-2 {
  display: flex;
}
.sakura-new-wrap .sakura-fv .section-inner .txt .h1-2 span {
  display: block;
  white-space: nowrap;
}
.sakura-new-wrap .sakura-fv .section-inner .box {
  margin-left: 1.0416666667vw;
  position: relative;
  padding: 1.3888888889vw;
  margin-top: 1.3888888889vw;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.sakura-new-wrap .sakura-fv .section-inner .box:focus {
  opacity: unset;
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box {
    width: 460px;
    margin-left: 15px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box {
    margin-top: 97.3333333333vw;
    margin-left: unset;
    width: 100%;
    padding: 3.7333333333vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  background: #FFF;
  filter: blur(5px);
}
.sakura-new-wrap .sakura-fv .section-inner .box:hover {
  opacity: 0.7;
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner img {
  width: 5.5555555556vw;
  height: auto;
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner img {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner img {
    width: 16vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .right {
  width: calc(100% - 5.5555555556vw);
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .right {
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .right {
    width: calc(100% - 16vw);
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner p {
  color: #A3606C;
  font-weight: 700;
  line-height: 1.48em;
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl {
  font-size: 1.1111111111vw;
  text-align: center;
  position: relative;
  top: 0.2083333333vw;
  left: 0.2083333333vw;
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::before, .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
  content: "";
  width: 1.1111111111vw;
  height: 0.1041666667vw;
  border-radius: 99px;
  background-color: #A3606C;
  position: absolute;
  transform: rotate(45deg);
  top: 0.7638888889vw;
  left: 0.9027777778vw;
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::before, .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
    width: 16px;
    height: 1.5px;
    top: 11px;
    left: 13px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::before, .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
    left: 0.8vw;
    width: 3.2vw;
    height: 0.4vw;
    top: 2.6666666667vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
  transform: rotate(-45deg);
  left: unset;
  right: 0.9027777778vw;
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
    right: 13px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl::after {
    right: -1.8666666667vw;
  }
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .ttl {
    font-size: 3.7333333333vw;
    top: unset;
    left: unset;
    letter-spacing: -0.02em;
    padding-left: 2.6666666667vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .desc {
  font-size: 0.9722222222vw;
  margin-bottom: 0.8333333333vw;
  margin-left: 1.0416666667vw;
  position: relative;
  top: 0.2083333333vw;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .desc {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .desc {
    font-size: 2.9333333333vw;
    margin-left: 1.8666666667vw;
    white-space: nowrap;
    margin-bottom: 1.8666666667vw;
  }
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .date {
  font-size: 0.9027777778vw;
  margin-left: 1.0416666667vw;
  position: relative;
  top: 0.0694444444vw;
}
.sakura-new-wrap .sakura-fv .section-inner .box .box-inner .date span {
  padding-left: 0.4861111111vw;
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .date span {
    padding-left: 1.3333333333vw;
  }
}
@media (max-width: 1280px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .date {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .sakura-new-wrap .sakura-fv .section-inner .box .box-inner .date {
    font-size: 2.6666666667vw;
    margin-left: 1.8666666667vw;
  }
}
.sakura-new-wrap .about-sec {
  padding-top: 0;
  margin-top: -1.7361111111vw;
}
@media (max-width: 767px) {
  .sakura-new-wrap .about-sec {
    margin-top: 0;
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .l-main-sakura .p-therapist-sec {
    padding-top: 95px;
  }
}
@media (min-width: 768px) {
  .l-main-sakura .about-sec .section-inner .ttl {
    padding-bottom: 25px;
  }
}
.l-main-sakura .about-sec .section-inner .ttl h2 {
  font-family: "Gill Sans";
  font-weight: 600;
}
.l-main-sakura .about-sec .section-inner .ttl h2 img {
  position: relative;
  top: 5px;
  max-width: 90%;
  width: 502px;
}
.l-main-sakura .p-product .ttl, .l-main-sakura .p-present .ttl {
  padding-bottom: 23px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-product .ttl, .l-main-sakura .p-present .ttl {
    padding-bottom: 17px;
  }
}
.l-main-sakura .p-product .ttl h2, .l-main-sakura .p-present .ttl h2 {
  font-family: "Gill Sans";
  font-weight: 600;
  letter-spacing: 0;
}
.l-main-sakura .p-product .ttl h2 img, .l-main-sakura .p-present .ttl h2 img {
  width: 449px;
  margin: auto;
  max-width: 90%;
  position: relative;
  top: 3px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-product .ttl h2 img, .l-main-sakura .p-present .ttl h2 img {
    top: 0px;
    width: 270px;
  }
}
.l-main-sakura .p-present .ttl h2 img {
  margin: auto;
  width: 502px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .ttl h2 img {
    width: 300px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .ttl h2, .l-main-sakura .p-product .ttl h6, .l-main-sakura .p-present .ttl h6, .l-main-sakura .p-product .ttl h2 {
    text-shadow: 0px 0px 4px #FFF, 0px 0px 7px #FFF;
  }
}
.l-main-sakura .sakura-campaign {
  font-weight: 800;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-campaign {
    font-size: 4.2666666667vw !important;
    text-shadow: 0px 0px 4px #FFF, 0px 0px 7px #FFF;
  }
}
.l-main-sakura .sakura-campaign span {
  font-weight: 600;
  font-family: "Gill Sans";
  letter-spacing: 0.05em;
}
.l-main-sakura .p-product .ttl {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-product .ttl {
    margin-bottom: 13.3333333333vw;
  }
}
.l-main-sakura .sakura-content {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content {
    padding-bottom: 11.7333333333vw;
  }
}
.l-main-sakura .sakura-content .flex {
  display: flex;
  justify-content: space-between;
  padding-left: 55px;
  padding-right: 55px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .flex {
    padding-left: 13.3333333333vw;
    padding-right: 13.3333333333vw;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .flex1 .col1 {
    margin-bottom: 2.8453333333vw;
  }
}
.l-main-sakura .sakura-content .flex2 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .flex2 {
    margin-top: 0;
  }
}
.l-main-sakura .sakura-content .col {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col {
    width: 100%;
  }
}
.l-main-sakura .sakura-content .col .btn {
  display: block;
}
.l-main-sakura .sakura-content .col .btn1 {
  position: relative;
}
.l-main-sakura .sakura-content .col .btn1::before {
  content: "";
  width: 176.3px;
  height: 37px;
  background-image: url(../img/limited.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: -68px;
  top: -18.5px;
  position: absolute;
  transform: rotate(-11.8deg);
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .btn1::before {
    width: 29.3333333333vw;
    height: 6.1333333333vw;
    top: -4vw;
    left: -13.3333333333vw;
  }
}
.l-main-sakura .sakura-content .col .s-img-wrapper {
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.l-main-sakura .sakura-content .col .s-img-wrapper .img1 {
  width: 272px;
}
.l-main-sakura .sakura-content .col .s-img-wrapper .img2 {
  width: 78px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .s-img-wrapper {
    height: 67.7333333333vw;
  }
  .l-main-sakura .sakura-content .col .s-img-wrapper .img1 {
    width: 52.8vw;
  }
  .l-main-sakura .sakura-content .col .s-img-wrapper .img2 {
    width: 16vw;
  }
}
.l-main-sakura .sakura-content .col .p-ttl {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 8px;
}
.l-main-sakura .sakura-content .col .p-ttl img {
  height: 52px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .p-ttl {
    padding-top: 2.6666666667vw;
    padding-bottom: 1.3333333333vw;
  }
  .l-main-sakura .sakura-content .col .p-ttl img {
    height: 10.6666666667vw;
  }
}
.l-main-sakura .sakura-content .col .desc {
  text-align: center;
  color: #FFF;
  font-family: "Shippori Mincho";
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.l-main-sakura .sakura-content .col .desc span {
  font-size: 10px;
  letter-spacing: 0;
  position: relative;
  top: -6px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .desc {
    font-size: 3.2vw;
    margin-bottom: 1.8666666667vw;
  }
  .l-main-sakura .sakura-content .col .desc span {
    top: -1.3333333333vw;
  }
}
.l-main-sakura .sakura-content .col .aloma {
  text-align: center;
}
.l-main-sakura .sakura-content .col .aloma img {
  height: 50px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .aloma img {
    height: 9.6vw;
  }
}
.l-main-sakura .sakura-content .col .notice {
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 77px;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content .col .notice {
    font-size: 2.6666666667vw;
    margin-bottom: unset;
  }
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content ul {
    margin-top: 8vw;
  }
}
.l-main-sakura .sakura-content ul li {
  color: #E0E4F3;
  font-size: 13px;
  font-weight: 500;
  line-height: 115.385%;
}
@media (max-width: 767px) {
  .l-main-sakura .sakura-content ul li {
    font-size: 2.6666666667vw;
    margin-left: 0vw;
  }
}
.l-main-sakura .p-product {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-product {
    position: relative;
  }
  .l-main-sakura .p-product::after {
    content: "";
    background: linear-gradient(0deg, rgb(0, 15, 51) 0%, rgb(0, 15, 51), rgba(0, 15, 51, 0) 100%);
    position: absolute;
    width: 100%;
    height: 26.6666666667vw;
    left: 0;
    bottom: 0px;
    z-index: 20;
    background-size: cover;
    background-position: center top;
  }
  .l-main-sakura .p-product .l-container {
    position: relative;
    z-index: 21;
  }
}
.l-main-sakura .p-product__content {
  padding-top: 85px;
  margin-top: unset;
  border-top: 1px solid white;
}
.l-main-sakura .p-product__content .p-product__productList {
  top: 80px;
}
@media (max-width: 767px) {
  .l-main-sakura .p-product__content {
    padding-top: 10.6666666667vw;
  }
  .l-main-sakura .p-product__content .p-product__productList {
    top: 9.3333333333vw;
  }
}
.l-main-sakura .p-present {
  padding-top: 5.7638888889vw;
  margin-top: 0;
  background-image: url(../img/sakura-camp-bg.webp);
  background-size: 100%;
  height: 86.6666666667vw;
  position: relative;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present {
    height: 206.6666666667vw;
    background-color: #001034;
    background-image: url(../img/sakura-camp-bg-sp.webp);
    padding-top: 0vw;
    margin-top: 0vw;
  }
}
.l-main-sakura .p-present::after {
  content: "";
  background: linear-gradient(0deg, rgba(2, 21, 65, 0) 0%, rgb(2, 21, 65) 50%, rgba(2, 21, 65, 0) 100%);
  position: absolute;
  width: 100%;
  height: 20.8333333333vw;
  left: 0;
  bottom: 0px;
  background-size: cover;
  background-position: center top;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present::after {
    display: none;
  }
}
.l-main-sakura .p-present .section-inner {
  position: absolute;
  width: 27.9861111111vw;
  top: 43.8888888889vw;
  right: 17.9861111111vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-main-sakura .p-present .section-inner .sakura-img {
  width: 10.8333333333vw;
  position: absolute;
  left: -10.4166666667vw;
  top: -9.0277777778vw;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner .sakura-img {
    width: 24.2666666667vw;
    height: 23.2698666667vw;
    left: -23.4666666667vw;
    top: -11.7333333333vw;
  }
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner {
    position: static;
    padding-top: 104vw;
    width: 100%;
  }
}
.l-main-sakura .p-present .section-inner p {
  text-align: center;
  position: relative;
  color: #A3606C;
  text-shadow: 0px 0px 6px #FFF, 0px 0px 7px #FFF, 0px 0px 5px #FFF, 0px 0px 4px #FFF, 0px 0px 5px #FFF;
  font-family: "Shippori Mincho";
  font-size: 1.1805555556vw;
  font-weight: 700;
}
.l-main-sakura .p-present .section-inner p::after {
  content: attr(data-txt);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner p {
    font-size: 3.76vw;
  }
}
.l-main-sakura .p-present .section-inner .nene {
  width: 17.9861111111vw;
  margin-top: 0.8333333333vw;
  margin-bottom: 0.2083333333vw;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner .nene {
    width: 52vw;
    margin-top: 1.8666666667vw;
    margin-bottom: 0vw;
  }
}
.l-main-sakura .p-present .section-inner h6 {
  color: #A3606C;
  text-shadow: 0px 0px 6px #FFF, 0px 0px 7px #FFF, 0px 0px 5px #FFF, 0px 0px 4px #FFF, 0px 0px 5px #FFF;
  font-family: "Shippori Mincho";
  font-size: 1.875vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  letter-spacing: -0.05em;
  margin-bottom: 1.7361111111vw;
}
.l-main-sakura .p-present .section-inner h6::after {
  content: attr(data-txt);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.l-main-sakura .p-present .section-inner h6 span {
  font-family: "Cochin";
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner h6 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.l-main-sakura .p-present .section-inner .more {
  display: block;
  width: 17.3611111111vw;
}
@media (max-width: 767px) {
  .l-main-sakura .p-present .section-inner .more {
    width: 48vw;
  }
}
.l-main-sakura .new-wrap3 {
  position: relative;
}
@media (max-width: 767px) {
  .l-main-sakura .new-wrap3 {
    background-color: #001034;
  }
}
.l-main-sakura .new-wrap3 > section {
  position: relative;
  z-index: 2;
}
.l-main-sakura .new-wrap3 .p-instagram {
  background: unset;
  margin-top: -150px;
  position: relative;
  padding-top: 0;
}
@media (max-width: 767px) {
  .l-main-sakura .new-wrap3 .p-instagram {
    margin-top: unset;
  }
}
.l-main-sakura .new-wrap3 .p-instagram .bg-img2 {
  height: calc(100% + 6.9444444444vw);
  position: absolute;
  top: -6.9444444444vw;
  opacity: 0.5;
  width: 100%;
}
@media (max-width: 767px) {
  .l-main-sakura .new-wrap3 .p-instagram .bg-img2 {
    top: 0;
    height: 100%;
  }
}
.l-main-sakura .new-wrap3 .p-instagram::after {
  content: "";
  background: linear-gradient(0deg, rgba(0, 15, 51, 0) 0%, rgba(0, 15, 51, 0.8) 50%, rgba(0, 15, 51, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  background-size: cover;
  background-position: center top;
}
.l-main-sakura .new-wrap3 .p-instagram .l-container {
  position: relative;
  z-index: 2;
}

.dot2 {
  will-change: transform, opacity;
  /* その他のスタイル */
  transform: translateZ(0);
}

@media (max-width: 767px) {
  .l-main-sakura .p-product {
    background-image: url(../img/product-bg2.webp);
  }
}

.normal-main .about-sec .section-inner .ttl-new {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .normal-main .about-sec .section-inner .ttl-new {
    padding-bottom: 10px;
  }
}
.normal-main h2.new-h2 img {
  width: 504px;
  max-width: 90%;
}
@media (max-width: 767px) {
  .normal-main h2.new-h2 img {
    width: 249px;
  }
}
@media (min-width: 768px) {
  .normal-main .p-product .ttl, .normal-main .p-present .ttl {
    padding-bottom: 22px;
  }
}
.normal-main .p-product .ttl h2 img {
  width: 262px;
  margin: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .normal-main .p-product .ttl h2 img {
    max-width: 158px;
  }
}
.normal-main .p-present .ttl h2 img {
  width: 539px;
  margin: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .normal-main .p-present .ttl h2 img {
    max-width: 324px;
  }
}

/*# sourceMappingURL=style.css.map */
