@charset "utf-8";

/* --------------------------------------------------
initial settings
-------------------------------------------------- */
:root {
  --color-black: #090505;
  --color-yellow: #ffc107;
  --color-orange: #ff9800;
  --color-purple: #674ea9;
  --color-blue: #4400ff;
  --color-gray-01: #fafafa;
  --color-gray-02: #f4f4f4;
  --color-gray-03: #e3e2e3;
  --color-gray-04: #cccccc;
  --color-gray-05: #6a6a6a;
  --box-shadow-005: rgba(0, 0, 0, 0.05);
  --box-shadow-010: rgba(0, 0, 0, 0.1);
  --box-shadow-015: rgba(0, 0, 0, 0.15);
  --box-shadow-020: rgba(0, 0, 0, 0.2);
  --grad-yellow-orange: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  --grad-yellow-orange-reverse: linear-gradient(-90deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  --grad-purple-blue: linear-gradient(90deg, var(--color-purple) 0%, var(--color-blue) 100%);
  --grad-purple-blue-reverse: linear-gradient(-90deg, var(--color-purple) 0%, var(--color-blue) 100%);
}


/* --------------------------------------------------
slide popup
-------------------------------------------------- */
#slide_popup {
  position: fixed;
  z-index: 100;
  width: 260px;
  height: 45px;
  bottom: 0;
  right: 0;
  background: white;
  border-left: solid 1px var(--color-gray-04);
  border-top: solid 1px var(--color-gray-04);
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
}

#slide_popup.is-active {
  width: 320px;
  height: 360px;
  transition: all 0.5s ease;
}

#slide_popup-in {
  padding: 0 10px;
}

#slide_popup h2 {
  text-align: center;
  color: var(--color-purple);
  background: var(--grad-purple-blue);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 5px 0;
  font-size: 14px;
  margin: 0 auto;
  line-height: 1.2;
}

#btn-toggle {
  position: absolute;
  top: -1px;
  left: -30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#btn-toggle .open-btn.btn-hidden {
  display: none;
}

#btn-toggle .close-btn.btn-hidden {
  display: none;
}

#btn-toggle img {
  width: 30px;
  height: 30px;
  height: auto;
}

#slide_popup-contents {
  text-align: center;
}

@media only screen and (max-width: 374px) {
  #slide_popup {
    display: none;
  }
}

.appeal {
  padding: 10px;
  background: var(--color-purple);
  background: var(--grad-purple-blue);
  text-align: center;
  display: inline-block;
  color: white;
  border-radius: 5px;
}

.appeal .head_top {
  margin-top: 1rem;
}

.appeal .head_top img {
  height: auto;
  width: auto;
}

.appeal a {
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: white;
  margin: 0 auto;
  padding: 0 12px 0 6px;
  font-size: 16px;
  font-weight: bold;
  width: 70%;
  background: var(--color-orange);
  background: var(--grad-yellow-orange);
}

.appeal p {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  margin: 10px 0;
  color: white;
}

.appeal .img_wrap {
  max-width: 280px;
  height: 175px;
  margin: 10px auto 0;
  position: relative;
}

.appeal .img_wrap .box {
  max-width: 200px;
  position: absolute;
}

.appeal .img_wrap .box:first-child {
  left: 0;
  top: 0;
  z-index: 2;
}

.appeal .img_wrap .box:last-child {
  right: 0;
  bottom: 0;
  z-index: 1;
}

.appeal .img_wrap .box img {
  width: 100%;
  vertical-align: bottom;
  box-shadow: 2px 2px 4px grey;
}

.appeal .box a {
  display: inline-block;
  background: none;
  width: 100%;
  border: none;
  padding: 0;
}

.appeal .box a img {
  height: auto;
  width: 100%;
}
