@charset "UTF-8";
:root {
  --font-gothic:
    "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  --font-maru:
    "Zen Maru Gothic", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  --font-caveat:
    "Caveat", cursive, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
  "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
  sans-serif;
  --fz-base: 16px;
  --fz-h1: 40px;
  --fz-h2-l: 40px;
  --fz-h2-m: 22px;
  --fz-h3: 20px;
  --fz-cap: 12px;
  --color-pb: #e88b74;
  --color-po: #b56d7a;
  --color-pe: #cf7356;
  --color-pmi: #e99596;
  --color-pb: #e7906a;
  --color-pmu: #d0a2c0;
  --color-pv: #E88B74;
  --color-pink1: #ffe5e1;
  --color-pink2: #f9b9b9;
  --color-pink3: #f6a0a0;
  --color-base: #fdeeea;
  --color-text: #666666;
  --color-shadow: #ec8f90;
}

html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  animation: fadeIn 0.5s ease 0s 1 normal;
  color: var(--color-text);
  overflow-x: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

#lp-form {
  display: none;
}

.fade-in {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-lazy {
  transition-delay: 800ms;
  transition-duration: 2000ms;
}

.js-lineup-fadeIn {
  opacity: 0;
  transform: translate(0, 50px);
  transition-duration: 800ms;
  transition-delay: 1s;
  transition-property: opacity, transform;
}

.js-lineup-fadeIn.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.js-marker {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, var(--color-pink3), var(--color-pink3));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%; /* '30%'の部分にマーカーの太さを記入 */
  transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
}

/* アニメーション発火時 */
.js-marker.inview {
  background-size: 100% 100%; /* '30%'の部分は上で設定した太さに合わせる */
}

.js-scale {
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}

.js-scale.inview {
  transform: scale(1);
}

.js-alert {
  background: transparent;
}

.js-alert.is-active {
  animation: softFlashTwice 3s ease-in-out forwards;
  animation-delay: 2s;
}

@keyframes softFlashTwice {
  0% {
    background: rgba(255, 255, 255, 0);
  }
  /* 1回目 */
  15% {
    background: rgba(255, 255, 255, 0.4);
  }
  30% {
    background: rgba(255, 255, 255, 0);
  }
  /* 2回目（少し弱めでもOK） */
  45% {
    background: rgba(255, 255, 255, 0.4);
  }
  60% {
    background: rgba(255, 255, 255, 0);
  }
  /* 余韻 */
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes doubleBounce {
  0% {
    transform: translateY(0);
  }
  /* 1回目バウンド（大きめ） */
  10% {
    transform: translateY(-12px);
  }
  20% {
    transform: translateY(0);
  }
  /* 2回目バウンド（少し小さく） */
  30% {
    transform: translateY(-6px);
  }
  40% {
    transform: translateY(0);
  }
  /* 余韻（止まる時間） */
  100% {
    transform: translateY(0);
  }
}
.l-bg-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url(https://d2w53g1q050m78.cloudfront.net/storefitsjapanco/uploads/lp/palettory/bg.webp);
  background-size: 100%;
  background-position: top left;
  z-index: 98;
}

.l-bg-main {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(https://d2w53g1q050m78.cloudfront.net/storefitsjapanco/uploads/lp/palettory/bg.webp);
  background-size: cover;
}

.l-bg-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url(https://d2w53g1q050m78.cloudfront.net/storefitsjapanco/uploads/lp/palettory/bg.webp);
  background-size: 100%;
  background-position: bottom left;
  z-index: 98;
}

.l-column {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px;
  gap: 90px;
  z-index: 1;
}

.l-main {
  position: relative;
  background-color: var(--color-base);
  max-width: 390px;
  border-radius: 20px;
}

.l-sticky {
  position: sticky;
}
.l-sticky.-nav {
  top: 60px;
}
.l-sticky.-cta {
  top: 310px;
}

@media screen and (max-width: 1280px) {
  .l-cta {
    display: none;
  }
}

.p-nav {
  width: 220px;
  margin: 0 auto;
  border-top: 1px solid #fff;
  color: #fff;
  font-family: var(--font-maru);
  font-weight: 400;
  text-align: center;
}
.p-nav__list {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #fff;
}
.p-nav__list a, .p-nav__lineup-head {
  position: relative;
  display: block;
  transition: 0.3s;
  cursor: pointer;
}
.p-nav__list a:hover, .p-nav__lineup-head:hover {
  transform: translateY(-3px);
}
.p-nav__lineup-head::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.p-nav__lineup-head.is-open::after {
  top: 62%;
  transform: translateY(-50%) rotate(-135deg);
}
.p-nav__lineup-body {
  display: none;
}
.p-nav__lineup-body-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 88%;
  max-width: 193px;
  margin: 20px auto;
}
.p-nav__item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.p-nav__item:hover {
  background: #fff;
  transform: none !important;
}
.p-nav__item:hover img {
  filter: invert(28%) sepia(10%) saturate(960%) hue-rotate(302deg) brightness(105%) contrast(95%);
}
.p-nav__item img {
  height: 18px;
}

.p-select {
  display: none;
}

.p-fv {
  position: relative;
  overflow: hidden;
}
.p-fv__bg {
  filter: blur(10px);
  transform: scale(1.1);
  transition: 0.8s;
}
.p-fv__bg.is-show {
  transform: scale(1);
  filter: blur(0);
}
.p-fv__title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 359px;
  filter: blur(10px);
  transition: 1.3s;
}
.p-fv__title.is-show {
  filter: blur(0);
}
.p-fv__lead {
  position: absolute;
  bottom: 108px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 312px;
}
.p-fv__deco {
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
}
.p-fv__deco.-left {
  left: 0;
}
.p-fv__deco.-right {
  right: 0;
}
.p-fv__deco span {
  display: block;
  background: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.p-fv__deco span:nth-of-type(2) {
  width: 5px;
  height: 5px;
  transform: translate(-7px, -20px);
}
.p-fv__deco span:nth-of-type(3) {
  width: 6px;
  height: 6px;
  transform: translate(-14px, -30px);
}
.p-fv__deco span:nth-of-type(4) {
  width: 7px;
  height: 7px;
  transform: translate(-21px, -40px);
}
.p-fv__deco span:nth-of-type(5) {
  width: 8px;
  height: 8px;
  transform: translate(-30px, -50px);
}
.p-fv__peach {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
}
.p-fv__peach img {
  animation: doubleBounce 2s ease-in-out infinite;
}

.p-links {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-pink2);
  border-top: 1px solid #fff;
}
.p-links__item {
  width: 50%;
  box-sizing: border-box;
}
.p-links__item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 95px;
  padding: 25px 25px 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: var(--font-maru);
  font-size: var(--fz-h3);
  font-weight: 500;
  text-align: center;
}
.p-links__item a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-links.js-timer-adjust .p-links__item:nth-of-type(1) {
  width: 100%;
}
.p-links.js-timer-adjust .p-links__item {
  border-left: none;
}
.p-links__item:nth-of-type(even) {
  border-left: 1px solid #fff;
}
.p-links.js-timer-adjust .p-links__item:nth-of-type(3) {
  border-left: 1px solid #fff;
}

.p-info {
  position: relative;
  padding: 35px 30px;
}
.p-info__img {
  position: absolute;
  top: 0;
  left: 0;
}
.p-info .c-heading {
  margin-bottom: 20px;
}
.p-info .c-btn {
  margin-top: 15px;
  background: radial-gradient(#F6A0A0, #F9B9B9);
  color: #fff;
}

.p-lineup {
  background: var(--color-pink2);
  padding: 46px 20px 60px;
  color: #fff;
  scroll-margin-top: 40px;
}
.p-lineup .c-heading {
  margin-bottom: 33px;
  color: #fff;
}
.p-lineup__lead {
  text-align: center;
  font-size: 22px;
  font-family: var(--font-maru);
  font-weight: 900;
  line-height: 1.5;
}
.p-lineup__lead span {
  padding: 0 5px;
  -webkit-text-stroke: 1.5px var(--color-shadow);
}
.p-lineup__lead span.js-marker {
  background-image: linear-gradient(transparent 35%, var(--color-shadow) 35%);
  background-size: 0 100%;
}
.p-lineup__lead span.js-marker.inview {
  background-size: 100% 100%;
}
.p-lineup__textFirst {
  width: 295px;
  margin: 0 auto;
  padding-bottom: 8px;
}
.p-lineup__textLast {
  width: 245px;
  margin: 0 auto;
  padding-bottom: 8px;
}
.p-lineup__keyword {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin: 33px 0 12px;
  letter-spacing: 0.1em;
  font-size: 25px;
  font-weight: 600;
}
.p-lineup__collabo {
  width: 100px;
  height: 23px;
  border: 2px solid #fff;
  border-radius: 2px;
}
.p-lineup .c-text {
  line-height: 1.7;
}
.p-lineup__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 30px;
  width: 264px;
  margin: 30px auto 0;
}
.p-lineup__list {
  width: 68px;
}
.p-lineup__list a {
  position: relative;
  display: block;
  border: 1px solid #fff;
  border-radius: 4px;
  overflow: hidden;
}
.p-lineup__list a:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}
.p-lineup__list a img {
  position: relative;
  transition: 0.3s;
}
.p-lineup__list a:hover img {
  transform: scale(1.1);
}
.p-lineup__number {
  position: absolute !important;
  top: 7px;
  right: 7px;
  height: 13px;
}

.p-aoharu {
  background: #fff;
  padding: 40px 30px 38px;
  scroll-margin-top: 40px;
}
.p-aoharu__img {
  width: 100px;
  margin: 0 auto 30px;
}
.p-aoharu__heading {
  margin-bottom: 24px;
}
.p-aoharu__video {
  position: relative;
  display: block;
  width: 61.5%;
  max-width: 240px;
  margin: 0 auto 30px;
}
.p-aoharu__video video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.p-aoharu__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.p-aoharu__control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-aoharu__control.is-hidden {
  display: none;
}
.p-aoharu__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}
.p-aoharu__btn .is-hidden {
  display: none;
}
.p-aoharu__btn .is-show {
  display: block;
}

.p-footer {
  background-image: url(https://d2w53g1q050m78.cloudfront.net/storefitsjapanco/uploads/lp/palettory/bg_footer.webp);
  background-size: cover;
  padding: 60px 20px 20px;
  color: #fff;
}
.p-footer__img {
  width: 59%;
  max-width: 230px;
  margin: 0 auto 35px;
}
.p-footer__img img {
  width: 100%;
}
.p-footer__links {
  display: flex;
  justify-content: center;
}
.p-footer__links + .p-footer__links {
  margin-top: 15px;
}
.p-footer__link {
  margin-left: 15px;
  padding-left: 15px;
  font-size: var(--fz-cap);
  font-weight: 300;
  line-height: 1;
}
.p-footer__link + .p-footer__link {
  border-left: 1px solid #fff;
}
.p-footer__company {
  width: 35.8%;
  max-width: 140px;
  margin: 40px auto 40px;
}
.p-footer__copyright {
  font-size: var(--fz-cap);
  font-weight: 300;
  text-align: center;
}

.p-product .p-product__inner {
  position: relative;
  margin-bottom: -26px;
  padding-top: 60px;
  scroll-margin-top: 40px;
}
.p-product__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-product__round {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  width: 75px;
  height: 75px;
}
.p-product__round-number {
  height: 18px;
}
.p-product__round-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.p-product__round-rotate {
  animation: rotateAnimation 15s linear infinite;
}
.p-product__title {
  position: relative;
  width: 61.5%;
  max-width: 240px;
  margin: 0 auto 80px;
}
.p-product__pyramid {
  position: relative;
  width: 89.7%;
  max-width: 350px;
  margin: 0 auto;
}
.p-product__bottle {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
  width: 42px;
  z-index: 10;
}
.p-product__pic {
  position: absolute;
  top: 17px;
  right: -14px;
  transform: translateY(-100%);
  width: 144px;
}
.p-product__pic.-pb {
  top: 35px;
}
.p-product__pic.-pmu {
  top: 47px;
}
.p-product__cta {
  position: relative;
  margin-top: 116px;
  padding: 30px 30px 40px;
  border-radius: 30px;
  z-index: 5;
}
.p-product__cta-head {
  display: flex;
  justify-content: space-between;
}
.p-product__box {
  width: 121px;
}
.p-product__peach {
  animation: doubleBounce 2s ease-in-out infinite;
}
.p-product__number {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-product__number-txt {
  height: 23px;
}
.p-product__ja {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: var(--fz-h3);
  font-family: var(--font-maru);
}
.p-product__text {
  line-height: 1.7;
}
.p-product__price {
  text-align: right;
}
.p-product .c-btn {
  margin-top: 23px;
  color: #fff;
}

#pmi .p-product__bottle {
  box-shadow: 0 0 20px 0 rgba(233, 149, 150, 0.5);
}
#pmi .p-product__cta {
  color: var(--color-pmi);
  background: #FCEDE9;
}
#pmi .c-btn {
  background: radial-gradient(#F3A5B1, #F8D1D8);
}

#pb .p-product__bottle {
  box-shadow: 0 0 20px 0 rgba(231, 144, 106, 0.5);
}
#pb .p-product__cta {
  color: var(--color-pb);
  background: #FCEDE9;
}
#pb .c-btn {
  background: radial-gradient(#F29B91, #F6BAAF);
}

#pmu .p-product__bottle {
  box-shadow: 0 0 20px 0 rgba(208, 162, 192, 0.5);
}
#pmu .p-product__cta {
  color: var(--color-pmu);
  background: #FCEDE9;
}
#pmu .c-btn {
  background: radial-gradient(#D0A2C0, #F1CBD9);
}

#pe .p-product__bottle {
  box-shadow: 0 0 20px 0 rgba(207, 115, 86, 0.5);
}
#pe .p-product__cta {
  color: var(--color-pe);
  background: #FCEDE9;
}
#pe .c-btn {
  background: radial-gradient(#CF7356, #E3978D);
}

#po .p-product__bottle {
  box-shadow: 0 0 20px 0 rgba(181, 109, 122, 0.5);
}
#po .p-product__cta {
  color: var(--color-po);
  background: #FCEDE9;
}
#po .c-btn {
  background: radial-gradient(#B56D7A, #CE9F9C);
}

#pv .p-product__bottle {
  top: -60px;
  box-shadow: 0 0 20px 0 rgba(232, 139, 116, 0.5);
}
#pv .p-product__cta {
  margin-top: 90px;
  color: var(--color-pv);
  background: #FCEDE9;
}
#pv .c-btn {
  background: radial-gradient(#E88B74, #F2B79B);
}

.p-point {
  position: relative;
  margin-top: -120px;
  z-index: 0;
  text-align: center;
  color: #fff;
  scroll-margin-top: -80px;
}
.p-point__bg {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
}
.p-point__inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-point__img {
  width: 79.4%;
  max-width: 310px;
  margin: 0 auto;
  animation: rotateAnimation 15s linear infinite;
}
.p-point__heading {
  position: relative;
  margin-top: 30px;
  font-size: var(--fz-h1);
  font-weight: 900;
  font-family: var(--font-maru);
  -webkit-text-stroke: 2px #E07474;
}
.p-point__heading span {
  display: block;
  margin-bottom: 16px;
  font-size: var(--fz-h2-m);
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 15px rgba(224, 116, 116, 0.7);
}
.p-point__heading::before {
  content: "※";
  position: absolute;
  bottom: 55px;
  right: 125px;
  font-size: var(--fz-cap);
  -webkit-text-stroke: 0;
}
.p-point__dotline {
  width: 77%;
  height: 10px; /* ドットの直径 */
  margin: 10px auto 0;
  background-image: radial-gradient(circle, #FDEEEA 30%, transparent 40%);
  background-position: 0 0;
  background-size: 10px 10px; /* 1つ目の値がドット間隔、2つ目が高さ */
  background-repeat: repeat-x;
}
.p-point .c-text {
  margin: 34px 0;
  text-shadow: 0 0 15px rgba(224, 116, 116, 0.7);
}
.p-point .c-text span {
  padding: 0 2px;
}
.p-point__note {
  font-size: var(--fz-cap);
  text-shadow: 0 0 15px rgba(224, 116, 116, 0.7);
}
.p-point__effect {
  background: #F9B9B9;
}

.p-concept {
  text-align: center;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.p-concept .c-heading {
  color: #fff;
}
.p-concept .c-text {
  margin: 34px 0;
  color: #fff;
  text-shadow: 0 0 15px rgba(224, 116, 116, 0.7);
  line-height: 2;
}
.p-concept .c-text span {
  padding: 0 2px;
}
.p-concept__inner {
  background: linear-gradient(to bottom, #F9B9B9 0%, #F9B9B9 60%, rgba(249, 185, 185, 0.5) 80%, transparent 100%);
}
.p-concept__keyword {
  width: 67.9%;
  max-width: 265px;
  margin: 0 auto 76px;
}
.p-concept__flavor {
  position: relative;
  width: 220px;
  height: 220px;
}
.p-concept__flavor img {
  position: absolute;
  transition: 0.5s;
  opacity: 0;
}
.p-concept__catchcopy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-maru);
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.p-concept__flavor-title {
  position: absolute;
  bottom: 43px;
  right: 22px;
  transform: rotate(-15deg);
  font-size: 24px;
  font-family: var(--font-caveat);
}
.p-concept__flavor.-pmi {
  transform: translateX(-15px);
}
.p-concept__flavor.-pmi .p-concept__catchcopy {
  color: var(--color-pmi);
}
.p-concept__flavor.-pmi .p-concept__flavor-title {
  color: #FFE5E1;
}
.p-concept__flavor.-pmi img {
  width: 168px;
  top: -34px;
  left: 25%;
}
.p-concept__flavor.-pmi img.is-show {
  left: 50%;
  opacity: 1;
}
.p-concept__flavor.-pb {
  margin-top: -60px;
  margin-left: auto;
  transform: translateX(15px);
}
.p-concept__flavor.-pb .p-concept__catchcopy {
  color: var(--color-pb);
}
.p-concept__flavor.-pb .p-concept__flavor-title {
  color: #F6BAAF;
}
.p-concept__flavor.-pb img {
  width: 158px;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
}
.p-concept__flavor.-pb img.is-show {
  top: -76px;
  opacity: 1;
}
.p-concept__flavor.-po {
  margin-top: -60px;
  transform: translateX(-15px);
}
.p-concept__flavor.-po .p-concept__catchcopy {
  color: var(--color-po);
}
.p-concept__flavor.-po .p-concept__flavor-title {
  color: #C8908C;
}
.p-concept__flavor.-po img {
  width: 181px;
  top: 0px;
  left: 50%;
  transform: translate(-50%);
}
.p-concept__flavor.-po img.is-show {
  top: -33px;
  opacity: 1;
}
.p-concept__text {
  margin: 34px 0;
  color: var(--color-pink3);
  line-height: 2;
}
.p-concept__text span {
  padding: 0 2px;
}
.p-concept__text span.js-marker {
  background-image: linear-gradient(90deg, #fff, #fff);
}
.p-concept__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-concept__dot {
  width: 5px;
  height: 5px;
  margin: 3px auto;
  border-radius: 50px;
  background: var(--color-pink3);
}

.p-map {
  scroll-margin-top: 40px;
  padding: 32px 15px 70px;
}
.p-map__heading {
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-pink3);
  font-family: var(--font-maru);
  font-weight: 400;
  letter-spacing: 0.15em;
}
.p-map__box {
  position: relative;
}
.p-map__mapping {
  position: absolute;
  top: 42px;
  left: 49px;
  width: 270px;
}

.c-corner.-top-left {
  position: fixed;
  top: 40px;
  left: calc(50% - 195px);
  width: 20px;
  z-index: 2;
}
.c-corner.-top-right {
  position: fixed;
  top: 40px;
  left: calc(50% + 195px);
  transform: translateX(-100%);
  width: 20px;
  z-index: 2;
}
.c-corner.-bottom-left {
  position: fixed;
  bottom: 40px;
  left: calc(50% - 195px);
  width: 20px;
  z-index: 2;
}
.c-corner.-bottom-right {
  position: fixed;
  bottom: 40px;
  left: calc(50% + 195px);
  transform: translateX(-100%);
  width: 20px;
  z-index: 2;
}

.c-outline {
  display: none;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  height: calc(100svh - 80px);
  border: 1px solid #fff;
  border-radius: 20px;
  z-index: 3;
}

.c-nav-logo {
  width: 330px;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 99rem;
  background: radial-gradient(#fff, #ffe5e1);
  color: var(--color-shadow);
  font-size: var(--fz-h3);
  font-family: var(--font-maru);
  font-weight: 500;
  transition: 0.3s;
  box-sizing: border-box;
}
.c-btn + .c-btn {
  margin-top: 40px;
}
.c-btn__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.c-btn span {
  font-size: 12px;
  font-weight: 400;
}
.c-btn .fade-in {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.c-btn .c-btn-arrow {
  transition: 0.3s;
}
.c-btn:hover {
  border: 1px solid #fff;
  box-shadow: 0 0 10px 0 #fff;
  opacity: 1;
}
.c-btn:hover .c-btn-arrow {
  transform: translate(5px, -5px);
}
.c-btn-fixed {
  display: none;
}

.c-icon-arrow {
  margin-left: 10px;
  width: 8px;
}

.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--color-pink3);
  font-family: var(--font-caveat);
  font-size: var(--fz-h2-l);
  text-align: center;
  font-weight: 400;
}
.c-heading img {
  width: 90px;
}

.c-text {
  text-align: center;
  line-height: 1.7;
}

/* ハンバーガー */
.c-menu {
  display: block;
  position: fixed;
  top: 68px;
  left: calc(50% + 120px);
  z-index: 99;
  height: 23px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 表示 */
.c-menu.is-show {
  transform: translateY(0);
  opacity: 1;
}

/* 非表示（上に隠す） */
.c-menu.is-hide {
  transform: translateY(-100%);
  opacity: 0;
}

.c-menu span {
  display: block;
  position: relative;
  top: 10px;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: 0.3s;
}

.c-menu span::before,
.c-menu span::after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: 0.3s;
}

.c-menu span::before {
  bottom: 12px;
}

.c-menu span::after {
  top: 12px;
}

/* ハンバーガー 閉じる */
.c-menu.is-open span {
  background: transparent;
}

.c-menu.is-open span::before {
  bottom: 0;
  transform: rotate(30deg);
}

.c-menu.is-open span::after {
  top: 0;
  transform: rotate(150deg);
}

/* ハンバーガーメニュー */
.c-menu-body {
  display: none;
}

.c-menu-body {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  padding: 0 30px 50px;
  z-index: 98;
  background: var(--color-pink2);
  box-sizing: border-box;
}
.c-menu-body .c-nav-logo {
  margin: 40px;
}
.c-menu-body .p-nav {
  width: 290px;
  margin: 50px auto;
}
.c-menu-body .c-btn + .c-btn {
  margin-top: 20px;
}

@media screen and (min-width: 1281px) {
  .c-menu {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .l-nav {
    display: none;
  }
  .p-select {
    position: fixed;
    top: 200px;
    left: calc(50% + 195px);
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  .p-select__list a {
    display: block;
    padding: 10px;
    background: var(--color-pink2);
  }
  .p-select__list a img {
    width: 17px;
    height: 12px;
  }
  .p-select__list a:hover, .p-select__list a.is-active {
    background: #fff;
  }
  .p-select__list a:hover img, .p-select__list a.is-active img {
    filter: invert(28%) sepia(10%) saturate(960%) hue-rotate(302deg) brightness(105%) contrast(95%);
  }
  .p-select__list + .p-select__list {
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 1280px) and (max-width: 390px) {
  .p-select {
    left: auto;
    right: 0;
    transform: none;
  }
}
@media screen and (max-width: 1280px) {
  .p-select.is-show {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
  .l-main {
    max-width: 100%;
  }
  .l-bg-top,
  .l-bg-bottom {
    display: none;
  }
  .l-column {
    padding: 0;
  }
  .p-select {
    left: auto;
    right: 0;
    transform: none;
  }
  .c-corner {
    display: none;
  }
  .c-menu {
    top: 48px;
    left: auto;
    right: 11%;
  }
  .c-menu-body {
    top: 0;
  }
  .c-btn-fixed {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .c-btn-fixed.is-show {
    opacity: 1;
    visibility: visible;
  }
}/*# sourceMappingURL=style.css.map */