/** Shopify CDN: Minification failed

Line 195:11 Expected ":"

**/
/* 2600605追加 トップポップアップ共通CSS */
/*テキスト*/
.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4{
  display:block;
  font-style: normal;
  font-weight: 500;
}
.modal-content h1 {
  font-size: 36px;
  letter-spacing: 1.8px;
  line-height: 140%;
  margin: 16px 0;
}

.modal-content h2 {
  letter-spacing: .06em;
  font-size: 28px;
  line-height: 140%;
  margin: 16px 0;
}

.modal-content h3 {
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 140%;
  margin: 12px 0;
}

.modal-content h4 {
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 140%;
  margin: 10px 0;
}

.modal-content p{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .7px;
  line-height: 170%;
  margin: 16px 0 0;
}

@media (max-width: 767px){
    .modal-content h1 {
    font-size: 26px;
    letter-spacing: 1.3px;
    line-height: 140%;
  }

  .modal-content h2 {
    font-size: 22px;
    letter-spacing: .05em;
    line-height: 150%;
  }

  .modal-content h3 {
    font-size: 20px;
  }

  .modal-content h4 {
    font-size: 16px;
  }

  .modal-content p{
    font-size: 12px;
  }
}
.c_popup {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px 0;
  font-family: sans-serif;
}

.c_hero {
  width: 100%;
  display: block;
  margin-bottom: 32px;
}

.c_feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-hero-section .c_feature:not(.--icon) img,
.home-pickup-section .collection-banner .c_feature:not(.--icon) img {
  width: 30%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (max-width: 767px){
  .home-hero-section .c_feature:not(.--icon) img,
  .home-pickup-section .collection-banner .c_feature:not(.--icon) img {
    width: 50%;
  }
}
.home-hero-section .c_feature.--icon img,
.home-pickup-section .collection-banner .c_feature.--icon img {
  width: 48px;
  flex-shrink: 0;
}

.c_feature_text {
  display: flex;
  flex-direction: column;
}
.c_feature_text h1,
.c_feature_text h2,
.c_feature_text h3,
.c_feature_text h4,
.c_feature_text p{
  margin:0;
}

.c_features {
  margin-top:16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.c_features.--one {
  grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 768px) {
  .c_features {
    grid-template-columns: 1fr;
  }
}

.c_products{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin:20px 0;
}
.c_product_card{
  position:relative;
  display:flex;
  text-decoration: none;
  color: inherit;
  gap:1rem;
  align-items:center;
}
.c_product_card img{
  display: block;
  height: auto;
  width: 100%;
}
.c_card_left{
  max-width: 152px;
  position:relative;
}
p.c_product_category{
  align-items: center;
  display: flex;
  gap: 0 8px;
  padding: 0;
  margin: 0;
  z-index: 1;
  color: #959494;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
p.c_product_badge{
  position: absolute;
  top: 0;
  margin: 0 !important;
  font-size: 12px;
}
h3.c_product_title{
  margin:4px 0;
}
p.c_product_price{
  margin:0;
}

@media (max-width: 768px) {
  .c_card_left{
  max-width
  }
  p.c_product_category{
    font-size:14px;
  }
  h3.c_product_title{
    font-size:18px;
  }
}

.c_button{
  position:relative;
  width: 200px;
  cursor: pointer;
  display: block;
  width: fit-content;
  background-color: #56534d;
  border-radius: 3px;
  margin-top:20px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 12px;
  padding-top: 12px;
  font-family: 'Zen Kaku Gothic Antique';
  font-weight: 500;
  text-decoration:none;
  text-transform: none;
  font-style: normal;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 18px;
}
.c_button.--right{
  margin-left:auto;
}
.c_button.--center{
  margin-left:auto;
  margin-right:auto;
}
.c_button:hover{
  background-color: #363636;
}
@media (max-width: 768px) {
  .c_button{
    font-size:12px;
    line-height: 16px;
    padding:8px;
  }
}

/* Shared modal styles for hero and pickup sections */
.c-modal {
    pointer-events: auto;
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000020 !important;
    overscroll-behavior: none;
    /* do not allow the backdrop to scroll; modal-content handles internal scroll */
    overflow: hidden;
    /* center modal by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
}

.c-modal.active { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000025;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: auto;
  touch-action: none;
}
.c-modal.active .modal-overlay { 
    display:block !important;
    opacity: 1; 
}

.modal-content {
    position: relative;
    z-index: 10000030 !important;
    background: #fff;
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
    padding: 8px 16px 16px;
    /* iOS Safari: use 100dvh (dynamic viewport height) to account for address bar */
    max-height: calc(100dvh - 85px - env(safe-area-inset-bottom, 0px));
    margin: auto; /* center vertically/horizontally */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}
@supports not (height: 100dvh) {
    .modal-content {
        max-height: calc(100vh - 85px - env(safe-area-inset-bottom, 0px));
    }
}
.c-modal.active .modal-content { 
    opacity:1; 
    transform: translateY(0); 
}

.modal-body { 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    flex: 1; 
    min-height: 0; 
}

.modal-content::-webkit-scrollbar { 
    display:none; 
}

button.open-modal{ 
    appearance: none; 
    -webkit-appearance: none; 
    border: solid 1px #dadada; 
    background: #fff; 
    padding: 10px 20px; 
    margin: 0; 
    font: inherit; 
    cursor: pointer; 
    position: absolute; 
    color: #000; 
    align-items: center; 
    display: inline-flex; 
    justify-content: center; 
    outline: 0; 
    text-decoration: none; 
    height: auto; 
    min-height: 44px; 
    width: auto; 
    border-radius: 999px; 
    white-space: nowrap; 
}

.open-modal{ 
    z-index: 10000010 !important; 
    pointer-events: auto !important; 
    touch-action: manipulation; 
    -webkit-tap-highlight-color: transparent; 
}
.open-modal.--center{ 
    bottom: 10%; 
    left: 50%; 
    transform: translateX(-50%); 
}
.open-modal.--left{ 
    bottom: 10%; 
    left: 48px; 
}
.open-modal.--right{ 
    bottom: 10%; 
    right: 48px; 
}

button.close-modal{ 
    all: unset; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    line-height: 1;
    min-height: auto; 
    cursor: pointer; 
    padding: 0; 
    font-size: 20px; 
    position: sticky; 
    top: 0; 
    right: 0; 
    background: #fff; 
    text-align: right; 
    box-sizing: border-box; 
    width: 100%; 
}

@media (max-width: 768px) {
  .open-modal.--left{ bottom: 5%; left: 16px; }
  .open-modal.--right{ bottom: 5%; right: 16px; }
  button.close-modal{ padding: 0; }
}

@media (max-height: 700px) {
  /* small/tall phones: make modal nearly full-screen to avoid clipping */
  .modal-content { 
    max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)); 
    margin: 8px; 
    }
}
