@charset "UTF-8";
/* CSS Document */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
	margin: 0;
	padding: 0;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	display: block;
}

.wrapper {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	padding: 0;
}

.foot {
    font-size: 10px;
    padding-top: 2em;
    text-align: center;
}

.m-hoot a {
    padding: 0px 10px;
    font-size: 120%;
    line-height: 2.0em;
}

address {
    padding: 10px 0 10px;
    font-style: normal;
}

/* -------------------------------------------------------------------- 
  オファー
-------------------------------------------------------------------- */
.box_cart {
  position: relative;
}

.box_cart .cart_01,
.box_cart .cart_02 {
  position: absolute;
  bottom: 0%;
  z-index: 1;
  height: auto;
  overflow: hidden;
}

.box_cart .cart_01 {
    width: 43%;
    left: 9%;
    bottom: 3%;
}

.box_cart .cart_02 {
    width: 43%;
    right: 7%;
    bottom: 3%;
}

.box_cart .cart_01:hover,
.box_cart .cart_01 a:hover,
.box_cart .cart_02:hover,
.box_cart .cart_02 a:hover {
  opacity: 0.8;
}

.box_cart .cart_01 img,
.box_cart .cart_02 img {
  display: block;
  width: 100%;
  height: auto;
}

/* Reflection */
.cart_01 .cta-shine::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 180px;
  height: 220%;
  transform: rotate(15deg);
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 45%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.7) 55%,
    rgba(255,255,255,0) 100%
  );
  animation: ctaShine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes ctaShine {
  0%   { left: -70%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 120%; opacity: 1; }
  90%  { opacity: 0.8; }
  100% { left: 120%; opacity: 0; }
}




.fixedcart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .fixedcart {
    width: 16vw;
  }
}

/* -----------------------------------------
   phone_link
   ----------------------------------------- */

/* ▼ デフォルトは無効（PC用） */
a.phone_link {
  pointer-events: none;  /* PCではクリックしても反応しない */
}

/* ▼ スマホ（767px以下）だけ有効化 */
@media (max-width: 767px) {
  a.phone_link {
    pointer-events: auto;  /* スマホでは普通にタップで電話発信できる */
  }
}

/* ------------------------------------
   floating-action：追従リンク
------------------------------------ */

.floating-action {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* 初期非表示 */
  z-index: 9999;
}

/* aタグはブロック化だけしておく（自由に装飾可能） */
.floating-action .action-link {
  display: block;
}
