﻿
.top-bnr-ex4 {
	width: 100%;
	max-width: 900px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top-bnr-ex4 a {
	width: 48%;
	margin-bottom: 20px;
}

.top-bnr-ex4 a p {
	text-align: center;
	font-size: 0.9em;
	font-weight: 500;
}

@media (max-width:600px){
	
	.top-bnr-ex4 {
		max-width: 300px;
	}
	
	.top-bnr-ex4 a {
		width: 100%;
		margin-bottom: 5px;
	}
	
}

.insta-block {
	width: 100%;
	max-width: 500px;
	padding: 20px;
	display: block;
	background: linear-gradient(70deg, #fd8b32, #a407b8);
	margin: 40px auto 0 auto;
	border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.insta-block:hover {
	opacity: 0.7;
}

.insta-inner {
	display: flex;
	justify-content: space-between;
}

.insta-tit {
	width: 60%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.insta-tit img {
	width: 80%;
}

.insta-tit p {
	font-weight: 500;
	margin-bottom: 10px;
}

.insta-tit dd {
	margin-bottom: 0;
}

.insta-qr {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fixed-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 30px);
  max-width: 500px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.fixed-banner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.fixed-banner__link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
	border: solid 3px #ccc;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.fixed-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-banner__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.fixed-banner__close:hover {
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .fixed-banner {
    bottom: 12px;
    width: calc(100% - 20px);
  }

  .fixed-banner__close {
    width: 28px;
    height: 28px;
    font-size: 18px;
    top: -8px;
    right: -8px;
  }
}










