/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 27 2025 | 08:45:24 */
/* ===== COREDESIGN Reserve Button (unique) ===== */
.cdi-reserve-cta{
  display:flex;
  justify-content:center;
  margin: 24px 0;
}

.cdi-reserve-btn{
  position: relative;
  display: inline-block;
  background: #3E3925;              /* ご指定カラー */
  color: #fff;
  padding: 14px 56px 14px 32px;     /* 右はドット分を広めに */
  border-radius: 999px;             /* pill */
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(62,57,37,.20);
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}

/* 右端の白いドット */
.cdi-reserve-btn::after{
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* hover / active / focus */
.cdi-reserve-btn:hover{
  background: #4A442E;             /* 少しだけ明るく */
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(62,57,37,.28);
}
.cdi-reserve-btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(62,57,37,.20);
}
.cdi-reserve-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(62,57,37,.24);
}

/* モバイル横幅最適化 */
@media (max-width: 768px){
  .cdi-reserve-btn{
    width: 100%;
    max-width: 640px;
    text-align: center;
    padding-left: 24px;
    padding-right: 56px;
  }
}
