@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/* ================================ 画面横 追従CTA ここから ================================== */
.follow-banner {
  position: fixed;
  top: 40%;
	right: 16px;
	transform: translateY(-50%);
  z-index: 100;
	p:nth-child(1) a {
		background-color: #06C052 !important;
		margin-bottom: 12px;
	}
	p:nth-child(2) a {
		background-color: var(--color_main);
	}
}

.follow-banner a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright; /* 追加 */
  color: #fff;
  background-color: var(--color_main);
  font-size: .9em !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.2em 0.6em;
/*   border-radius: 10px 0 0 10px; */
  transition: opacity 0.25s;
  text-decoration: none;
}

.follow-banner a:hover {
  opacity: 0.7;
}

.follow-banner .swl-inline-icon::after {
  left: 50%;
  transform: translateX(-50%);
}

.follow-banner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.follow-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* スマホでは非表示に */
@media (max-width: 599px) {
	.follow-banner {
		display: none !important;
	}
}
/* ================================ 画面横 追従CTA ここまで ================================== */