@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
*/
@media screen and (min-width: 961px) {
    .l-header__menuBtn.sp_ {
        display: block!important;
        position: relative;
		background-color:#E6E6E6;
		border-radius:50%;
        top: 14px;
		left:15px; //表示位置
    }
    .p-spMenu {
        display: block!important;
    }
    .p-spMenu__inner {
        max-width: 600px; //幅を設定
    }     
}
/* ヘッダー固定 */
@media screen and (min-width:960px) {
/* 常時表示のフィックスヘッダーを非表示にする　*/
.l-fixHeader {
display:none;
}
/* 通常のヘッダーをトップに固定する　ヘッダーの高さ指定*/
.l-header {
position: sticky;
position: -webkit-sticky;
top: var(--swl-adminbarH,0);
  background-color: transparent;
}
}

/* 追従バナー*/
.follow-banner {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
}

.follow-banner a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: var(--color_main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1em 0.5em;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.25s;
}

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

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

/* スマホでは非表示に */
@media screen and (min-width: 599px) {
  .follow-banner {
    display: none;
  }
}