/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 20 2025 | 01:03:08 */
/* =====================================
   SPメニュー上部：ログイン／閉じる テキスト追加版
===================================== */

#sp_menu .p-spMenu__closeBtn{
  position: relative !important;
  padding: 10px 16px !important;
  height: 70px !important;
  box-sizing: border-box !important;

  background: #fff !important;
  border-bottom: none !important;
  box-shadow: none !important;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;

  z-index: 10 !important;
}

/* 上部バー */
#sp_menu .spMenuTop{
  position: relative !important;
  width: 100% !important;
  height: 56px !important;

  display: flex !important;
  align-items: center !important;
}

/* 左：ロゴ */
#sp_menu .spMenuTop__left{
  display: flex !important;
  align-items: center !important;
  padding-right: 140px !important;
  box-sizing: border-box !important;
}

#sp_menu .spMenuTop__logo img{
  width: 110px !important;
  max-width: 110px !important;
  height: auto !important;
  display: block !important;
}

/* 右：ログイン＋× */
#sp_menu .spMenuTop__right{
  position: absolute !important;
  right: -6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

/* ログイン */
#sp_menu .spMenuTop__login{
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  width: 44px !important;
  height: 44px !important;

  background: transparent !important;
  color: #111 !important;
  text-decoration: none !important;
}

#sp_menu .spMenuTop__login i{
  font-size: 20px !important;
  line-height: 1 !important;
}

#sp_menu .spMenuTop__loginText{
  margin-top: 4px !important;
  font-size: 10px !important; /* ★指定どおり */
  line-height: 1 !important;
  color: #111 !important;
}

/* ×＋閉じる */
#sp_menu .c-iconBtn.-menuBtn{
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  width: 44px !important;
  height: 44px !important;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* 「閉じる」テキスト */
#sp_menu .spMenuTop__closeText{
  margin-top: 4px !important;
  font-size: 10px !important; /* ★指定どおり */
  line-height: 1 !important;
  color: #111 !important;
  white-space: nowrap !important;
}

/* 上の余白を完全に消す */
#sp_menu .p-spMenu__inner{
  padding-top: 0 !important;
}


/* ===========================
   スマホメニュー 全体
=========================== */
.sp-menu {
  padding: 0;
  margin: 0;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.4;
}

/* SWELL 側の余白を完全に打ち消す（左の隙間対策） */
.sp-menu,
.sp-menu * {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.sp-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===========================
   見出し
=========================== */
.sp-menu__heading {
  padding: 0;
  font-weight: 700;
  color: #111;
  background: #f7f7f7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.sp-menu__heading a {
  display: block;
  position: relative;
  padding: 12px 28px 12px 16px !important;
  color: #333;
  white-space: nowrap;
  overflow: visible;
}

.sp-menu__heading a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #c00;
  border-bottom: 2px solid #c00;
  transform: translateY(-50%) rotate(-45deg);
}

/* ===========================
   2カラム項目
=========================== */
.sp-menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.sp-menu__cols a {
  display: block;
  position: relative;
  padding: 12px 28px 12px 16px !important;
  border-bottom: 1px solid #eee;
  font-size:0.92rem;
  color: #333;
  background: #fff;
  white-space: nowrap;
  overflow: visible;
}

/* 右矢印（2カラム） */
.sp-menu__cols a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #c00;
  border-bottom: 2px solid #c00;
  transform: translateY(-50%) rotate(-45deg);
}

/* 2カラム：最後の1件だけ下線なし */
.sp-menu__cols a:last-child {
  border-bottom: none !important;
}

/* ===========================
   1カラム項目
=========================== */
.sp-menu__item a {
  display: block;
  position: relative;
  padding: 12px 28px 12px 16px !important;
  border-bottom: 1px solid #eee;
  font-size:0.92rem;
  color: #333;
  background: #fff;
  white-space: nowrap;
  overflow: visible;
}

/* 右矢印（1カラム） */
.sp-menu__item a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #c00;
  border-bottom: 2px solid #c00;
  transform: translateY(-50%) rotate(-45deg);
}

/* 1カラム：最後の項目だけ下線なし */
.sp-menu__item--last a {
  border-bottom: none !important;
}

/* 指定のaタグだけ下線を消す */
.sp-menu a.no-border {
  border-bottom: none !important;
}

/* ===========================
   タグ
=========================== */
.sp-menu__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px !important;
  font-size: 12px;
  background: #f2f2f2;
  border-radius: 12px;
  color: #666;
}

/* ===========================
   SWELL側のデフォルト余白をゼロ化
=========================== */
.drawer-nav,
.l-header__spNav,
.c-gnavWrap,
.c-gnav,
.l-header__spMenu {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* 再度 左Padding 統一 */
.sp-menu a {
  padding-left: 16px !important;
  margin-left: 0 !important;
}

/* =========================
   SP 縦並びCTA（最終微調整版）
========================= */

.p-spCtaList{
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 16px 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-spCtaBtn{
  position: relative;
  width: 100%;
  height: 58px;
  border-radius: 999px;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  overflow: visible;

  color: #fff;
}

.p-spCtaBtn::before{
  content: attr(data-label);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 16px;
  border-radius: 999px;
  background: #fff;

  color: #111;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;

  border: 2px solid transparent;
  box-sizing: border-box;
}

.p-spCtaBtn[data-label=""]::before{
  content: "";
  display: none;
}

.p-spCtaBtn__icon{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
}

.p-spCtaBtn__icon i{
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.p-spCtaBtn__main{
  display: block;
  width: 100%;
  text-align: center;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;

  color: #fff;
  white-space: nowrap;

  padding: 0 56px;
  box-sizing: border-box;
}

.p-spCtaBtn__arrow{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;
  border-radius: 999px;

  background: #fff;
  border: 2px solid #fff;
  box-sizing: border-box;

  color: #fff;
}

.p-spCtaBtn__arrow::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-55%, -50%) rotate(45deg);
}

.p-spCtaBtn--red{ background: #e60012; }
.p-spCtaBtn--red::before{ border-color: #e60012; }
.p-spCtaBtn--red .p-spCtaBtn__arrow{ color: #e60012; }

.p-spCtaBtn--teal{ background: #1c9a93; }
.p-spCtaBtn--teal::before{ border-color: #1c9a93; }
.p-spCtaBtn--teal .p-spCtaBtn__arrow{ color: #1c9a93; }

.p-spCtaBtn--orange{ background: #f08a1a; }
.p-spCtaBtn--orange::before{ border-color: #f08b1c; }
.p-spCtaBtn--orange .p-spCtaBtn__arrow{ color: #f08a1a; }

.p-spCtaBtn--purple{ background: #5b66b7; }
.p-spCtaBtn--purple::before{ border-color: #5b66b7; }
.p-spCtaBtn--purple .p-spCtaBtn__arrow{ color: #5b66b7; }

@media (max-width: 360px){
  .p-spCtaList{ gap: 16px; }
  .p-spCtaBtn{ height: 56px; }

  .p-spCtaBtn__icon{
    left: 14px;
    width: 32px;
    height: 32px;
  }

  .p-spCtaBtn__icon i{ font-size: 17px; }

  .p-spCtaBtn__main{
    font-size: 15px;
    padding: 0 52px;
  }

  .p-spCtaBtn__arrow{
    right: 14px;
    width: 32px;
    height: 32px;
  }
}

/* =========================================
   SP メニュー内：追従CTA（sticky + 余白は変数で確保）
========================================= */

/* 追従ボタン枠（JSで .p-spMenu__body の中へ移動） */
#js-spAccDock{
  position: sticky;
  bottom: 0;
  z-index: 5;

  background: #fff;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

#js-spAccDock.is-hide{
  display: none;
}

#sp_menu .p-spMenu__body{
  background: #fff;
  padding-bottom: var(--spDockSpace, 0px) !important;
}

/* =================================================
   SPメニュー：機種依存の横フラつき対策
================================================= */

/* スクロール領域で横オーバーフローを完全遮断 */
#sp_menu .p-spMenu__body{
  overflow-x: hidden !important;
  overscroll-behavior-x: none !important;
  -webkit-overflow-scrolling: touch;
}

/* padding込みでも幅100%を超えないように統一 */
#sp_menu .p-spMenu__body *,
#sp_menu .sp-menu,
#sp_menu .sp-menu *{
  box-sizing: border-box !important;
}

/* grid内テキストが内容幅で押し広げるのを防ぐ */
#sp_menu .sp-menu__cols > a{
  min-width: 0 !important;
}

/* 右矢印込みでも確実に枠内に収める */
#sp_menu .sp-menu__heading a,
#sp_menu .sp-menu__cols a,
#sp_menu .sp-menu__item a{
  max-width: 100% !important;
}