/**
 * CSS File: contact-btn.css
 * 2026-07-08 | Final checked
 */

/* ==========================================================================
   1. Base Components (Smartphone Vertical)
   ========================================================================== */
.p-luxury-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(20, 47, 64, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid #e7decd;
  color: #e7decd;
  padding: 18px 60px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.15em;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease;
  z-index: 1;
}

.p-luxury-contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #a6445d;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.p-luxury-contact-btn span,
.p-luxury-contact-btn svg {
  position: relative;
  z-index: 2;
}

.p-luxury-contact-icon {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.p-luxury-contact-btn:hover {
  color: #ffffff;
  border-color: #a6445d;
  box-shadow: 0 12px 35px rgba(166, 68, 93, 0.5);
  transform: translateY(-3px);
}

.p-luxury-contact-btn:hover::before {
  width: 100%;
}

.p-luxury-contact-btn:hover .p-luxury-contact-icon {
  transform: translate(3px, -3px);
}

/* ==========================================================================
   2. Media Queries
   ========================================================================== */

/* スマホ横向き */
@media screen and (max-height: 500px) and (orientation: landscape) {
  /* 必要に応じて記述 */
}

/* タブレット・PC */
@media screen and (min-width: 768px) and (min-height: 501px) {
  /* 必要に応じて記述 */
}

/* 大型モニター */
@media screen and (min-width: 1024px) and (min-height: 501px) {
  /* 必要に応じて記述 */
}
