@charset "UTF-8";

/* --------------------------
  common
-------------------------- */
:root {
  --noto-sans: "Noto Sans JP", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  --zenkaku: "Zen Kaku Gothic New", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  --avenir-next: "Avenir Next", "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gray: #444444;
  --gray-dim: #646464;
  --yellow: #FFF9E0;
  --white: #fff;
  --orange: #FF8A33;
  --orange-dim: #FB9D66;
  --orange-dark: #FA6406;
  --orange-light: #F77B31;
  --lpw: 1281;
}

body {
  background-color: #f2f2f2;
  font-family: var(--noto-sans);
  font-size: 16px;
}

body.fixed {
  max-height: 100vh;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.fixed::-webkit-scrollbar {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--white);
  box-shadow: 0 0 10px 2px #d6d6d6;
  font-family: var(--zenkaku);
  background-color: var(--yellow);
}

.wrapper_inner {
  width: 100%;
  margin: 0 auto;
}

/* --------------------------
  layout-three-column / aside (750px未満は非表示)
-------------------------- */
.layout-three-column {
  display: block;
}

.aside-left,
.aside-right {
  display: none;
}

/* 750px以下の時はスケールダウンでPCの形を維持（比率保ったままSP表示） */
@media screen and (max-width: 750px) {
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: var(--gray);
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }

  .sp-viewport {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--gray);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sp-scale-inner {
    width: 750px;
    transform: scale(var(--sp-scale, 1));
    transform-origin: top left;
  }

  .wrapper {
    margin: 0 !important;
    position: static;
    width: 750px;
  }

  .slide-left .slide-track,
  .slide-right .slide-track {
    animation-play-state: paused;
  }

  .floating_cv {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

}

/* 750px以上でPCレイアウト（ヘッダー表示、asideは非表示） */
@media screen and (min-width: 750px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .sp-viewport {
    width: auto;
    max-width: 100%;
    height: auto;
    overflow: visible;
  }

  .sp-scale-inner {
    position: static;
    width: auto;
    height: auto;
  }

  .wrapper {
    position: static;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .wrapper_inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .wrapper_inner > .footer {
    flex-shrink: 0;
  }

  .layout-three-column {
    display: block;
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  main {
    position: relative;
    z-index: 2;
    width: 750px;
    min-width: 750px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  main::-webkit-scrollbar {
    display: none;
  }
}

/* 1460px以上で3カラム＋左右aside表示（ヘッダー非表示、サイド100vh固定、中央のみスクロール） */
@media screen and (min-width: 1460px) {
  .wrapper_inner > .header {
    display: none;
  }

  .aside-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: calc((100vw - 750px) / 2);
    height: 100vh;
    min-width: 0;
    background-image: url(../img/left.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    z-index: 1;
  }

  .aside-left .aside-nav {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aside-nav__logo {
    text-align: center;
    margin-bottom: 16px;
  }

  .aside-nav__logo img {
    display: block;
    margin: 0 auto;
  }

  .aside-nav__list {
    list-style: none;
    margin: 0;
    padding-top: 20px;
  }

  .aside-nav__list a {
    color: #111;
    text-decoration: underline;
    text-decoration-color: var(--orange-dark);
    text-decoration-thickness: 6px;
    text-underline-offset: 10px;
    font-weight: bold;
    font-size: 28px;
    line-height: 3;
  }

  .aside-nav__list a:hover {
    color: var(--orange);
  }

  main {
    margin-left: calc((100vw - 750px) / 2);
    margin-right: calc((100vw - 750px) / 2);
  }

  .aside-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    width: calc((100vw - 750px) / 2);
    height: 100vh;
    min-width: 0;
    background-image: url(../img/right.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: 1;
    flex-direction: column
  }

  .aside-right .aside-buttons {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .aside-buttons__item {
    display: block;
  }

  .aside-buttons__item img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .aside-buttons__tel {
    display: block;
  }
}


/* --------------------------
  Floating Cv
-------------------------- */

.floating_cv {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: auto;
  box-sizing: border-box;
  justify-content: space-between;
  z-index: 9999;
  padding: 0 20px 0 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: transform;
  background-color: var(--white);
}

.floating_cv.is-visible {
  opacity: 1;
  visibility: visible;
}

.floating_cv a {
  display: block;
}

/* 750px以上ではフローティングの横幅を750pxに収める */
@media screen and (min-width: 750px) {
  .floating_cv {
    width: 100%;
    max-width: 750px;
    box-sizing: border-box;
  }
}

/* 1461px以上（PC）ではフローティング非表示 */
/* 750px以上（スマホ以外）ではフローティング非表示 */
@media screen and (min-width: 750px) {
  .floating_cv {
    display: none;
  }
}

/* --------------------------
  cv
-------------------------- */
.cv-01 {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%); 
  bottom: 100px;
}


.cv_reservation {
  width: 100%;
}

.cv_wrapper{
  display: flex;
  justify-content: space-between;
  padding-top: 6px;

}

.cv__img {
  width: 329px;
  height: auto;
  padding: 10px 0;
}

/* --------------------------
  CTA電話ボタン：PCはテキスト化、SPは画像リンク
-------------------------- */
.cv_tel__img-only--pc {
  display: none;
}

/* PC(750px以上): メインCTA 電話・店舗の順入れ替え、3つ縦並び、電話リンクは無効 */
@media screen and (min-width: 750px) {
  .cv-narrow .cv2_inner,
  .cv_wide .cv3_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .cv-narrow .cv_reservation,
  .cv_wide .cv_reservation {
    width: 100%;
    max-width: 686px;
  }
  .cv-narrow .cv_reservation img,
  .cv_wide .cv_reservation img {
    width: 100%;
    height: auto;
  }
  .cv-narrow .cv_wrapper,
  .cv_wide .cv_wrapper {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
  }
  .cv-narrow .cv_wrapper .cv_store {
    order: 1;
  }
  .cv-narrow .cv_wrapper .cv_tel {
    order: 2;
  }
  .cv_wide .cv_wrapper .cv_store {
    order: 1;
  }
  .cv_wide .cv_wrapper .cv_tel {
    order: 2;
  }
  .cv-narrow .cv_tel .cv_tel__link,
  .cv_wide .cv_tel .cv_tel__link {
    pointer-events: none;
    cursor: default;
  }

  /* SP表示の電話リンクを非表示 */
  .cv_tel__link--sp {
    display: none !important;
  }

  /* PC表示用画像の制御 */
  .cv_tel__img-only--pc {
    display: block;
    cursor: default;
  }
  .cv_tel__img-only--pc img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  /* --------------------------
    PC表示用テキスト電話番号（基本スタイル）
  -------------------------- */
  .cv_tel__text--pc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: inset -3px -4px 4px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 341px;
    min-height: 184px;
    box-sizing: border-box;
  }

  /* cv-01, cv-02セクションでは画面幅いっぱいに */
  .cv_wrapper .cv_tel__text--pc {
    max-width: 100%;
    width: 100%;
  }

  /* 上部：バッジと24時間テキスト */
  .cv_tel__text-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  /* バッジ「通話料無料」 */
  .cv_tel__badge {
    display: inline-block;
    background: #2249CA;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 2px 16px 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--zenkaku);
  }

  /* 「24時間・土日祝も受付中！」テキスト */
  .cv_tel__text-hours {
    color: #444444;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    font-family: var(--zenkaku);
  }

  .cv_tel__text-number-part {
    font-family: var(--avenir-next);
    font-size: 27px;
    font-weight: 600;
  }
  .cv_tel__text-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cv_tel__icon {
    max-width: 56px;
    max-height: 56px;
    flex-shrink: 0;
    display: block;
  }
  .cv_tel__icon path {
    fill: #C81313;
  }
  .cv_tel__text-number {
    color: #C81313;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-family: var(--avenir-next);
    white-space: nowrap;
  }

  /* --------------------------
    aside-right用のサイズ調整（355x140px）
  -------------------------- */
  .aside-buttons__item--tel-pc .cv_tel__text--pc {
    width: 355px;
    max-width: 355px;
    min-height: 140px;
    height: 140px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    box-shadow: inset -3px -4px 4px 0 rgba(0, 0, 0, 0.25);
  }

  .aside-buttons__item--tel-pc .cv_tel__text-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
  }
  .aside-buttons__item--tel-pc .cv_tel__text-bottom {
    margin-top: 0;
    gap: 6px;
  }
  .aside-buttons__item--tel-pc .cv_tel__badge {
    font-size: 18px;
    padding: 2px 16px 4px 16px;
    font-weight: 700;
    background: #2249CA;
    font-family: var(--zenkaku);
  }
  .aside-buttons__item--tel-pc .cv_tel__text-hours {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--zenkaku);
  }
  .aside-buttons__item--tel-pc .cv_tel__text-number-part {
    font-size: 21px;
    font-weight: 600;
  }

  .aside-buttons__item--tel-pc .cv_tel__icon {
    width: 26px;
    height: 26px;
    max-width: 26px;
    max-height: 26px;
  }

  .aside-buttons__item--tel-pc .cv_tel__text-number {
    font-size: 26px;
    font-family: var(--avenir-next);
  }

  .cv-narrow .cv__img,
  .cv_wide .cv__img {
    width: 100%;
    max-width: 686px;
    padding: 0;
  }
  .cv-narrow .cv__img a,
  .cv_wide .cv__img a {
    display: block;
  }
  .cv-narrow .cv__img img,
  .cv_wide .cv__img img {
    width: 100%;
    height: auto;
  }
}

.cv-narrow {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 64px;
}

.cv2_inner {
  padding: 0;
  width: 90%;
}

.cv_wide {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  padding: 64px 0;
}

.cv_wide--py-20 {
  padding: 64px 0 0px;
}


.cv3_inner {
  padding: 0;
  width: 90%;
}

/* --------------------------
  header
------------------------- */
.header {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 39px 0 39px;
  background-color: #fff;
}

/* --------------------------
  banner
-------------------------- */

.banner {
  padding: 32px 40px;
  background-color: var(--white);
}

.banner_img:first-child {
  padding-bottom: 16px;
}


/* --------------------------
  market-list
-------------------------- */

.market-price{
  background-color: var(--white);
  padding: 64px 32px 14px;
}

.market-price_img {
  width: 70%;
  margin: 0 auto;
  height: auto;
  display: block;
}

.market-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.market-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;   /* 金相場画像の下に価格を揃える */
}

.market-left {
  min-width: 400px;   /* 最大画像幅を確保（プラチナ399pxが収まる） */
  display: flex;
  justify-content: flex-end;
  position: relative;   /* 金属アイコン用の基準 */
}

/* 金・銀：テキスト画像の左側に配置 */
.market-metal-icon {
  position: absolute;
  left: 25px;
  top: 55%;
  transform: translateY(-50%);
  width: 50%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* 金のみ：画像内の描画位置が左に余白多めのため、表示を左に補正 */
.market-metal-icon--gold {
  object-position: -8px center;   /* 値は見た目に合わせて調整 */
}

/* プラチナのみ別位置（右寄せ・やや上） */
.market-metal-icon--platinum {
  left: auto;
  right: 210px;   /* テキスト画像との距離 */
  top: 35%;
  transform: translateY(-30%);
}

.market-left img:not(.market-metal-icon) {
  width: 354px;   /* デザインに合わせて調整 */
  height: auto;
  display: block;
  padding-top: 50px;
  margin-right: 10px;
  flex-shrink: 0;   /* flexで縮小されないようにする */
}

.market-right {
  flex: 1;
  max-width: 250px;   /* 価格・前日比のテキスト幅を狭くする */
  text-align: center;
  align-items: center;
}

.price {
  font-size: 56px;
  font-weight: 700;
  display: inline-block;   
  transform: translateY(0.15em);  
}

.price-comma {
  font-family: "Inter", sans-serif;
  display: inline-block;
  transform: translateY(-0.05em);  
}

.price-yen {
  font-size: 0.6em;
}

.diff {
  font-size: 28px;
}

.diff-value.minus {
  color: #e53935;
  font-weight: 700;
}

.diff-value.plus {
  color: #1e88e5;
  font-weight: 700;
}

.market-price .diff-yen {
  font-size: 0.75em;
  font-weight: 600;
}

.market-item .note {
  max-width: 638px;
  margin: 0 auto;
  flex-basis: 100%;
  font-size: 14px;
  color: var(--gray);
  margin-top: 20px;
}

.market-update {
  width: 100%;
  text-align: right;
  font-size: 24px;
  color: var(--orange);
  font-weight: 900;
  margin-top: 8px;
  padding-top: 0;
  font-family: "Inter", sans-serif;
}

/* --------------------------
  achievements
-------------------------- */
.achievements {
  padding: 64px 60.5px 80px 60.5px;
}

.achievements_img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------
  items
-------------------------- */

/* 全体 */
.items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* カード */
.item-card {
  width: 280px;
  flex-shrink: 0;
  margin-right: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 3px 7px 30px rgba(204, 134, 21, 0.45);
  text-align: center;
}

/* 画像 */
.item-image {
  border-radius: 16px;
  overflow: hidden;
}

.item-image img {
  width: 260px;
  height: 193px;
  display: block;
}

/* 説明テキスト */
.item-text {
  width: 260px;
  height: 38px;
  font-size: 16px;
  margin: 12px 0 ;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ラベル（オレンジの丸） */
.item-label {
  display: inline-block;
  width: 112px;
  height: 28px;
  background: #ff7a1a;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 999px;
  align-items: center;
}

/* 価格 */
.item-price {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: bold;
  color: #E36215;
  padding-bottom: 14px;
}

.price-number {
  font-size: 48px;
}

.comma {
  font-family: Impact, 'Arial Black', system-ui, sans-serif;
  font-size: 0.95em;
  position: relative;
  top: -0.05em;
}

.price-unit {
  font-size: 28px;
  font-weight: 900;
}

/* スライド全体 */

/* 各段 */
.slide-row {
  margin-bottom: 24px;
}

/* 横クリップ用ラッパー（overflow-x のみ有効にしたいが仕様で overflow-y も auto になるため、上下に padding で影の描画領域を確保） */
.slide-row-inner {
  max-width: 750px;
  overflow-x: hidden;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 20px;
  margin-top: -40px;
  margin-bottom: -40px;
}

/* 横並びトラック */
.slide-track {
  display: flex;
  width: max-content;
}



/* アニメーション */
.slide-left .slide-track {
  animation: slide-left 40s linear infinite;
  animation-delay: -20s;
}

.slide-right .slide-track {
  animation: slide-right 40s linear infinite;
  animation-delay: -20s;
}

/* 左 → 右 */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 右 → 左 */
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* --------------------------
  voice
-------------------------- */

.voice_inner {
  position: relative;
}

.voice_img {
  padding-top: 60px;
}

/* --------------------------
  buy-list
-------------------------- */

.buy-list_inner {
  position: relative;
  padding-bottom: 64px;
}

.buy-list_title {
  width: 70%;
  margin: 0 auto;
  padding: 160px 0 40px;
}

.buy-list_title-wrap {
  position: relative;
  display: inline-block;
}

.buy-list_title-badge {
  position: absolute;
  top: -130px;
  left: -100px;
  z-index: 1;
  width: 145px;
  height: auto;
}

.buy-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 8px;
  list-style: none;
  padding: 0 24px;
}

.buy-card {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.buy-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.buy-card p {
  margin: 10px 0 8px;
  font-weight: bold;
}

/* --------------------------
  example
-------------------------- */

.example_img {
  height: auto;
  display: block;
}

/* --------------------------
  flow
-------------------------- */

.flow_annotation {
  background-color: var(--white);
  padding: 0 48px 72px;
}

.flow_annotation_text {
  color: var(--gray);
  line-height: 1.5;
}


/* --------------------------
  area
-------------------------- */

.area {
  background: var(--white);
}

.area_inner {
  padding: 64px 0 ;
}

.area_img {
width: 45%;
margin: 0 auto;
}

.area_title {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  padding: 30px 0;
}

.area .banner_img {
  margin:0 24px;
}

/* --------------------------
  faq
-------------------------- */

/* 全体 */
.faq {
  max-width: 700px;
  margin: 40px auto;
  background: #fff8e6;
  border-radius: 12px;
  padding-bottom: 24px;
}

/* タイトル */
.faq-title {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* FAQリスト */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 1問ずつ */
.faq-item {
  background: #FFFCF4;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

/* Q・A 共通（アイコンは position で配置、テキストは左余白で並ぶ） */
.faq-q,
.faq-a {
  position: relative;
  margin: 0;
  padding: 0;
}

.faq-a {
  margin-top: 12px;
}

.faq-q .faq-icon,
.faq-a .faq-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

/* アイコン（画像） */
.faq-icon {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

/* テキスト（アイコン幅＋余白で左にスペース確保） */
.faq-q p,
.faq-a p {
  padding-left: 59px;
  margin: 0;
  line-height: 1.5;
}

.faq-q p {
  color: var(--orange);
  font-weight: bold;
  font-size: 28px;
  padding-bottom: 10px;
}

.faq-a p {
  color: var(--gray-dim);
  font-weight: bold;
  font-size: 24px;
  padding-top: 4px;
}

/* --------------------------
  footer
-------------------------- */

.footer {
  background: var(--gray);
  padding: 24px 0 150px;
  color: var(--white);
  text-align: center;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 24px 0 150px;
  }
}


.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 80px 0 40px;
  margin: 0;
  font-size: 18px;
}

.footer-links li::after {
  content: "/";
  margin: 0 15px;          
}

.footer-links li:last-child::after {
  content: "";
}

.footer-links a {
  text-decoration: none;
}

.footer__logo {
  width: 40%;
  margin: 0 auto;
}

.footer__text_inner {
  padding-top: 30px;
}

.footer__license {
  display: block;
  margin-top: 0.5em;
}

.copyright{
  padding-top: 40px;
}

.copyright small {
  font-size: 0.8em;
}

/* --------------------------
  store campaign modal
-------------------------- */
.store-cp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  cursor: pointer;
}

.store-cp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.store-cp-modal::-webkit-scrollbar {
  display: none;
}

.store-cp-modal .store-cp-close-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 378px) {
  .store-cp-modal .store-cp-close-icon {
    top: 8px;
    right: 8px;
  }
}

.store-cp-modal .offer.campaign-modal-box.store-campaign-modal-box {
  position: relative;
  width: 100%;
  max-width: 670px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--white);
  padding: 0 0 24px;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.store-cp-modal .offer.campaign-modal-box.store-campaign-modal-box::-webkit-scrollbar {
  display: none;
}

.store-cp-modal .offer-image {
  width: 100%;
  line-height: 0;
}

.store-cp-modal .offer-image img.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.store-cp-modal .offer-image img.pc {
  display: none;
}

.store-cp-modal .offer-image img.sp {
  display: block;
}

@media (min-width: 769px) {
  .store-cp-modal .offer-image img.pc {
    display: block;
  }
  .store-cp-modal .offer-image img.sp {
    display: none;
  }
}

.store-cp-modal .offer-summary {
  padding: 24px 20px 0;
}

.store-cp-modal .offer-summary-item {
  margin: 0 0 16px;
}

.store-cp-modal .offer-summary-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 4px;
}

.store-cp-modal .offer-summary-item-data {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

.store-cp-close.box-modaal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(100vw * 8 / var(--lpw));
  width: calc(100vw * 200 / var(--lpw));
  height: calc(100vw * 52 / var(--lpw));
  padding: calc(100vw * 12 / var(--lpw)) 0;
  margin: calc(100vw * 50 / var(--lpw)) auto calc(100vw * 30 / var(--lpw));
  border-radius: 5px;
  background-color: #DEBA70;
  text-align: center;
  cursor: pointer;
}

.store-cp-close.box-modaal-close img {
  width: calc(100vw * 16 / var(--lpw));
}

.store-cp-close.box-modaal-close span {
  color: #fff;
  font-size: clamp(1px, calc(100vw * 16 / var(--lpw)), 16px);
  font-style: normal;
  font-weight: 600;
  line-height: calc(100vw * 28 / var(--lpw));
  letter-spacing: calc(100vw * 1.6 / var(--lpw));
}

@media (min-width: 1281px) {
  .store-cp-close.box-modaal-close {
    gap: 8px;
    width: 200px;
    height: 52px;
    padding: 12px 0;
    margin: 50px auto 30px;
  }
  .store-cp-close.box-modaal-close img {
    width: 16px;
  }
  .store-cp-close.box-modaal-close span {
    line-height: 28px;
    letter-spacing: 1.6px;
  }
}

@media (max-width: 768px) {
  .store-cp-close.box-modaal-close {
    gap: 8px;
    width: 169px;
    height: 52px;
    padding: 12px 0;
    margin: 30px auto 20px;
  }
  .store-cp-close.box-modaal-close img {
    width: 16px;
  }
  .store-cp-close.box-modaal-close span {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
  }
}

.banner_img .js-store-cp-open {
  display: block;
}

.banner_img .js-store-cp-open img {
  display: block;
  width: 100%;
  height: auto;
}

