/* 独自css */
html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

main svg {
    display: inline;
}

/* トップへ戻るボタン */
#all {
  position: sticky !important;
  top: 0;
}


#all_item {
  background-color: #be4e0c;
  font-size: 20px;
  padding-bottom: 6px;
  padding-top: 6px;
  position: -webkit-sticky;
  position: sticky;
  text-align: center;
  top: 0;
  width: 100%;
}

#page-top {
  position: fixed;
  bottom: 28px;
  right: 50px;
  z-index: 999;
}

#page-top a {
  display: inline-block;
  /* ボタンの要素 */
  width: 180px;
  /* 画像の幅に合わせる */
  height: 180px;
  /* 画像の高さに合わせる */
  background-image: url('https://cdn.shopify.com/s/files/1/0593/3613/0738/files/25_attakakomo_bnr.png?v=1763081980');
  /* 背景画像を指定 */
  background-position: center;
  /* 画像を中央に配置 */
  background-repeat: no-repeat;
  /* 画像を繰り返さない */
  background-size: cover;
  /* 画像を要素に合わせて拡大・縮小 */
  text-indent: -9999px;
  /* テキストを非表示にする */
  overflow: hidden;
  /* はみ出したコンテンツを隠す */
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.8;
}


@media only screen and (max-width: 640px) {
  #page-top {
    bottom: 45px;
    right: 10px;
    line-height: 14px;
    width: 100%;
    height: 100px;
  }

  #page-top a {
    background-image: url('https://cdn.shopify.com/s/files/1/0593/3613/0738/files/25_attakakomo_bnr02.png?v=1763085600');
    width: 100%;
    padding: 14px 3px;

  }
}

/* ================================
   PC & iPad（768px以上） → パララックス表示
   ================================ */
@media (min-width: 768px) {

  .parallax1,
  .parallax2 {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
}


/* ================================
   スマホ（767px以下） → 背景なし
   ================================ */
@media (max-width: 767px) {

  .parallax1,
  .parallax2 {
    background-image: none !important;
    background-attachment: scroll !important;
  }
}

/* 画像切り替え */
/* スライダー全体のスタイル */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 各スライド画像のスタイル */
.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeInOut 10s infinite;
  transition: opacity 0.5s ease-in-out;
}

/* 最初の画像だけ親要素の高さを確保させる */
.slideimg:nth-child(1) {
  position: relative;
  animation-delay: 0s;
}

/* 2枚目の画像のアニメーション遅延 */
.slideimg:nth-child(2) {
  animation-delay: 5s;
}

/* フェードイン・アウトのアニメーション */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 画像の表示調整 */
.slideimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 画像横並び html指定 */
.content_flex {
  display: flex;
  gap: 30px;
  align-items: end;
}

.content_flex_h {
  height: 100%;
}

.content_flex_l {
  width: 40%;
}

.content_flex_r {
  width: 60%;
}

@media (max-width: 767px) {
  .content_flex {
    gap: 16px;
  }
}

/* クローバーふわふわ */
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(https://cdn.shopify.com/s/files/1/0593/3613/0738/files/251215CS26ss_clover.png) no-repeat center center / 100px auto;
  display: inline-block !important;
  transition: 1.5s ease-in-out;
  width: 100px;
  height: 100px;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .fuwafuwa {
    background: url(https://cdn.shopify.com/s/files/1/0593/3613/0738/files/251215CS26ss_clover.png) no-repeat center center / 60px auto;
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
}


@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }

  50% {
    transform: translate(0, -7px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

/* 下部スライダー */
/* =========================
スライダー可視領域=========================*/
.pf-slider-outer {
  position: relative;
  width: 100%;
  overflow: visible;
}

.pf-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* 1枚ずつ表示 */
}

/* スライド本体 */
.pf-slider {
  width: 100%;
}


/* 各スライド */
.pf-slide {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
/* 画像 */
.pf-slide img {
  width: 460px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

/* 画像透過クラス */
.pf-slide img.dimmed {
  opacity: 0.4;
}

/* =========================
   ポップアップ
   ========================= */
.pf-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 250, 229, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  z-index: 30;
}
.pf-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ポップアップテキスト（PC：2列） */
.pf-popup-text {
  color: #000;
  font-size: 16px;
  max-width: 86%;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2列 */
  column-gap: 28px;
  row-gap: 8px;
  line-height: 1.6;
}

/* 各カラムは縦積み */
.pf-popup-text>div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 見出しと段落の調整 */
.pf-popup-text h4 {
  margin: 0 0 6px 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.pf-popup-text p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

.pf-popup-text a {
  color: #000;
  text-decoration: underline;
}

/* =========================
   ボタン用レイヤー
   ========================= */
.pf-slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  pointer-events: none;
  /* 背景スライドクリックを通す */
  z-index: 4;
}

.pf-slider-buttons button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

/* 左右配置 */
.pf-prev {
  left: -30px;
  transform: translateY(-50%) rotate(180deg) !important;
}

.pf-next {
  right: -30px;
  transform: translateY(-50%);
}

/* ボタン画像回転 */
.pf-prev img,
.pf-next img {
  animation: rotation 3s infinite steps(4, end);
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 擬似矢印 */
.pf-prev::before,
.pf-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  pointer-events: none;
  z-index: 100;
}

.pf-prev::before {
  content: "◀︎";
  top: 35%;
  left: 40%;
  transform: rotate(180deg);
}

.pf-next::before {
  content: "▶︎";
}

/* =========================
   ドットナビ
   ========================= */
.pf-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.pf-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.pf-dot.active {
  background: #0E7E4C;
}

@media(min-width:1700px) {
  .pf-prev {
    left: 0 !important;
  }

  .pf-next {
    right: 0 !important;
  }
}

/* =========================
   タブレット対応
   ========================= */
@media(max-width:768px) {
  .pf-slide img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .pf-popup-text {
    grid-template-columns: 1fr;
    /* 1列 */
    font-size: 13px;
    max-width: 92%;
    column-gap: 0;
    row-gap: 8px;
  }

  .pf-popup-text>div {
    gap: 6px;
  }

  .sp_mt20 {
    margin-top: 20px !important;
  }
}


/* =========================
   スマホ対応
   ========================= */
@media(max-width:470px) {
  .pf-slide img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .pf-prev,
  .pf-next {
    width: 50px !important;
    height: 50px !important;
  }

  .pf-prev {
    left: -22px !important;
  }

  .pf-next {
    right: -22px !important;
  }

  /* ポップアップテキスト：1列、文字小さめ */
  .pf-popup-text {
    font-size: 12px;
    grid-template-columns: 1fr;
    /* 1列表示 */
    column-gap: 0;
    row-gap: 6px;
    max-width: 90%;
  }

  .pf-popup-column {
    gap: 2px;
  }
}

/* shop */
.shop_text li a {
  text-decoration: none;
  color: #fff;
}

.shop_text li a:hover {
  opacity: 0.8;
}

/* 自動出力css */
.eIOPDQ,
.jhRUAf {
  max-width: 100%
}

.clWrLz,
.jhRUAf {
  display: inline-block
}

.clWrLz,
.jhRUAf [data-href] {
  cursor: pointer
}

.bIaXH,
.cpmRjY,
.eIOPDQ,
.eIOPDQ .pf-video-wrapper {
  position: relative
}

.cPaglz,
.eIOPDQ {
  overflow: hidden
}

.qmQNK {
  white-space: pre-line;
  user-select: text
}

.qmQNK span {
  vertical-align: baseline !important
}

.fgfEIw>svg,
.gsacjk {
  vertical-align: middle
}

.qmQNK i,
.qmQNK svg {
  margin-right: 5px
}

.gNGIPQ {
  word-break: break-word
}

.gNGIPQ ul {
  list-style-position: inside
}

.gNGIPQ>input {
  display: none !important
}

.clWrLz {
  line-height: 1;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  outline: 0
}

.clWrLz svg {
  margin-left: 5px
}

.clWrLz span {
  color: inherit
}

.eIOPDQ video {
  display: flex;
  height: auto;
  border-radius: inherit
}

.eIOPDQ svg {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  z-index: 10
}

.eIOPDQ svg path,
.gsacjk path {
  pointer-events: none
}

.eIOPDQ .pf-lazy-html-video {
  margin: 0 auto
}

.dawdJE,
.fgfEIw:last-child {
  margin: 0
}

.gsacjk {
  height: 28px;
  width: auto;
  fill: currentColor;
  box-sizing: content-box !important;
  pointer-events: auto
}

.jhRUAf {
  height: auto
}

.bIaXH:empty {
  display: initial
}

.cpmRjY {
  padding: 20px 0
}

.cPaglz {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  pointer-events: none;
  position: absolute;
  display: block !important
}

.dawdJE {
  padding: 10px
}

.fgfEIw {
  list-style: inherit;
  margin: 0 0 var(--pf-line-spacing-xs)
}

.fgfEIw:before {
  content: '';
  display: inline-block;
  width: var(--pf-text-indent-xs)
}

.fgfEIw>i,
.fgfEIw>svg {
  padding: 5px;
  margin-right: 5px
}

@media (min-width:767.5px) {
  .fgfEIw {
    margin: 0 0 var(--pf-line-spacing-sm)
  }

  .fgfEIw:before {
    width: var(--pf-text-indent-sm)
  }
}

@media (min-width:1024.5px) {
  .fgfEIw {
    margin: 0 0 var(--pf-line-spacing-md)
  }

  .fgfEIw:before {
    width: var(--pf-text-indent-md)
  }
}

@media (min-width:1199.5px) {
  .fgfEIw {
    margin: 0 0 var(--pf-line-spacing-lg)
  }

  .fgfEIw:before {
    width: var(--pf-text-indent-lg)
  }
}

.jfeuyL {
  --pf-sample-color: #5d6b82;
  --pf-border-color: #d1d5db
}

@media all {

  .__pf.__pf_GedKhsEK .pf-11_,
  .__pf.__pf_GedKhsEK .pf-72_ {
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center
  }

  .__pf.__pf_GedKhsEK .pf-112_,
  .__pf.__pf_GedKhsEK .pf-153_ {
    list-style-position: inside;
    list-style-type: none
  }

  .__pf.__pf_GedKhsEK .pf-11_ {
    background-image: url("https://cdn.shopify.com/s/files/1/0593/3613/0738/files/251215CS26ss_BK_G.jpg?v=1764049211");
    padding-bottom: 0;
    padding-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-13_ {
    margin: 0 auto !important;
    box-shadow: rgba(0, 0, 0, .25) 4px 8px 9px !important;
    background-color: #fff !important;
    width: 50% !important
  }

  .__pf.__pf_GedKhsEK .pf-14_ {
    background-color: #f890a5;
    margin: 0
  }

  .__pf.__pf_GedKhsEK .pf-16_ {
    width: 300px;
    object-fit: cover;
    object-position: center center;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    display: table;
    margin: 20px auto;
    padding: 0
  }

  .__pf.__pf_GedKhsEK .pf-17_,
  .__pf.__pf_GedKhsEK .pf-39_,
  .__pf.__pf_GedKhsEK .pf-55_ {
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-18_ {
    text-align: center;
    font-weight: 400;
    color: #f890a5;
    font-family:
    "ADLaM Display",
    "Avenir Medium",
    "Avenir",
    "Avenir Roman",
    "Helvetica",
    "Arial",
    system-ui,
    sans-serif;
    font-size: 36px;
    margin-bottom: 0;
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-20_ {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px
  }

  .__pf.__pf_GedKhsEK .pf-22_ {
    background-color: #f890a5;
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 18px;
    padding: 15px 50px;
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-23_,
  .__pf.__pf_GedKhsEK .pf-27_,
  .__pf.__pf_GedKhsEK .pf-30_,
  .__pf.__pf_GedKhsEK .pf-33_ {
    height: 16px
  }

  .__pf.__pf_GedKhsEK .pf-24_ {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px
  }

  .__pf.__pf_GedKhsEK .pf-25_,
  .__pf.__pf_GedKhsEK .pf-28_,
  .__pf.__pf_GedKhsEK .pf-31_,
  .__pf.__pf_GedKhsEK .pf-63_,
  .__pf.__pf_GedKhsEK .pf-65_,
  .__pf.__pf_GedKhsEK .pf-68_ {
    text-align: center
  }

  .__pf.__pf_GedKhsEK .pf-26_,
  .__pf.__pf_GedKhsEK .pf-29_,
  .__pf.__pf_GedKhsEK .pf-32_ {
    background-color: #fff;
    color: #000
  }

  .__pf.__pf_GedKhsEK .pf-34_,
  .__pf.__pf_GedKhsEK .pf-36_ {
    font-family:
    "Kosugi Maru",
    "Avenir Medium",
    "Avenir",
    "Avenir Roman",
    "Helvetica",
    "Arial",
    system-ui,
    sans-serif;
    color: #4a4a4a;
    text-align: center
  }

  .__pf.__pf_GedKhsEK .pf-34_ {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin-top: 80px;
    margin-bottom: 1em;
  }
  .__pf.__pf_GedKhsEK .pf-34_ br {
    display: none;
  }
  .__pf.__pf_GedKhsEK .pf-36_ {
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
    font-size: 18px
  }

  .__pf.__pf_GedKhsEK .pf-40_ {
    margin-left: 0;
    margin-right: 0;
    background-color: #fff;
    margin-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-41_ {
    padding-top: 50px;
    padding-left: 20px
  }

  .__pf.__pf_GedKhsEK .pf-42_ {
    width: 145px;
    object-fit: cover;
    object-position: right center;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    display: table;
    margin-left: auto;
    padding-right: 0;
    margin-right: 50px;
    margin-bottom: -20px
  }

  .__pf.__pf_GedKhsEK .pf-44_,
  .__pf.__pf_GedKhsEK .pf-46_,
  .__pf.__pf_GedKhsEK .pf-47_,
  .__pf.__pf_GedKhsEK .pf-50_,
  .__pf.__pf_GedKhsEK .pf-52_ {
    object-fit: cover;
    object-position: center center;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    display: table
  }

  .__pf.__pf_GedKhsEK .pf-43_ {
    margin-right: 170px
  }

  .__pf.__pf_GedKhsEK .pf-44_,
  .__pf.__pf_GedKhsEK .pf-45_ {
    margin-right: 20px;
    margin-top: 30px
  }

  .__pf.__pf_GedKhsEK .pf-44_ {
    width: 350px;
    margin-left: auto
  }

  .__pf.__pf_GedKhsEK .pf-46_ {
    width: 520px;
    margin: 50px 170px 0 0
  }

  .__pf.__pf_GedKhsEK .pf-47_ {
    width: 350px;
    margin: 50px 20px 50px auto
  }

  .__pf.__pf_GedKhsEK .pf-50_ {
    width: 100%;
    margin: 50px 0 0
  }

  .__pf.__pf_GedKhsEK .pf-51_ {
    margin-top: 30px
  }

  .__pf.__pf_GedKhsEK .pf-52_ {
    width: 400px;
    margin: 50px 0 0 auto;
    padding-right: 40px
  }

  .__pf.__pf_GedKhsEK .pf-54_ {
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, .25) 4px 4px 16px;
    margin-top: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 50% !important;
    background-color: #fff !important
  }

  .__pf.__pf_GedKhsEK .pf-61_,
  .__pf.__pf_GedKhsEK .pf-64_,
  .__pf.__pf_GedKhsEK .pf-66_,
  .__pf.__pf_GedKhsEK .pf-69_,
  .__pf.__pf_GedKhsEK .pf-71_ {
    width: 100%;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-56_ {
    text-align: center;
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    padding: 16px 20px;
    margin-top: 0;
    margin-bottom: 0;
    color: #be4e0c;
    border: 3px solid #be4e0c
  }

  .__pf.__pf_GedKhsEK .pf-104_,
  .__pf.__pf_GedKhsEK .pf-95_ {
    font-weight: 400;
    font-family:
    "ADLaM Display",
    "Avenir Medium",
    "Avenir",
    "Avenir Roman",
    "Helvetica",
    "Arial",
    system-ui,
    sans-serif;
    font-size: 36px
  }

  .__pf.__pf_GedKhsEK .pf-62_,
  .__pf.__pf_GedKhsEK .pf-67_ {
    margin-left: 0;
    margin-right: 0;
    background-color: #f1e8db;
    padding-left: 16px;
    padding-right: 16px
  }

  .__pf.__pf_GedKhsEK .pf-59_ {
    margin-left: 0;
    margin-right: 0;
    background-color: #f1e8db;
    margin-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-61_ {
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-62_ {
    margin-top: -10px;
    padding-top: 80px
  }

  .__pf.__pf_GedKhsEK .pf-67_ {
    margin-top: 0;
    padding-bottom: 80px
  }

  .__pf.__pf_GedKhsEK .pf-70_ {
    text-align: center;
    align-content: center
  }

  .__pf.__pf_GedKhsEK .pf-72_ {
    background-image: url("https://cdn.shopify.com/s/files/1/0593/3613/0738/files/251215CS26ss_BK_P.jpg?v=1764049318");
    padding-bottom: 0;
    padding-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-73_ {
    padding-bottom: 0
  }

  .__pf.__pf_GedKhsEK .pf-74_ {
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, .25) 1px 8px 8px 0 !important;
    margin-top: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 50% !important;
    background-color: #fff !important;
    padding-top: 100px;
  }

  .__pf.__pf_GedKhsEK .pf-75_ {
    width: 450px;
    display: table;
    margin-right: auto;
    margin-left: 30px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
  }

  .__pf.__pf_GedKhsEK .pf-76_ {
    width: 100%;
    display: table;
    margin: 50px 0 0;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-77_,
  .__pf.__pf_GedKhsEK .pf-78_ {
    width: 450px;
    display: table;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-77_ {
    margin: 50px 30px 0 auto
  }

  .__pf.__pf_GedKhsEK .pf-78_ {
    margin: 30px auto 0 30px
  }

  .__pf.__pf_GedKhsEK .pf-79_ {
    text-align: right;
    width: 85%;
    margin-top: 100px
  }

  .__pf.__pf_GedKhsEK .pf-80_,
  .__pf.__pf_GedKhsEK .pf-81_ {
    width: 100%;
    margin-top: 200px
  }

  .__pf.__pf_GedKhsEK .pf-82_ {
    width: 654px;
    display: table;
    margin: 50px 30px 0 auto;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-83_ {
    margin: 30px 30px 0
  }

  .__pf.__pf_GedKhsEK .pf-84_ {
    width: 100%;
    display: table;
    margin: 50px 30px 0 auto;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-86_,
  .__pf.__pf_GedKhsEK .pf-87_ {
    width: 530px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    display: table
  }

  .__pf.__pf_GedKhsEK .pf-85_ {
    margin-top: 50px
  }

  .__pf.__pf_GedKhsEK .pf-86_ {
    margin: 50px auto 0 30px
  }

  .__pf.__pf_GedKhsEK .pf-87_ {
    margin: 50px 30px 100px auto
  }

  .__pf.__pf_GedKhsEK .pf-88_ {
    margin: 30px 30px 100px 150px
  }

  .__pf.__pf_GedKhsEK .pf-90_ {
    margin-bottom: 0;
    background-color: #fcfae5;
    margin-top: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 50% !important;
    box-shadow: rgba(0, 0, 0, .25) 1px 6px 8px 0 !important
  }

  .__pf.__pf_GedKhsEK .pf-93_,
  .__pf.__pf_GedKhsEK .pf-98_ {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: auto;
    aspect-ratio: 1/1
  }

  .__pf.__pf_GedKhsEK .pf-91_ {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-93_ {
    display: table;
    margin-right: -50px;
    margin-left: auto
  }

  .__pf.__pf_GedKhsEK .pf-95_ {
    background-color: rgba(255, 255, 255, 0);
    color: #f890a5;
    text-align: center;
    margin: 50px -20px 0
  }

  .__pf.__pf_GedKhsEK .pf-98_ {
    margin-left: -40px
  }

  .__pf.__pf_GedKhsEK .pf-99_ {
    width: 60%;
    margin: 0 auto 100px
  }

  .__pf.__pf_GedKhsEK .pf-102_ {
    margin: 0;
    background-color: #f890a5
  }

  .__pf.__pf_GedKhsEK .pf-104_ {
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 50px
  }

  .__pf.__pf_GedKhsEK .pf-106_,
  .__pf.__pf_GedKhsEK .pf-109_ {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 5px
  }

  .__pf.__pf_GedKhsEK .pf-112_ {
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    text-align: center
  }

  .__pf.__pf_GedKhsEK .pf-113_,
  .__pf.__pf_GedKhsEK .pf-115_,
  .__pf.__pf_GedKhsEK .pf-117_,
  .__pf.__pf_GedKhsEK .pf-119_,
  .__pf.__pf_GedKhsEK .pf-121_,
  .__pf.__pf_GedKhsEK .pf-123_,
  .__pf.__pf_GedKhsEK .pf-125_,
  .__pf.__pf_GedKhsEK .pf-127_,
  .__pf.__pf_GedKhsEK .pf-129_,
  .__pf.__pf_GedKhsEK .pf-131_,
  .__pf.__pf_GedKhsEK .pf-133_,
  .__pf.__pf_GedKhsEK .pf-135_,
  .__pf.__pf_GedKhsEK .pf-137_,
  .__pf.__pf_GedKhsEK .pf-139_,
  .__pf.__pf_GedKhsEK .pf-141_,
  .__pf.__pf_GedKhsEK .pf-143_,
  .__pf.__pf_GedKhsEK .pf-145_,
  .__pf.__pf_GedKhsEK .pf-147_,
  .__pf.__pf_GedKhsEK .pf-149_,
  .__pf.__pf_GedKhsEK .pf-151_,
  .__pf.__pf_GedKhsEK .pf-154_,
  .__pf.__pf_GedKhsEK .pf-156_,
  .__pf.__pf_GedKhsEK .pf-158_,
  .__pf.__pf_GedKhsEK .pf-160_,
  .__pf.__pf_GedKhsEK .pf-162_,
  .__pf.__pf_GedKhsEK .pf-164_,
  .__pf.__pf_GedKhsEK .pf-166_,
  .__pf.__pf_GedKhsEK .pf-168_,
  .__pf.__pf_GedKhsEK .pf-170_ {
    margin-bottom: 3px
  }

  .__pf.__pf_GedKhsEK .pf-153_,
  .__pf.__pf_GedKhsEK .pf-172_ {
    font-size: 14px;
    color: #fff;
    margin-bottom: 50px;
    text-align: center
  }

  .__pf.__pf_GedKhsEK .pf-172_ {
    margin-top: 20px;
    text-decoration: none
  }
}

@media (min-width:1024.5px) and (max-width:1199.4999px) {

  .__pf.__pf_GedKhsEK .pf-44_,
  .__pf.__pf_GedKhsEK .pf-46_,
  .__pf.__pf_GedKhsEK .pf-47_,
  .__pf.__pf_GedKhsEK .pf-50_,
  .__pf.__pf_GedKhsEK .pf-52_ {
    margin-top: 30px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-16_ {
    width: 220px
  }

  .__pf.__pf_GedKhsEK .pf-17_,
  .__pf.__pf_GedKhsEK .pf-76_ {
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-24_ {
    margin-left: 20px;
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-42_ {
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-43_ {
    margin-right: 70px
  }

  .__pf.__pf_GedKhsEK .pf-44_ {
    margin-right: 10px;
    width: 250px
  }

  .__pf.__pf_GedKhsEK .pf-45_ {
    margin-right: 0;
    padding-right: 10px
  }

  .__pf.__pf_GedKhsEK .pf-46_ {
    margin-right: 100px;
    width: 410px
  }

  .__pf.__pf_GedKhsEK .pf-47_ {
    margin-right: 10px;
    width: 240px;
    display: table;
    margin-left: auto
  }

  .__pf.__pf_GedKhsEK .pf-41_ {
    padding-left: 10px
  }

  .__pf.__pf_GedKhsEK .pf-50_ {
    margin-right: 100px;
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-51_ {
    margin-top: 30px
  }

  .__pf.__pf_GedKhsEK .pf-52_ {
    width: 300px;
    padding-right: 30px
  }

  .__pf.__pf_GedKhsEK .pf-56_ {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-75_ {
    width: 350px
  }

  .__pf.__pf_GedKhsEK .pf-77_,
  .__pf.__pf_GedKhsEK .pf-78_ {
    width: 300px
  }

  .__pf.__pf_GedKhsEK .pf-82_ {
    width: 435px;
    display: table;
    margin-left: auto;
    margin-right: 30px
  }

  .__pf.__pf_GedKhsEK .pf-84_ {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: 30px
  }

  .__pf.__pf_GedKhsEK .pf-85_ {
    margin-top: 40px
  }

  .__pf.__pf_GedKhsEK .pf-86_ {
    width: 435px;
    display: table;
    margin-left: 30px;
    margin-right: auto
  }

  .__pf.__pf_GedKhsEK .pf-87_ {
    width: 339px;
    display: table;
    margin-left: auto;
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-93_ {
    margin-right: -30px
  }

  .__pf.__pf_GedKhsEK .pf-95_ {
    margin-bottom: 0
  }

  .__pf.__pf_GedKhsEK .pf-98_ {
    margin-left: -30px
  }

  .__pf.__pf_GedKhsEK .pf-91_ {
    margin-left: 0;
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-99_ {
    width: 70%
  }

  .__pf.__pf_GedKhsEK .pf-172_ {
    margin-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-89_ {
    padding-bottom: 0
  }
}

@media (min-width:767.5px) and (max-width:1024.4999px) {
  .__pf.__pf_GedKhsEK .pf-16_ {
    width: 200px;
    margin-top: 0;
    margin-bottom: 0
  }

  .__pf.__pf_GedKhsEK .pf-17_ {
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-18_ {
    font-size: 26px
  }

  .__pf.__pf_GedKhsEK .pf-22_,
  .__pf.__pf_GedKhsEK .pf-26_,
  .__pf.__pf_GedKhsEK .pf-29_,
  .__pf.__pf_GedKhsEK .pf-32_ {
    font-size: 14px
  }

  .__pf.__pf_GedKhsEK .pf-20_ {
    margin: 0 20px
  }

  .__pf.__pf_GedKhsEK .pf-27_,
  .__pf.__pf_GedKhsEK .pf-30_,
  .__pf.__pf_GedKhsEK .pf-33_ {
    height: 14px
  }

  .__pf.__pf_GedKhsEK .pf-24_,
  .__pf.__pf_GedKhsEK .pf-83_ {
    margin-left: 20px;
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-34_ {
    font-size: 24px
  }

  .__pf.__pf_GedKhsEK .pf-36_ {
    font-size: 13px
  }

  .__pf.__pf_GedKhsEK .pf-42_ {
    margin-right: 0;
    object-fit: cover;
    object-position: center center;
    height: auto;
    width: 81px;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-43_ {
    margin-right: 55px
  }

  .__pf.__pf_GedKhsEK .pf-44_ {
    width: 174px;
    margin-right: 10px
  }

  .__pf.__pf_GedKhsEK .pf-45_ {
    margin-right: 10px
  }

  .__pf.__pf_GedKhsEK .pf-46_ {
    width: 320px;
    margin-right: 10px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-47_ {
    width: 215px;
    margin-right: 0;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    display: table;
    margin-left: auto;
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-50_,
  .__pf.__pf_GedKhsEK .pf-52_ {
    margin-right: 10px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-41_ {
    padding-left: 10px
  }

  .__pf.__pf_GedKhsEK .pf-50_ {
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-51_,
  .__pf.__pf_GedKhsEK .pf-85_ {
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-52_ {
    width: 220px;
    padding-right: 10px;
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-56_ {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-11_ {
    background-image: url("https://cdn.shopify.com/s/files/1/0593/3613/0738/files/251215CS26ss_BK_G.jpg?v=1764049211");
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding-bottom: 0;
    padding-top: 0
  }

  .__pf.__pf_GedKhsEK .pf-75_ {
    width: 250px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    margin-left: 20px
  }

  .__pf.__pf_GedKhsEK .pf-76_ {
    width: 100%;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-77_ {
    width: 230px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    margin-right: 20px;
    margin-top: 30px
  }

  .__pf.__pf_GedKhsEK .pf-78_,
  .__pf.__pf_GedKhsEK .pf-82_ {
    margin-right: 20px;
    margin-top: 20px;
    padding-left: 20px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-78_ {
    width: 230px
  }

  .__pf.__pf_GedKhsEK .pf-82_ {
    width: 348px
  }

  .__pf.__pf_GedKhsEK .pf-84_ {
    width: 100%;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    margin: 30px 0 0
  }

  .__pf.__pf_GedKhsEK .pf-86_,
  .__pf.__pf_GedKhsEK .pf-87_ {
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-86_ {
    width: 320px;
    margin-top: 20px;
    margin-left: 20px
  }

  .__pf.__pf_GedKhsEK .pf-87_ {
    width: 253px;
    margin-top: 20px;
    margin-left: auto;
    display: table
  }

  .__pf.__pf_GedKhsEK .pf-93_ {
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-95_ {
    margin-top: 20px;
    margin-bottom: 0
  }

  .__pf.__pf_GedKhsEK .pf-98_ {
    margin-left: 0
  }

  .__pf.__pf_GedKhsEK .pf-91_ {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px
  }

  .__pf.__pf_GedKhsEK .pf-99_ {
    width: 80%
  }

  .__pf.__pf_GedKhsEK .pf-89_ {
    padding-bottom: 0
  }
}

@media (max-width:767.4999px) {

  .__pf.__pf_GedKhsEK .pf-20_,
  .__pf.__pf_GedKhsEK .pf-24_ {
    margin-left: 20px;
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-16_ {
    width: 150px;
    margin-top: 0;
    margin-bottom: 0
  }

  .__pf.__pf_GedKhsEK .pf-17_,
  .__pf.__pf_GedKhsEK .pf-79_ {
    width: 100%
  }

  .__pf.__pf_GedKhsEK .pf-18_ {
    font-size: 24px
  }

  .__pf.__pf_GedKhsEK .pf-22_ {
    font-size: 14px
  }

  .__pf.__pf_GedKhsEK .pf-20_ {
    font-size: 10px
  }

  .__pf.__pf_GedKhsEK .pf-27_,
  .__pf.__pf_GedKhsEK .pf-30_,
  .__pf.__pf_GedKhsEK .pf-33_ {
    height: 12px
  }

  .__pf.__pf_GedKhsEK .pf-26_,
  .__pf.__pf_GedKhsEK .pf-29_,
  .__pf.__pf_GedKhsEK .pf-32_ {
    font-size: 12px
  }

  .__pf.__pf_GedKhsEK .pf-34_ {
    font-size: 20px;
    line-height: 29px;
    margin-top: 50px
  }

  .__pf.__pf_GedKhsEK .pf-36_ {
    font-size: 14px;
    line-height: 22px
  }

  .__pf.__pf_GedKhsEK .pf-42_ {
    margin-right: 0;
    object-fit: cover;
    object-position: center center;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    width: 87px
  }

  .__pf.__pf_GedKhsEK .pf-43_ {
    margin-right: 60px
  }

  .__pf.__pf_GedKhsEK .pf-44_ {
    padding-right: 0;
    width: 60vw;
    margin-top: 20px;
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-45_,
  .__pf.__pf_GedKhsEK .pf-93_ {
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-46_ {
    padding-right: 0;
    width: 275px;
    margin-top: 20px;
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-47_ {
    padding-right: 0;
    width: 60vw;
    margin-top: 20px;
    margin-right: 0;
    display: table;
    margin-left: auto;
    margin-bottom: 0;
  }

  .__pf.__pf_GedKhsEK .pf-74_ {
    padding-top: 0;
  }

  .__pf.__pf_GedKhsEK .pf-41_ {
    padding-left: 0
  }

  .__pf.__pf_GedKhsEK .pf-50_ {
    padding-right: 0;
    width: 100%;
    margin-top: 20px;
    margin-right: 0
  }

  .__pf.__pf_GedKhsEK .pf-51_,
  .__pf.__pf_GedKhsEK .pf-85_ {
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-52_ {
    padding-right: 0;
    width: 60vw;
    margin-top: 20px;
    margin-right: 10px
  }

  .__pf.__pf_GedKhsEK .pf-13_,
  .__pf.__pf_GedKhsEK .pf-54_,
  .__pf.__pf_GedKhsEK .pf-74_,
  .__pf.__pf_GedKhsEK .pf-90_ {
    width: 100% !important;
    margin-bottom: 0 !important
  }

  .__pf.__pf_GedKhsEK .pf-56_ {
    font-size: 16px;
    line-height: 27px;
    color: #be4e0c;
    padding: 20px 0 30px
  }

  .__pf.__pf_GedKhsEK .pf-62_,
  .__pf.__pf_GedKhsEK .pf-67_ {
    font-size: 10px;
    padding-left: 6px;
    padding-right: 6px
  }

  .__pf.__pf_GedKhsEK .pf-67_ {
    padding-bottom: 60px
  }

  .__pf.__pf_GedKhsEK .pf-75_ {
    width: 90vw;
    margin-top: 50px;
    margin-left: 20px
  }

  .__pf.__pf_GedKhsEK .pf-76_ {
    width: 100%;
    margin-top: 50px
  }

  .__pf.__pf_GedKhsEK .pf-77_ {
    width: 60vw;
    margin-top: 30px;
    margin-right: 20px
  }

  .__pf.__pf_GedKhsEK .pf-78_ {
    width: 60vw;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px
  }
  .__pf.__pf_GedKhsEK .pf-79_ {
    margin-top: 30px;
  }

  .__pf.__pf_GedKhsEK .pf-80_,
  .__pf.__pf_GedKhsEK .pf-81_ {
    margin-top: 5cqh
  }

  .__pf.__pf_GedKhsEK .pf-82_ {
    width: 484px;
    margin-top: 20px;
    margin-left: 10px;
    display: table;
    height: auto;
    aspect-ratio: var(--pf-image-ratio);
    margin-right: 0;
    right: 20px;
    position: relative;
  }

  .__pf.__pf_GedKhsEK .pf-83_ {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px
  }

  .__pf.__pf_GedKhsEK .pf-84_ {
    width: 100%;
    margin: 30px 0 0;
    display: table;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-86_,
  .__pf.__pf_GedKhsEK .pf-87_ {
    margin-top: 20px;
    display: table;
    margin-right: 20px;
    height: auto;
    aspect-ratio: var(--pf-image-ratio)
  }

  .__pf.__pf_GedKhsEK .pf-86_ {
    width: 85vw;
    margin-left: 20px
  }

  .__pf.__pf_GedKhsEK .pf-87_ {
    width: 231px;
    margin-left: auto
  }

  .__pf.__pf_GedKhsEK .pf-88_ {
    margin-left: 56px
  }

  .__pf.__pf_GedKhsEK .pf-95_ {
    font-size: 29px;
    margin: 20px -25px 0
  }

  .__pf.__pf_GedKhsEK .pf-98_ {
    margin-left: 0
  }

  .__pf.__pf_GedKhsEK .pf-91_ {
    margin-left: 10px;
    margin-right: 10px
  }

  .__pf.__pf_GedKhsEK .pf-99_ {
    width: 90%
  }

  .__pf.__pf_GedKhsEK .pf-104_ {
    font-size: 36px
  }

  .__pf.__pf_GedKhsEK .pf-106_,
  .__pf.__pf_GedKhsEK .pf-109_ {
    font-size: 13px
  }

  .__pf.__pf_GedKhsEK .pf-89_ {
    padding-bottom: 0
  }
}



/* body にクラスが付いたときスクロール抑止するなら */
body.pf-popup-open {
  overflow: hidden;
}