/* サブページ用スタイルシート */
/* 基本スタイルはindex.htmlから継承 */

/* メインコンテンツ */
main{
  min-height: 60vh;
}

.u-content-space{
  padding: 40px 0 60px;
}

/* タイトル */
.title2a{
  text-align: center;
  margin-bottom: 40px;
}

.title2a h2{
  font-size: 24px;
  font-weight: 1000;
  color: #2f3b52; /* var(--brand2) */
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.title2a h2::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #f08a00; /* var(--brand) オレンジのみ */
  border-radius: 2px;
}

/* テキストコンテンツ */
.text_m{
  background: #fff;
  border: 2px solid #e7e7e7; /* var(--line) */
  border-radius: 16px;
  padding: 30px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.text_mp{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a; /* var(--text) */
  margin: 0;
}

.text_mp ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.text_mp ul li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.text_mp ul li::before{
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #f08a00; /* var(--brand) */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.text_mp ul li:last-child{
  margin-bottom: 0;
}

/* リードテキスト（大きめの説明文） */
.text_mp--lead{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5f5f5;
}

/* フォームコンテンツ */
.contents{
  margin-top: 30px;
}

.taikai_riyuu{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.taikai_riyuu textarea,
.taikai_riyuu input[type="text"]{
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  font-family: inherit;
  transition: all 0.3s;
  background: #fafafa;
  resize: vertical;
  min-height: 120px;
}

.taikai_riyuu textarea:focus,
.taikai_riyuu input[type="text"]:focus{
  outline: none;
  border-color: #f08a00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

/* フォームアクション */
.form-actions{
  margin-top: 10px;
  text-align: center;
}

/* ボタン */
.btn{
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.05em;
  min-width: 200px;
}

.btn-danger{
  background: linear-gradient(135deg, #ff3d00 0%, #ff6d00 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,61,0,.3);
}

.btn-danger:hover{
  background: linear-gradient(135deg, #ff6d00 0%, #ff3d00 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,61,0,.4);
}

.btn-danger:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255,61,0,.3);
}

.taikai_riyuu_btn{
  margin-top: 10px;
}

/* ラジオボタン・チェックボックススタイル */
.taikai_riyuu label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #fafafa;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.taikai_riyuu label:hover{
  background: #fff;
  border-color: #f08a00;
}

.taikai_riyuu input[type="radio"],
.taikai_riyuu input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #f08a00;
}

.taikai_riyuu label:has(input:checked){
  background: #fff9f0;
  border-color: #f08a00;
  font-weight: 700;
}

/* 会員登録ページ用スタイル */
.text_m--centered{
  text-align: center;
}

.regist-icon{
  margin: 0 auto 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f08a00;
  box-shadow: 0 6px 20px rgba(240,138,0,.2);
}

.regist-icon svg{
  color: #f08a00;
}

.text_mpp{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.text_mpp--lead{
  font-size: 17px;
  font-weight: 900;
  color: #2f3b52;
  margin-bottom: 20px;
  line-height: 1.6;
}

.text_mpp--sub{
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* ダウンロード（登録）ボタンエリア */
.download_button{
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.regist-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(240,138,0,.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.regist-btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.6s;
}

.regist-btn:hover::before{
  left: 100%;
}

.regist-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240,138,0,.4);
  background: linear-gradient(135deg, #ff9800 0%, #f08a00 100%);
}

.regist-btn:active{
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(240,138,0,.3);
}

.regist-btn__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.regist-btn__icon svg{
  width: 20px;
  height: 20px;
}

.regist-btn__text{
  flex: 1;
}

.regist-btn__arrow{
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s;
}

.regist-btn:hover .regist-btn__arrow{
  transform: translateX(4px);
}

/* 登録機能リスト */
.regist-features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f5f5f5;
}

.regist-feature{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #fffaf5 100%);
  border-radius: 12px;
  border: 1px solid rgba(240,138,0,.15);
}

.regist-feature__icon{
  width: 28px;
  height: 28px;
  background: #f08a00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(240,138,0,.3);
}

.regist-feature__text{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
}

/* 退会確認ページ用スタイル */
.text_m--warning{
  border: 3px solid #ff6d00;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.warning-icon{
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ff6d00;
  box-shadow: 0 6px 20px rgba(255,109,0,.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255,109,0,.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255,109,0,.35);
  }
}

.warning-icon svg{
  color: #ff6d00;
}

.text_mpp--question{
  font-size: 18px;
  font-weight: 900;
  color: #2f3b52;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.retire-notice{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}

.retire-notice .text_mpp{
  margin: 0;
  line-height: 1.8;
}

/* 退会アクションボタン */
.retire-actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}

.taikai_no,
.taikai_yes{
  display: block;
}

.taikai_no a,
.taikai_yes a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

/* 退会しないボタン（推奨アクション） */
.taikai_no a{
  background: linear-gradient(135deg, #4dc056 0%, #3da249 100%);
  color: #fff;
  border: 3px solid #4dc056;
  box-shadow: 0 6px 20px rgba(77,192,86,.3);
}

.taikai_no a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.6s;
}

.taikai_no a:hover::before{
  left: 100%;
}

.taikai_no a:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(77,192,86,.4);
}

.taikai_no a:active{
  transform: translateY(-1px);
}

/* 退会するボタン（注意が必要なアクション） */
.taikai_yes a{
  background: #fff;
  color: #666;
  border: 2px solid #e7e7e7;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.taikai_yes a:hover{
  background: #fff3e0;
  border-color: #ff6d00;
  color: #ff6d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,109,0,.2);
}

.taikai_yes a:active{
  transform: translateY(0);
}

.retire-btn-icon{
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s;
}

.taikai_no a:hover .retire-btn-icon{
  transform: translateX(-4px);
}

.taikai_yes a:hover .retire-btn-icon{
  transform: translateX(4px);
}

.retire-btn-text{
  flex: 1;
}

/* フォームページ用スタイル */
.form-content{
  padding: 20px 0;
}

.regist-form{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* フォームグループ */
.form-group{
  margin-bottom: 24px;
}

.form-label{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.form-label::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #f08a00;
  border-radius: 2px;
}

.form-label--error{
  color: #ff3d00;
}

.form-label--error::before{
  background: #ff3d00;
}

.form-label--error::after{
  content: " *";
  color: #ff3d00;
  font-weight: 900;
}

/* 入力フィールド（edit()関数が生成する要素用） */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select{
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  transition: all 0.3s;
  font-family: inherit;
  line-height: 1.6;
  box-sizing: border-box;
  background: #fafafa;
  color: #1a1a1a;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline: none;
  border-color: #f08a00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: #999;
}

/* エラーフィールド */
.error-field input[type="text"],
.error-field input[type="email"],
.error-field input[type="password"],
.error-field input[type="tel"],
.error-field textarea,
.error-field select{
  border-color: #ff3d00;
  background: #fff9f7;
}

.error-field input[type="text"]:focus,
.error-field input[type="email"]:focus,
.error-field input[type="password"]:focus,
.error-field input[type="tel"]:focus,
.error-field textarea:focus,
.error-field select:focus{
  box-shadow: 0 0 0 3px rgba(255,61,0,.1);
  border-color: #ff3d00;
}

/* textarea専用 */
.form-group textarea{
  min-height: 120px;
  resize: vertical;
}

/* select専用 */
.form-group select{
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* 送信ボタン */
.btn-submit{
  width: 100%;
  padding: 16px 48px;
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(240,138,0,.3);
  letter-spacing: 0.05em;
  margin-top: 10px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-submit::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.6s;
}

.btn-submit:hover::before{
  left: 100%;
}

.btn-submit:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240,138,0,.4);
  background: linear-gradient(135deg, #ff9800 0%, #f08a00 100%);
}

.btn-submit:active{
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(240,138,0,.3);
}

/* 注意書き */
.notice{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-size: 14px;
  color: #1565c0;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(33,150,243,.1);
}

.notice::before{
  content: "&#8505;";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #2196f3;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
  font-weight: 900;
  font-size: 16px;
  vertical-align: middle;
}

/* 特定商取引法ページ用スタイル */
.tokutei-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tokutei-list > li{
  padding: 0;
  margin: 0;
}

.tokutei-list > li::before{
  display: none;
}

.tokutei-item{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px 20px;
  margin-bottom: 16px;
}

.tokutei-item__title{
  font-size: 15px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 12px;
  padding-left: 12px;
  position: relative;
  line-height: 1.5;
}

.tokutei-item__title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #f08a00;
  border-radius: 2px;
}

.tokutei-item__content{
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0;
  padding-left: 12px;
}

.tokutei-item__content br{
  display: block;
  content: "";
  margin-top: 8px;
}

/* リンクボタン */
.tokutei-link{
  margin-top: 30px;
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #f5f5f5;
}

.tokutei-link a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(240,138,0,.25);
  position: relative;
  overflow: hidden;
}

.tokutei-link a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s;
}

.tokutei-link a:hover::before{
  left: 100%;
}

.tokutei-link a::after{
  content: "→";
  font-size: 18px;
  transition: transform 0.3s;
}

.tokutei-link a:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,138,0,.35);
}

.tokutei-link a:hover::after{
  transform: translateX(4px);
}

.tokutei-link a:active{
  transform: translateY(0);
}

/* お問い合わせ完了ページ用スタイル */
.text_m--success{
  border: 3px solid #4dc056;
  background: #fff;
}

.success-icon{
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #4dc056;
  box-shadow: 0 6px 20px rgba(77,192,86,.25);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(77,192,86,.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(77,192,86,.35);
  }
}

.success-icon svg{
  color: #4dc056;
}

.thanks-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.thanks-list > li{
  padding: 0;
  margin: 0;
}

.thanks-list > li::before{
  display: none;
}

.thanks-message{
  font-size: 18px;
  font-weight: 900;
  color: #ff3d00;
  text-align: center;
  margin: 0 0 20px;
  padding: 12px 20px;
  background: linear-gradient(transparent 70%, #ffff66 70%);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.6;
}

.thanks-text{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.thanks-date{
  color: #2196f3;
  font-weight: 900;
}

.check-list{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.check-item{
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.check-item:last-child{
  margin-bottom: 0;
}

.check-item::before{
  content: "&#10003;";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #4dc056;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(77,192,86,.3);
}

.thanks-text--note{
  font-weight: 700;
  color: #2f3b52;
  background: #fff;
  border: 2px solid #f08a00;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  position: relative;
  padding-left: 50px;
}

.thanks-text--note::before{
  content: "!";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #f08a00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(240,138,0,.3);
}

/* お問い合わせページ用スタイル */
.inquiry-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.inquiry-list > li{
  padding: 0;
  margin: 0;
}

.inquiry-list > li::before{
  display: none;
}

.inquiry-intro{
  text-align: center;
  margin-bottom: 24px;
}

.inquiry-intro__text{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  margin: 0;
  line-height: 1.6;
}

/* セレクトボックス */
.inquiry-select{
  margin: 0 auto 30px;
  max-width: 90%;
}

.inquiry-select__input{
  width: 100%;
  padding: 14px 40px 14px 16px;
  font-size: 15px;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  background: #fafafa;
  color: #1a1a1a;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  font-weight: 600;
}

.inquiry-select__input:focus{
  outline: none;
  border-color: #f08a00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

/* iframe */
.inquiry-iframe{
  display: none;
  border: none;
  margin-top: 20px;
}

/* 電話フレーム */
.tell-frame{
  display: none;
  margin-top: 30px;
}

.tell-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tell-contact__title{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border: 2px solid #f08a00;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #2f3b52;
}

.info_tell{
  display: inline-block;
  color: #ff3d00;
  font-weight: 900;
  background: linear-gradient(transparent 70%, #ffff66 70%);
  padding: 0 4px;
}

.tell-contact__checks{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tell-checkbox{
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  background: #fafafa;
  border: 2px solid #e7e7e7;
  border-radius: 10px;
  transition: all 0.3s;
}

.tell-checkbox:hover{
  background: #fff;
  border-color: #f08a00;
}

.tell-checkbox input[type="checkbox"]{
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: #f08a00;
  flex-shrink: 0;
}

.tell-checkbox__text{
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.5;
}

.tell-checkbox:has(input:checked){
  background: #fff9f0;
  border-color: #f08a00;
}

/* 電話ボタン */
.tell-contact__button{
  display: none;
}

.tell-button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4dc056 0%, #3da249 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(77,192,86,.3);
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.tell-button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.6s;
}

.tell-button:hover::before{
  left: 100%;
}

.tell-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(77,192,86,.4);
}

.tell-button:active{
  transform: translateY(-1px);
}

.tell-button__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.tell-button__icon svg{
  width: 24px;
  height: 24px;
}

/* 非会員向けお問い合わせページ用スタイル */
.btn-left{
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.btn-left a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(240,138,0,.2);
}

.btn-left a::before{
  content: "←";
  font-size: 16px;
  font-weight: 700;
}

.btn-left a:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240,138,0,.3);
}

.btn-left a:active{
  transform: translateY(0);
}

.page-title{
  font-size: 22px;
  font-weight: 1000;
  color: #2f3b52;
  text-align: center;
  margin: 30px 0 20px;
  padding: 0 20px;
  position: relative;
}

.page-title::after{
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f08a00;
  border-radius: 2px;
  margin: 12px auto 0;
}

.inquiry-form-wrapper{
  list-style: none;
  padding: 0 16px 30px;
  margin: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.inquiry-form-item{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.inquiry-form-iframe{
  border: none;
  width: 100%;
}

/* QRコードページ用スタイル */
.text_m--qr{
  text-align: center;
}

.qr-wrapper{
  list-style: none;
  padding: 0;
  margin: 0;
}

.qr-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
}

.qr-site-name{
  font-size: 18px;
  font-weight: 900;
  color: #2f3b52;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 12px;
}

.qr-site-name::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #f08a00;
  border-radius: 2px;
}

.qr-code{
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 3px solid #f08a00;
  box-shadow: 0 8px 24px rgba(240,138,0,.2);
  display: inline-block;
  position: relative;
}

.qr-code::before,
.qr-code::after{
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #f08a00;
}

.qr-code::before{
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
}

.qr-code::after{
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
}

.qr-code img{
  display: block;
  width: 200px;
  height: 200px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.qr-url{
  font-size: 13px;
  color: #666;
  background: #fafafa;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  word-break: break-all;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
  max-width: 100%;
  box-sizing: border-box;
}

/* Q&Aページ用スタイル */
.qa-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-item{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.qa-question{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 2px solid #e7e7e7;
}

.qa-icon{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #ff3d00;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(255,61,0,.3);
}

.qa-question__text{
  flex: 1;
  font-size: 16px;
  font-weight: 900;
  color: #2f3b52;
  line-height: 1.6;
  padding-top: 4px;
}

.qa-answer{
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.qa-answer-icon{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f08a00;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(240,138,0,.3);
}

.qa-answer__content{
  flex: 1;
}

.qa-answer__content p{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.qa-answer__content p:last-child{
  margin-bottom: 0;
}

.qa-link{
  margin-top: 20px;
  text-align: center;
}

.qa-link a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,102,0,.3);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.qa-link a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s;
}

.qa-link a:hover::before{
  left: 100%;
}

.qa-link a:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,102,0,.4);
}

.qa-link a:active{
  transform: translateY(0);
}

/* プライバシーポリシーページ用スタイル */
.privacy-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-content{
  padding: 0;
  margin: 0;
}

.privacy-content::before{
  display: none;
}

.privacy-intro{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #1565c0;
  box-shadow: 0 2px 8px rgba(33,150,243,.1);
}

.privacy-section{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.privacy-section__title{
  background: linear-gradient(135deg, #2f3b52 0%, #3a4a62 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 18px;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.privacy-section__content{
  padding: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #1a1a1a;
}

.privacy-section__content br{
  display: block;
  content: "";
  margin-top: 8px;
}

.privacy-date{
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  margin: 30px 0 20px;
  padding: 12px 20px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
}

.privacy-divider{
  border: none;
  border-top: 2px solid #e7e7e7;
  margin: 20px 0 0;
}

/* メンテナンスページ用スタイル */
.text_m--maintenance{
  text-align: center;
  border: 3px solid #ff9800;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.maintenance-icon{
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ff9800;
  box-shadow: 0 6px 20px rgba(255,152,0,.25);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.maintenance-icon svg{
  color: #ff9800;
}

.maintenance-message{
  font-size: 17px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 20px;
  line-height: 1.6;
}

.maintenance-detail{
  font-size: 15px;
  color: #1a1a1a;
  margin: 0 0 30px;
  line-height: 1.8;
}

.maintenance-spinner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid #f5f5f5;
  margin-top: 20px;
}

.spinner{
  width: 40px;
  height: 40px;
  border: 4px solid #ffe0b2;
  border-top-color: #ff9800;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.maintenance-spinner__text{
  font-size: 13px;
  color: #ff9800;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
}

/* 利用規約ページ用スタイル */
.kiyaku-intro{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-left: 4px solid #f08a00;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  box-shadow: 0 2px 8px rgba(240,138,0,.1);
  text-align: center;
}

.kiyaku-section{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.kiyaku-section__title{
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 14px 18px;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.kiyaku-section__content{
  padding: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #1a1a1a;
}

.kiyaku-section__content br{
  display: block;
  content: "";
  margin-top: 6px;
}

.kiyaku-article{
  background: #fafafa;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}

.kiyaku-article:last-child{
  margin-bottom: 0;
}

.kiyaku-article__title{
  font-size: 14px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 12px;
  padding-left: 8px;
  border-left: 3px solid #f08a00;
  line-height: 1.5;
}

.kiyaku-article__content{
  font-size: 14px;
  line-height: 1.9;
  color: #1a1a1a;
  margin: 0;
}

.kiyaku-article__content br{
  display: block;
  content: "";
  margin-top: 6px;
}

.kiyaku-company{
  background: linear-gradient(135deg, #2f3b52 0%, #3a4a62 100%);
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(47,59,82,.2);
}

.kiyaku-company__title{
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.2);
  line-height: 1.5;
}

.kiyaku-company__content{
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.9);
}

.kiyaku-company__content br{
  display: block;
  content: "";
  margin-top: 6px;
}

/* 対応機種ページ用スタイル */
.device-support{
  text-align: center;
}

.device-support__header{
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}

.device-support__header svg{
  color: #f08a00;
}

.device-support__content{
  margin-bottom: 30px;
}

.device-support__main{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0 0 16px;
}

.device-support__sub{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.device-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.device-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 3px solid #e7e7e7;
  transition: all 0.3s;
}

.device-item--ios{
  border-color: #007aff;
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

.device-item--android{
  border-color: #3ddc84;
  background: linear-gradient(135deg, #fff 0%, #f0fff7 100%);
}

.device-item__icon{
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-item--ios .device-item__icon{
  background: #007aff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,122,255,.3);
}

.device-item--android .device-item__icon{
  background: #3ddc84;
  color: #fff;
  box-shadow: 0 4px 12px rgba(61,220,132,.3);
}

.device-item__info{
  flex: 1;
  text-align: left;
}

.device-item__title{
  font-size: 18px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 6px;
  line-height: 1.4;
}

.device-item__desc{
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.test-info{
  margin-top: 30px;
  padding: 16px 20px;
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 12px;
  font-size: 13px;
  color: #856404;
  line-height: 1.8;
  text-align: left;
}

/* ご利用ガイドページ用スタイル */
.guide-section{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.guide-section--important{
  border-color: #ff3d00;
  background: linear-gradient(135deg, #fff 0%, #fff9f7 100%);
}

.guide-section__title{
  font-size: 15px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid #f08a00;
  line-height: 1.6;
}

.guide-section--important .guide-section__title{
  border-left-color: #ff3d00;
  color: #ff3d00;
}

.guide-section__content{
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
}

.guide-section__content p{
  margin: 0 0 16px;
}

.guide-section__content p:last-child{
  margin-bottom: 0;
}

.price-card{
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(240,138,0,.3);
  margin-top: 16px;
}

.price-card__label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.price-card__price{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-card__amount{
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.price-card__unit{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.price-card__tax{
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-left: 4px;
}

.guide-notices{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.guide-notice{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(33,150,243,.1);
}

.guide-notice__icon{
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #2196f3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(33,150,243,.3);
}

.guide-notice__text{
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #1565c0;
  font-weight: 600;
}

.guide-important-text{
  font-size: 15px;
  font-weight: 700;
  color: #ff3d00;
  line-height: 1.8;
  padding: 16px;
  background: #fff;
  border: 2px dashed #ff3d00;
  border-radius: 10px;
  margin: 0;
}

/* クローン版お問い合わせページ用スタイル */
.inquiry-intro__title{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.inquiry-select--clone{
  margin: 20px auto 30px;
}

.inquiry-select__input--multi{
  height: auto;
  min-height: 100px;
  padding: 12px;
  cursor: pointer;
}

.inquiry-select__input--multi option{
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  cursor: pointer;
}

.inquiry-select__input--multi option:last-child{
  margin-bottom: 0;
}

.inquiry-select__input--multi option:hover,
.inquiry-select__input--multi option:focus{
  background: #fff9f0;
  color: #f08a00;
}

/* 退会完了ページ用スタイル */
.text_m--retire{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.retire-complete{
  text-align: center;
  margin-bottom: 30px;
}

.retire-complete__icon{
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #4dc056;
  box-shadow: 0 6px 20px rgba(77,192,86,.25);
}

.retire-complete__icon svg{
  color: #4dc056;
}

.retire-complete__message{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.retire-top-link{
  text-align: center;
  margin: 30px 0;
}

.retire-top-link a{
  display: inline-block;
  padding: 14px 40px;
  background: #ff3d00;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,61,0,.3);
}

.retire-top-link a:hover{
  background: #ff6d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,61,0,.4);
}

.retire-notices{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.retire-notice{
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid;
  line-height: 1.8;
}

.retire-notice h4{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 8px;
}

.retire-notice p{
  font-size: 14px;
  margin: 0;
}

.retire-notice--warning{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-left-color: #ff9800;
  color: #856404;
}

.retire-notice--info{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left-color: #2196f3;
  color: #1565c0;
}

.retire-faq{
  margin: 40px 0;
}

.retire-faq__title{
  font-size: 18px;
  font-weight: 900;
  color: #2f3b52;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #f08a00;
}

.retire-faq__item{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.retire-faq__item[open]{
  border-color: #f08a00;
}

.retire-faq__question{
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 18px;
  color: #2f3b52;
  transition: background 0.3s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.retire-faq__question::-webkit-details-marker{
  display: none;
}

.retire-faq__question::after{
  content: "＋";
  font-size: 20px;
  font-weight: 900;
  color: #f08a00;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.retire-faq__item[open] .retire-faq__question::after{
  content: "−";
}

.retire-faq__question:hover{
  background: #fafafa;
}

.retire-faq__answer{
  padding: 0 18px 18px 18px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.8;
  animation: fadeIn 0.3s ease-in;
}

.retire-faq__answer p{
  margin: 0;
}

.retire-action{
  text-align: center;
  margin: 40px 0 20px;
  padding-top: 30px;
  border-top: 2px solid #f5f5f5;
}

.retire-action__button{
  display: inline-block;
  padding: 10px 24px;
  background: #f5f5f5;
  color: #999;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

.retire-action__button:hover{
  background: #ebebeb;
  color: #777;
  border-color: #d0d0d0;
}

/* アンケート完了ページ用スタイル */
.text_m--survey{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.survey-complete{
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-radius: 16px;
  border: 2px solid #ffe0b2;
}

.survey-complete__icon{
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #4dc056;
  box-shadow: 0 6px 20px rgba(77,192,86,.25);
}

.survey-complete__icon svg{
  color: #4dc056;
}

.survey-complete__message{
  font-size: 17px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.survey-message{
  margin: 30px 0;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
}

.survey-message p{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.survey-message p:last-child{
  margin-bottom: 0;
}

.survey-message__next{
  padding: 12px 16px;
  background: #fff9f0;
  border-left: 4px solid #f08a00;
  border-radius: 6px;
}

.survey-message__next strong{
  color: #f08a00;
  font-weight: 900;
}

.survey-message__thanks{
  text-align: center;
  font-weight: 700;
  color: #2f3b52;
}

.survey-actions{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.survey-action{
  text-align: center;
}

.survey-action__button{
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  width: 100%;
  max-width: 400px;
}

.survey-action__button--top{
  background: linear-gradient(135deg, #ff3d00 0%, #ff6d00 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,61,0,.3);
}

.survey-action__button--top:hover{
  background: linear-gradient(135deg, #ff6d00 0%, #ff9100 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,61,0,.4);
}

.survey-action__button--cancel{
  background: #f5f5f5;
  color: #999;
  border: 1px solid #e0e0e0;
  font-weight: 400;
}

.survey-action__button--cancel:hover{
  background: #ebebeb;
  color: #777;
  border-color: #d0d0d0;
}

.survey-divider{
  margin: 40px 0;
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.survey-recommendations{
  margin: 40px 0 20px;
}

.survey-recommendations__title{
  font-size: 20px;
  font-weight: 900;
  color: #2f3b52;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #f08a00;
  position: relative;
}

.survey-recommendations__title::after{
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff3d00;
}

.survey-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.survey-item{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f5f5f5;
  transition: all 0.3s;
}

.survey-item:hover{
  border-color: #f08a00;
  box-shadow: 0 4px 16px rgba(240,138,0,.15);
}

.survey-item__link{
  display: flex;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  gap: 16px;
}

.survey-item__icon{
  flex-shrink: 0;
  width: 70px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 8px;
}

.survey-item__icon img{
  max-width: 100%;
  height: auto;
}

.survey-item__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.survey-item__title{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.4;
}

.survey-item__artist{
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.survey-item__tieup{
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

/* 確認画面ページ用スタイル */
.text_m--confirm{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.confirm-warning{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  position: relative;
}

.confirm-warning__icon{
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #ff9800;
  box-shadow: 0 4px 16px rgba(255,152,0,.3);
}

.confirm-warning__icon svg{
  color: #ff9800;
}

.confirm-warning__title{
  font-size: 18px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 12px;
  text-align: center;
}

.confirm-warning__text{
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
}

.confirm-notice{
  background: #fff9f0;
  border-left: 4px solid #f08a00;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.confirm-notice__text{
  font-size: 13px;
  line-height: 1.7;
  color: #856404;
  margin: 0;
}

.confirm-info{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.confirm-info__item{
  padding: 16px 20px;
  border-bottom: 1px dotted #8b0000;
}

.confirm-info__item:last-child{
  border-bottom: none;
}

.confirm-info__label{
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 8px;
}

.confirm-info__value{
  font-size: 15px;
  color: #1a1a1a;
  padding-left: 8px;
}

.confirm-actions{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 20px;
}

.confirm-action{
  text-align: center;
}

.confirm-action__button{
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  width: 100%;
  max-width: 400px;
}

.confirm-action__button--cancel{
  background: #ff0000;
  color: #000;
  box-shadow: 0 6px 20px rgba(255,0,0,.3);
  border: 2px solid #cc0000;
}

.confirm-action__button--cancel:hover{
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,0,0,.4);
}

.confirm-action__button--submit{
  background: #f5f5f5;
  color: #999;
  border: 1px solid #e0e0e0;
  font-weight: 400;
}

.confirm-action__button--submit:hover{
  background: #ebebeb;
  color: #777;
  border-color: #d0d0d0;
}

/* アンケートページ用スタイル */
.text_m--questionnaire{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.questionnaire-intro{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.questionnaire-intro p{
  font-size: 15px;
  line-height: 1.8;
  color: #1565c0;
  margin: 0;
}

/* questionnaire-form クラスは削除されました */

.questionnaire-question{
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: border-color 0.3s;
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.questionnaire-question:hover{
  border-color: #f08a00;
}

.questionnaire-question__number{
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(240,138,0,.25);
}

.questionnaire-question__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.questionnaire-question__label{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  display: block;
}

.questionnaire-select{
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #5a5c63;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
}

.questionnaire-select:focus{
  outline: none;
  border-color: #f08a00;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

.questionnaire-checkboxes{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.questionnaire-checkbox{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.questionnaire-checkbox:hover{
  background: #fafafa;
}

.questionnaire-checkbox input[type="checkbox"]{
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f08a00;
}

.questionnaire-checkbox span{
  font-size: 15px;
  color: #1a1a1a;
}

.questionnaire-email{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.questionnaire-email__input{
  flex: 1;
  min-width: 100px;
  max-width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #5a5c63;
  transition: all 0.3s;
  box-sizing: border-box;
}

.questionnaire-email__input:focus{
  outline: none;
  border-color: #f08a00;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

.questionnaire-email__at{
  font-size: 18px;
  font-weight: 700;
  color: #666;
}

.questionnaire-email__domain{
  flex: 1;
  min-width: 100px;
  max-width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #5a5c63;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
}

.questionnaire-email__domain:focus{
  outline: none;
  border-color: #f08a00;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

.questionnaire-comment{
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.questionnaire-comment__label{
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 12px;
  line-height: 1.6;
}

.questionnaire-comment__input{
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #5a5c63;
  transition: all 0.3s;
  box-sizing: border-box;
}

.questionnaire-comment__input:focus{
  outline: none;
  border-color: #f08a00;
  box-shadow: 0 0 0 3px rgba(240,138,0,.1);
}

.questionnaire-notice{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-left: 4px solid #f08a00;
  border-radius: 12px;
  padding: 20px 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.questionnaire-notice p{
  font-size: 14px;
  line-height: 1.8;
  color: #856404;
  margin: 0 0 12px;
}

.questionnaire-notice p:last-child{
  margin-bottom: 0;
}

.questionnaire-actions{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 20px;
  width: 100%;
  max-width: 100%;
}

.questionnaire-action{
  text-align: center;
}

.questionnaire-action__button{
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.questionnaire-action__button--submit{
  background: linear-gradient(135deg, #ff0102 0%, #ff3333 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,1,2,.3);
}

.questionnaire-action__button--submit:hover{
  background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,1,2,.4);
}

.questionnaire-action__button--cancel{
  background: #ff0000;
  color: #000;
  box-shadow: 0 6px 20px rgba(255,0,0,.3);
  border: 2px solid #cc0000;
}

.questionnaire-action__button--cancel:hover{
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,0,0,.4);
}

/* 退会コース選択ページ用スタイル */
.text_m--retire-select{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.retire-select-warning{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.retire-select-warning__icon{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #ff9800;
  box-shadow: 0 4px 16px rgba(255,152,0,.3);
}

.retire-select-warning__icon svg{
  color: #ff9800;
}

.retire-select-warning__content{
  flex: 1;
}

.retire-select-warning__content p{
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0;
}

.retire-select-info{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.retire-select-info__icon{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #2196f3;
  box-shadow: 0 4px 12px rgba(33,150,243,.2);
}

.retire-select-info__icon svg{
  color: #2196f3;
}

.retire-select-info__content{
  flex: 1;
}

.retire-select-info__content p{
  font-size: 14px;
  line-height: 1.8;
  color: #1565c0;
  margin: 0 0 12px;
}

.retire-select-info__content p:last-child{
  margin-bottom: 0;
}

.retire-select-info__emphasis{
  font-weight: 700;
  color: #ff6d00 !important;
  padding: 8px 12px;
  background: rgba(255,109,0,.1);
  border-radius: 6px;
  margin-top: 12px !important;
}

.retire-select-courses{
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #8b0000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(139,0,0,.2);
}

.retire-select-course{
  background: #fff;
}

.retire-select-course__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 12px;
}

.retire-select-course__link:hover{
  background: #fff9f0;
}

.retire-select-course__label{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.retire-select-course__arrow{
  flex-shrink: 0;
  color: #f08a00;
  transition: transform 0.3s;
}

.retire-select-course__link:hover .retire-select-course__arrow{
  transform: translateX(4px);
}

/* リストページ用スタイル */
.text_m--list{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.list-message{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #1565c0;
}

.list-empty{
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #f5f5f5;
}

.list-empty__icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 50%;
  border: 3px solid #ef5350;
}

.list-empty__icon svg{
  color: #ef5350;
}

.list-empty__text{
  font-size: 16px;
  font-weight: 700;
  color: #666;
  margin: 0;
}

.list-items{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.list-item{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f5f5f5;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.list-item:hover{
  border-color: #f08a00;
  box-shadow: 0 6px 20px rgba(240,138,0,.15);
  transform: translateY(-2px);
}

.list-item__link{
  display: flex;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  gap: 16px;
}

.list-item__thumbnail{
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
}

.list-item__thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item__content{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.list-item__title{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.list-item__arrow{
  flex-shrink: 0;
  color: #f08a00;
  transition: transform 0.3s;
}

.list-item__link:hover .list-item__arrow{
  transform: translateX(4px);
}

/* マイページ用スタイル */
.text_m--mypage{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.mypage-section{
  margin-bottom: 30px;
}

.mypage-section__title{
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #2f3b52 0%, #3d4a5f 100%);
  padding: 12px 20px;
  border-radius: 8px;
  margin: 0 0 16px;
  box-shadow: 0 4px 12px rgba(47,59,82,.2);
}

.mypage-customer{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e0e8ff;
}

.mypage-customer__header{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.mypage-customer__header::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0099ff, #00d4ff);
  border-radius: 3px;
}

.mypage-empty{
  text-align: center;
  padding: 40px 20px;
  background: #f9fafc;
  border-radius: 8px;
  border: 1px dashed #ddd;
}

.mypage-empty__icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 50%;
  border: 2px solid #ef5350;
}

.mypage-empty__icon svg{
  color: #ef5350;
}

.mypage-empty__text{
  font-size: 16px;
  color: #666;
  margin: 0;
}

.mypage-card{
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid #e0e8ff;
  position: relative;
  overflow: hidden;
}

.mypage-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #0099ff, #00d4ff);
}

.mypage-card:last-child{
  margin-bottom: 0;
}

.mypage-card__content{
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.mypage-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.mypage-field:last-child{
  margin-bottom: 0;
}

.mypage-field__label{
  font-size: 12px;
  color: #667799;
  font-weight: 600;
}

.mypage-field__value{
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  padding-left: 12px;
}

.mypage-status{
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
}

.mypage-status--active{
  color: #00b369;
  background: rgba(0,179,105,.1);
}

.mypage-status--active::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b369;
}

.mypage-status--inactive{
  color: #e63946;
  background: rgba(230,57,70,.1);
}

.mypage-status--inactive::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e63946;
}

.mypage-key{
  font-family: monospace;
  letter-spacing: 1px;
  background: #f5f7fa;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  word-break: break-all;
  display: block;
  width: 100%;
  border: 1px dashed #c8d5e9;
  box-sizing: border-box;
}

.mypage-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8eef8, transparent);
  margin: 12px 0;
}

.mypage-register{
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-radius: 8px;
  border: 1px dashed #f08a00;
  text-align: center;
}

.mypage-register__note{
  color: #856404;
  font-size: 12px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.mypage-register__button{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220,53,69,.3);
  transition: all 0.3s;
}

.mypage-register__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,53,69,.4);
}

.mypage-login{
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-radius: 8px;
  border: 1px dashed #2196f3;
  text-align: center;
}

.mypage-login__note{
  color: #1565c0;
  font-size: 12px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.mypage-login__button{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220,53,69,.3);
  transition: all 0.3s;
}

.mypage-login__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,53,69,.4);
}

.mypage-account{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e0e8ff;
  text-align: center;
}

.mypage-account__item{
  margin-bottom: 12px;
  line-height: 1.8;
}

.mypage-account__item:last-child{
  margin-bottom: 0;
}

.mypage-account__label{
  font-size: 14px;
  color: #667799;
  font-weight: 600;
}

.mypage-account__value{
  font-size: 15px;
  color: #333;
  font-weight: 700;
}

.mypage-logout{
  display: block;
  text-align: center;
  padding: 14px 40px;
  background: #6c757d;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(108,117,125,.3);
}

.mypage-logout:hover{
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108,117,125,.4);
}

/* 詳細ページ用スタイル */
.text_m--detail{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.detail-message{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #1565c0;
}

.detail-content{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.detail-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.detail-table:last-child{
  margin-bottom: 0;
}

.detail-row{
  border-bottom: 1px solid #f5f5f5;
}

.detail-row:last-child{
  border-bottom: none;
}

.detail-header{
  font-size: 13px;
  font-weight: 700;
  color: #667799;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  width: 35%;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.detail-data{
  font-size: 15px;
  color: #333;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  word-break: break-word;
}

.detail-subtitle{
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 20px 0 12px;
  box-shadow: 0 4px 12px rgba(240,138,0,.25);
}

.detail-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-action__button{
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.detail-action__button--edit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(33,150,243,.3);
}

.detail-action__button--edit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33,150,243,.4);
}

.detail-action__button--destroy{
  background: #6c757d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,117,125,.3);
}

.detail-action__button--destroy:hover{
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108,117,125,.4);
}

.detail-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 12px;
}

.detail-link:hover{
  border-color: #f08a00;
  box-shadow: 0 4px 16px rgba(240,138,0,.15);
  transform: translateY(-2px);
}

.detail-link__text{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.detail-link__arrow{
  flex-shrink: 0;
  color: #f08a00;
  transition: transform 0.3s;
}

.detail-link:hover .detail-link__arrow{
  transform: translateX(4px);
}

/* 登録フォームページ用スタイル */
.text_m--form{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.register-form{
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
}

.register-form__fields{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.register-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-field__label{
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  display: flex;
  align-items: center;
  gap: 6px;
}

.register-field--error .register-field__label{
  color: #dc3545;
}

.register-field__error-mark{
  color: #dc3545;
  font-size: 16px;
  font-weight: 900;
}

.register-field__input{
  position: relative;
}

.register-field__input input[type="text"],
.register-field__input input[type="email"]{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
  background: #fff;
}

.register-field__input input[type="text"]:focus,
.register-field__input input[type="email"]:focus{
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33,150,243,.1);
}

.register-field--error .register-field__input input[type="text"],
.register-field--error .register-field__input input[type="email"]{
  border-color: #dc3545;
  background: #fff5f5;
}

.register-field--error .register-field__input input[type="text"]:focus,
.register-field--error .register-field__input input[type="email"]:focus{
  box-shadow: 0 0 0 3px rgba(220,53,69,.1);
}

.register-form__submit{
  text-align: center;
  margin-top: 30px;
}

.register-submit{
  display: inline-block;
  padding: 16px 60px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
  min-width: 240px;
}

.register-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

.register-submit:active{
  transform: translateY(0);
}

/* プロフィール入力フォーム用スタイル */
.text_m--profile{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.profile-notice{
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border-left: 4px solid #f08a00;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.profile-notice p{
  font-size: 14px;
  font-weight: 700;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}

.profile-form{
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
}

.profile-form__fields{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.profile-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-field__label{
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-field--error .profile-field__label{
  color: #dc3545;
}

.profile-field__error-mark{
  color: #dc3545;
  font-size: 16px;
  font-weight: 900;
}

.profile-field__input{
  position: relative;
}

.profile-field__input input[type="text"],
.profile-field__input input[type="email"],
.profile-field__input input[type="tel"],
.profile-field__input input[type="date"],
.profile-field__input select{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
  background: #fff;
}

.profile-field__input input[type="text"]:focus,
.profile-field__input input[type="email"]:focus,
.profile-field__input input[type="tel"]:focus,
.profile-field__input input[type="date"]:focus,
.profile-field__input select:focus{
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33,150,243,.1);
}

.profile-field--error .profile-field__input input[type="text"],
.profile-field--error .profile-field__input input[type="email"],
.profile-field--error .profile-field__input input[type="tel"],
.profile-field--error .profile-field__input input[type="date"],
.profile-field--error .profile-field__input select{
  border-color: #dc3545;
  background: #fff5f5;
}

.profile-field--error .profile-field__input input[type="text"]:focus,
.profile-field--error .profile-field__input input[type="email"]:focus,
.profile-field--error .profile-field__input input[type="tel"]:focus,
.profile-field--error .profile-field__input input[type="date"]:focus,
.profile-field--error .profile-field__input select:focus{
  box-shadow: 0 0 0 3px rgba(220,53,69,.1);
}

.profile-form__submit{
  text-align: center;
  margin-top: 30px;
}

.profile-submit{
  display: inline-block;
  padding: 16px 60px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
  min-width: 240px;
}

.profile-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

.profile-submit:active{
  transform: translateY(0);
}

/* 編集フォーム用スタイル */
.text_m--edit{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.sabtitle{
  font-size: 13px;
  color: #856404;
  margin: 8px 0 0;
  font-weight: 600;
}

.edit-form{
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
}

.edit-form__fields{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.edit-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edit-field__label{
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.edit-field__required{
  display: inline-block;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.edit-field__input{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
  background: #fff;
}

.edit-field__input:focus{
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33,150,243,.1);
}

.edit-birthday{
  display: flex;
  gap: 8px;
}

.edit-birthday__item{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.edit-form__submit{
  text-align: center;
  margin-top: 30px;
}

.edit-submit{
  display: inline-block;
  padding: 16px 60px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(220,53,69,.3);
  min-width: 240px;
}

.edit-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220,53,69,.4);
}

.edit-submit:active{
  transform: translateY(0);
}

.help-block{
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 18px;
}

/* 更新確認ページ用スタイル */
.text_m--confirm-update{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.confirm-update-message{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #1565c0;
}

.confirm-update-content{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.confirm-update-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.confirm-update-table:last-child{
  margin-bottom: 0;
}

.confirm-update-row{
  border-bottom: 1px solid #f5f5f5;
}

.confirm-update-row:last-child{
  border-bottom: none;
}

.confirm-update-header{
  font-size: 13px;
  font-weight: 700;
  color: #667799;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  width: 35%;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.confirm-update-data{
  font-size: 15px;
  color: #333;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  word-break: break-word;
}

.confirm-update-subtitle{
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 20px 0 12px;
  box-shadow: 0 4px 12px rgba(240,138,0,.25);
}

.confirm-update-form{
  margin-bottom: 24px;
}

.confirm-update-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-update-action__button{
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.confirm-update-action__button--submit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(33,150,243,.3);
}

.confirm-update-action__button--submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33,150,243,.4);
}

.confirm-update-action__button--cancel{
  background: #6c757d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,117,125,.3);
}

.confirm-update-action__button--cancel:hover{
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108,117,125,.4);
}

.confirm-update-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-update-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 12px;
}

.confirm-update-link:hover{
  border-color: #f08a00;
  box-shadow: 0 4px 16px rgba(240,138,0,.15);
  transform: translateY(-2px);
}

.confirm-update-link__text{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.confirm-update-link__arrow{
  flex-shrink: 0;
  color: #f08a00;
  transition: transform 0.3s;
}

.confirm-update-link:hover .confirm-update-link__arrow{
  transform: translateX(4px);
}

/* 作成確認ページ用スタイル */
.text_m--confirm-create{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.confirm-create-message{
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #1565c0;
}

.confirm-create-content{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.confirm-create-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.confirm-create-table:last-child{
  margin-bottom: 0;
}

.confirm-create-row{
  border-bottom: 1px solid #f5f5f5;
}

.confirm-create-row:last-child{
  border-bottom: none;
}

.confirm-create-header{
  font-size: 13px;
  font-weight: 700;
  color: #667799;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  width: 35%;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.confirm-create-data{
  font-size: 15px;
  color: #333;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  word-break: break-word;
}

.confirm-create-subtitle{
  background: linear-gradient(135deg, #f08a00 0%, #ff9800 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 20px 0 12px;
  box-shadow: 0 4px 12px rgba(240,138,0,.25);
}

.confirm-create-form{
  margin-bottom: 24px;
}

.confirm-create-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-create-action__button{
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.confirm-create-action__button--submit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(33,150,243,.3);
}

.confirm-create-action__button--submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33,150,243,.4);
}

.confirm-create-action__button--cancel{
  background: #6c757d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,117,125,.3);
}

.confirm-create-action__button--cancel:hover{
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108,117,125,.4);
}

.confirm-create-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-create-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 12px;
}

.confirm-create-link:hover{
  border-color: #f08a00;
  box-shadow: 0 4px 16px rgba(240,138,0,.15);
  transform: translateY(-2px);
}

.confirm-create-link__text{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.confirm-create-link__arrow{
  flex-shrink: 0;
  color: #f08a00;
  transition: transform 0.3s;
}

.confirm-create-link:hover .confirm-create-link__arrow{
  transform: translateX(4px);
}

/* 完了ページ用スタイル */
.text_m--complete{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.complete-success{
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 16px;
  border: 3px solid #4dc056;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(77,192,86,.2);
}

.complete-success__icon{
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #4dc056;
  box-shadow: 0 8px 24px rgba(77,192,86,.3);
}

.complete-success__icon svg{
  color: #4dc056;
}

.complete-success__message{
  font-size: 18px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.complete-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.complete-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.complete-link:hover{
  border-color: #4dc056;
  box-shadow: 0 6px 20px rgba(77,192,86,.15);
  transform: translateY(-2px);
}

.complete-link__text{
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.complete-link__arrow{
  flex-shrink: 0;
  color: #4dc056;
  transition: transform 0.3s;
}

.complete-link:hover .complete-link__arrow{
  transform: translateX(4px);
}

/* ダウンロードページ用スタイル */
.text_m--download{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.download-content{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
}

.download-debug{
  background: #fff9f0;
  border: 1px dashed #f08a00;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #856404;
  font-family: monospace;
}

.download-preview{
  text-align: center;
}

.download-preview__image{
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.download-preview__image img{
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.download-info{
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-radius: 12px;
  border: 2px solid #2196f3;
}

.download-info__item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-info__label{
  font-size: 15px;
  font-weight: 700;
  color: #1565c0;
}

.download-info__value{
  font-size: 18px;
  font-weight: 900;
  color: #2196f3;
}

.download-action{
  margin-bottom: 24px;
}

.download-button{
  display: inline-block;
  padding: 16px 50px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  min-width: 240px;
}

.download-button--download{
  background: linear-gradient(135deg, #4dc056 0%, #45a049 100%);
  color: #fff;
}

.download-button--download:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77,192,86,.4);
}

.download-button--redownload{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.download-button--redownload:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

.download-error{
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  margin-bottom: 24px;
}

.download-error__icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #ff9800;
  box-shadow: 0 4px 16px rgba(255,152,0,.3);
}

.download-error__icon svg{
  color: #ff9800;
}

.download-error__title{
  font-size: 14px;
  font-weight: 700;
  color: #856404;
  margin: 0 0 8px;
}

.download-error__points{
  font-size: 28px;
  font-weight: 900;
  color: #ff9800;
  margin: 0 0 16px;
}

.download-error__message{
  font-size: 15px;
  color: #856404;
  line-height: 1.8;
  margin: 0 0 20px;
}

.download-error__link{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,152,0,.3);
}

.download-error__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,152,0,.4);
}

.download-notice{
  padding: 16px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 4px solid #4dc056;
  border-radius: 12px;
}

.download-notice__text{
  font-size: 13px;
  color: #2e7d32;
  line-height: 1.7;
  margin: 0;
}

/* レスポンシブ */
@media (min-width: 900px){
  .u-content-space{
    padding: 60px 0 80px;
  }
  
  .title2a{
    margin-bottom: 50px;
  }
  
  .title2a h2{
    font-size: 28px;
  }
  
  .text_m{
    padding: 40px 50px;
  }
  
  .text_mp{
    font-size: 16px;
  }
  
  .text_mp--lead{
    font-size: 17px;
  }
  
  .taikai_riyuu textarea,
  .taikai_riyuu input[type="text"]{
    font-size: 16px;
    padding: 16px 18px;
  }
  
  .btn{
    padding: 18px 60px;
    font-size: 17px;
  }
  
  .taikai_riyuu label{
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .form-content{
    padding: 30px 0;
  }
  
  .regist-form{
    padding: 40px 50px;
  }
  
  .form-label{
    font-size: 15px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"],
  .form-group input[type="tel"],
  .form-group textarea,
  .form-group select{
    font-size: 16px;
    padding: 16px 18px;
  }
  
  .btn-submit{
    padding: 18px 60px;
    font-size: 18px;
  }
  
  .notice{
    font-size: 15px;
    padding: 18px 24px;
  }
  
  .tokutei-item{
    padding: 24px 28px;
    margin-bottom: 18px;
  }
  
  .tokutei-item__title{
    font-size: 16px;
  }
  
  .tokutei-item__content{
    font-size: 15px;
  }
  
  .tokutei-link a{
    padding: 16px 40px;
    font-size: 16px;
  }
  
  .thanks-message{
    font-size: 19px;
    padding: 14px 24px;
  }
  
  .thanks-text{
    font-size: 16px;
  }
  
  .check-list{
    padding: 24px;
  }
  
  .check-item{
    font-size: 15px;
  }
  
  .thanks-text--note{
    font-size: 16px;
    padding: 18px 24px 18px 60px;
  }
  
  .thanks-text--note::before{
    left: 20px;
  }
  
  .inquiry-intro__text{
    font-size: 17px;
  }
  
  .inquiry-select{
    max-width: 500px;
  }
  
  .inquiry-select__input{
    font-size: 16px;
    padding: 16px 40px 16px 18px;
  }
  
  .tell-contact__title{
    font-size: 15px;
    padding: 24px;
  }
  
  .tell-contact__checks{
    padding: 24px;
  }
  
  .tell-checkbox__text{
    font-size: 15px;
  }
  
  .tell-button{
    font-size: 19px;
    padding: 20px 50px;
  }
  
  .btn-left{
    padding: 20px 24px;
  }
  
  .btn-left a{
    font-size: 15px;
    padding: 12px 24px;
  }
  
  .page-title{
    font-size: 26px;
    margin: 40px 0 30px;
  }
  
  .inquiry-form-wrapper{
    padding: 0 24px 40px;
  }
  
  .inquiry-form-item{
    padding: 40px 40px;
  }
  
  .qr-content{
    padding: 40px 30px;
  }
  
  .qr-site-name{
    font-size: 20px;
  }
  
  .qr-code{
    padding: 24px;
  }
  
  .qr-code img{
    width: 240px;
    height: 240px;
  }
  
  .qr-url{
    font-size: 14px;
    padding: 14px 24px;
  }
  
  .qa-list{
    gap: 24px;
  }
  
  .qa-question{
    padding: 20px 24px;
  }
  
  .qa-icon{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .qa-question__text{
    font-size: 17px;
  }
  
  .qa-answer{
    padding: 24px;
  }
  
  .qa-answer-icon{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .qa-answer__content p{
    font-size: 16px;
  }
  
  .qa-link a{
    padding: 16px 40px;
    font-size: 16px;
  }
  
  .privacy-intro{
    font-size: 15px;
    padding: 24px;
  }
  
  .privacy-section{
    margin-bottom: 18px;
  }
  
  .privacy-section__title{
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .privacy-section__content{
    padding: 24px;
    font-size: 15px;
  }
  
  .privacy-date{
    font-size: 15px;
    padding: 14px 24px;
  }
  
  .maintenance-icon{
    width: 96px;
    height: 96px;
  }
  
  .maintenance-icon svg{
    width: 56px;
    height: 56px;
  }
  
  .maintenance-message{
    font-size: 18px;
  }
  
  .maintenance-detail{
    font-size: 16px;
  }
  
  .spinner{
    width: 48px;
    height: 48px;
  }
  
  .maintenance-spinner__text{
    font-size: 14px;
  }
  
  .kiyaku-intro{
    font-size: 16px;
    padding: 18px 24px;
  }
  
  .kiyaku-section{
    margin-bottom: 24px;
  }
  
  .kiyaku-section__title{
    font-size: 17px;
    padding: 16px 20px;
  }
  
  .kiyaku-section__content{
    padding: 24px;
    font-size: 15px;
  }
  
  .kiyaku-article{
    padding: 18px 20px;
    margin-bottom: 16px;
  }
  
  .kiyaku-article__title{
    font-size: 15px;
  }
  
  .kiyaku-article__content{
    font-size: 15px;
  }
  
  .kiyaku-company{
    padding: 24px;
  }
  
  .kiyaku-company__title{
    font-size: 16px;
  }
  
  .kiyaku-company__content{
    font-size: 15px;
  }
  
  .device-support__header svg{
    width: 56px;
    height: 56px;
  }
  
  .device-support__main{
    font-size: 16px;
  }
  
  .device-support__sub{
    font-size: 15px;
  }
  
  .device-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .device-item{
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  
  .device-item__icon{
    width: 72px;
    height: 72px;
  }
  
  .device-item__info{
    text-align: center;
  }
  
  .device-item__title{
    font-size: 19px;
  }
  
  .device-item__desc{
    font-size: 14px;
  }
  
  .test-info{
    font-size: 14px;
    padding: 18px 24px;
  }
  
  .guide-section{
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .guide-section__title{
    font-size: 16px;
  }
  
  .guide-section__content{
    font-size: 15px;
  }
  
  .price-card{
    padding: 30px;
  }
  
  .price-card__label{
    font-size: 15px;
  }
  
  .price-card__amount{
    font-size: 56px;
  }
  
  .price-card__unit{
    font-size: 28px;
  }
  
  .price-card__tax{
    font-size: 14px;
  }
  
  .guide-notices{
    gap: 14px;
  }
  
  .guide-notice{
    padding: 16px 18px;
  }
  
  .guide-notice__text{
    font-size: 15px;
  }
  
  .guide-important-text{
    font-size: 16px;
    padding: 18px 20px;
  }
  
  .inquiry-intro__title{
    font-size: 17px;
  }
  
  .inquiry-select__input--multi{
    min-height: 110px;
    padding: 14px;
  }
  
  .inquiry-select__input--multi option{
    padding: 14px;
  }
  
  .retire-complete__icon{
    width: 96px;
    height: 96px;
  }
  
  .retire-complete__icon svg{
    width: 56px;
    height: 56px;
  }
  
  .retire-complete__message{
    font-size: 17px;
  }
  
  .retire-top-link a{
    padding: 16px 50px;
    font-size: 17px;
  }
  
  .retire-notice{
    padding: 18px 24px;
  }
  
  .retire-notice h4{
    font-size: 15px;
  }
  
  .retire-notice p{
    font-size: 15px;
  }
  
  .retire-faq__title{
    font-size: 20px;
  }
  
  .retire-faq__question{
    font-size: 15px;
    padding: 16px 20px;
  }
  
  .retire-faq__answer{
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
  
  .retire-action__button{
    padding: 11px 28px;
    font-size: 14px;
  }
  
  .survey-complete{
    padding: 40px 30px;
  }
  
  .survey-complete__icon{
    width: 96px;
    height: 96px;
  }
  
  .survey-complete__icon svg{
    width: 56px;
    height: 56px;
  }
  
  .survey-complete__message{
    font-size: 18px;
  }
  
  .survey-message{
    padding: 28px 32px;
  }
  
  .survey-message p{
    font-size: 16px;
  }
  
  .survey-message__next{
    padding: 14px 20px;
  }
  
  .survey-actions{
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .survey-action__button{
    width: auto;
    min-width: 240px;
  }
  
  .survey-action__button--top{
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .survey-action__button--cancel{
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .survey-recommendations__title{
    font-size: 22px;
  }
  
  .survey-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .survey-item__link{
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .survey-item__icon{
    width: 80px;
    height: 90px;
  }
  
  .survey-item__title{
    font-size: 16px;
  }
  
  .survey-item__artist{
    font-size: 14px;
  }
  
  .survey-item__tieup{
    font-size: 13px;
  }
  
  .confirm-warning{
    padding: 30px 32px;
  }
  
  .confirm-warning__icon{
    width: 72px;
    height: 72px;
  }
  
  .confirm-warning__icon svg{
    width: 44px;
    height: 44px;
  }
  
  .confirm-warning__title{
    font-size: 20px;
  }
  
  .confirm-warning__text{
    font-size: 16px;
  }
  
  .confirm-notice{
    padding: 18px 24px;
  }
  
  .confirm-notice__text{
    font-size: 14px;
  }
  
  .confirm-info__item{
    padding: 18px 24px;
  }
  
  .confirm-info__label{
    font-size: 15px;
  }
  
  .confirm-info__value{
    font-size: 16px;
  }
  
  .confirm-actions{
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .confirm-action__button{
    width: auto;
    min-width: 240px;
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .questionnaire-intro{
    padding: 24px 32px;
  }
  
  .questionnaire-intro p{
    font-size: 16px;
  }
  
  /* questionnaire-formクラスは削除されました */
  
  .questionnaire-question{
    padding: 24px;
    gap: 20px;
    margin-bottom: 28px;
  }
  
  .questionnaire-question__number{
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .questionnaire-question__label{
    font-size: 17px;
  }
  
  .questionnaire-select{
    padding: 14px 18px;
    font-size: 16px;
  }
  
  .questionnaire-checkbox{
    padding: 12px;
  }
  
  .questionnaire-checkbox input[type="checkbox"]{
    width: 22px;
    height: 22px;
  }
  
  .questionnaire-checkbox span{
    font-size: 16px;
  }
  
  .questionnaire-email{
    flex-wrap: nowrap;
  }
  
  .questionnaire-email__input{
    padding: 14px 18px;
    font-size: 16px;
    min-width: 150px;
  }
  
  .questionnaire-email__domain{
    padding: 14px 18px;
    font-size: 16px;
    min-width: 150px;
  }
  
  .questionnaire-comment{
    padding: 24px;
  }
  
  .questionnaire-comment__label{
    font-size: 16px;
  }
  
  .questionnaire-comment__input{
    padding: 14px 18px;
    font-size: 16px;
  }
  
  .questionnaire-notice{
    padding: 24px 32px;
  }
  
  .questionnaire-notice p{
    font-size: 15px;
  }
  
  .questionnaire-actions{
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .questionnaire-action__button{
    width: auto;
    min-width: 240px;
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .retire-select-warning{
    padding: 28px 24px;
    gap: 20px;
  }
  
  .retire-select-warning__icon{
    width: 64px;
    height: 64px;
  }
  
  .retire-select-warning__icon svg{
    width: 44px;
    height: 44px;
  }
  
  .retire-select-warning__content p{
    font-size: 15px;
  }
  
  .retire-select-info{
    padding: 24px;
    gap: 20px;
  }
  
  .retire-select-info__icon{
    width: 56px;
    height: 56px;
  }
  
  .retire-select-info__icon svg{
    width: 36px;
    height: 36px;
  }
  
  .retire-select-info__content p{
    font-size: 15px;
  }
  
  .retire-select-info__emphasis{
    font-size: 15px;
  }
  
  .retire-select-course__link{
    padding: 20px 24px;
  }
  
  .retire-select-course__label{
    font-size: 16px;
  }
  
  .retire-select-course__arrow{
    width: 24px;
    height: 24px;
  }
  
  .list-message{
    padding: 18px 24px;
    font-size: 15px;
  }
  
  .list-empty{
    padding: 80px 40px;
  }
  
  .list-empty__icon{
    width: 96px;
    height: 96px;
  }
  
  .list-empty__icon svg{
    width: 68px;
    height: 68px;
  }
  
  .list-empty__text{
    font-size: 17px;
  }
  
  .list-items{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .list-item__link{
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .list-item__thumbnail{
    width: 120px;
    height: 120px;
  }
  
  .list-item__content{
    flex-direction: column;
    align-items: center;
  }
  
  .list-item__title{
    font-size: 16px;
    text-align: center;
  }
  
  .list-item__arrow{
    width: 24px;
    height: 24px;
    margin-top: 8px;
  }
  
  .mypage-section__title{
    font-size: 17px;
    padding: 14px 24px;
  }
  
  .mypage-customer{
    padding: 24px;
  }
  
  .mypage-customer__header{
    font-size: 20px;
  }
  
  .mypage-empty{
    padding: 60px 40px;
  }
  
  .mypage-empty__icon{
    width: 80px;
    height: 80px;
  }
  
  .mypage-empty__icon svg{
    width: 56px;
    height: 56px;
  }
  
  .mypage-empty__text{
    font-size: 17px;
  }
  
  .mypage-card{
    padding: 20px;
  }
  
  .mypage-card__content{
    padding: 16px;
  }
  
  .mypage-field__label{
    font-size: 13px;
  }
  
  .mypage-field__value{
    font-size: 16px;
  }
  
  .mypage-status{
    font-size: 15px;
    padding: 7px 14px;
  }
  
  .mypage-key{
    font-size: 15px;
  }
  
  .mypage-register{
    padding: 20px;
  }
  
  .mypage-register__note{
    font-size: 13px;
  }
  
  .mypage-register__button{
    padding: 14px 40px;
    font-size: 16px;
  }
  
  .mypage-login{
    padding: 20px;
  }
  
  .mypage-login__note{
    font-size: 13px;
  }
  
  .mypage-login__button{
    padding: 14px 40px;
    font-size: 16px;
  }
  
  .mypage-account{
    padding: 24px;
  }
  
  .mypage-account__label{
    font-size: 15px;
  }
  
  .mypage-account__value{
    font-size: 16px;
  }
  
  .mypage-logout{
    padding: 16px 50px;
    font-size: 17px;
  }
  
  .detail-message{
    padding: 18px 24px;
    font-size: 15px;
  }
  
  .detail-content{
    padding: 24px;
  }
  
  .detail-header{
    font-size: 14px;
    padding: 16px 14px;
    width: 30%;
  }
  
  .detail-data{
    font-size: 16px;
    padding: 16px 14px;
  }
  
  .detail-subtitle{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .detail-actions{
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .detail-action__button{
    width: auto;
    min-width: 200px;
    padding: 16px 50px;
    font-size: 17px;
  }
  
  .detail-link{
    padding: 18px 24px;
  }
  
  .detail-link__text{
    font-size: 16px;
  }
  
  .detail-link__arrow{
    width: 24px;
    height: 24px;
  }
  
  .register-form{
    padding: 28px 24px;
  }
  
  .register-form__fields{
    gap: 24px;
  }
  
  .register-field__label{
    font-size: 15px;
  }
  
  .register-field__input input[type="text"],
  .register-field__input input[type="email"]{
    padding: 16px 18px;
    font-size: 17px;
  }
  
  .register-submit{
    padding: 18px 80px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .profile-notice{
    padding: 18px 24px;
  }
  
  .profile-notice p{
    font-size: 15px;
  }
  
  .profile-form{
    padding: 28px 24px;
  }
  
  .profile-form__fields{
    gap: 24px;
  }
  
  .profile-field__label{
    font-size: 15px;
  }
  
  .profile-field__input input[type="text"],
  .profile-field__input input[type="email"],
  .profile-field__input input[type="tel"],
  .profile-field__input input[type="date"],
  .profile-field__input select{
    padding: 16px 18px;
    font-size: 17px;
  }
  
  .profile-submit{
    padding: 18px 80px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .sabtitle{
    font-size: 14px;
  }
  
  .edit-form{
    padding: 28px 24px;
  }
  
  .edit-form__fields{
    gap: 24px;
  }
  
  .edit-field__label{
    font-size: 15px;
  }
  
  .edit-field__required{
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .edit-field__input{
    padding: 16px 18px;
    font-size: 17px;
  }
  
  .edit-birthday{
    gap: 12px;
  }
  
  .edit-submit{
    padding: 18px 80px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .help-block{
    font-size: 13px;
  }
  
  .confirm-update-message{
    padding: 18px 24px;
    font-size: 15px;
  }
  
  .confirm-update-content{
    padding: 24px;
  }
  
  .confirm-update-header{
    font-size: 14px;
    padding: 16px 14px;
    width: 30%;
  }
  
  .confirm-update-data{
    font-size: 16px;
    padding: 16px 14px;
  }
  
  .confirm-update-subtitle{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .confirm-update-actions{
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .confirm-update-action__button{
    width: auto;
    min-width: 200px;
    padding: 16px 50px;
    font-size: 17px;
  }
  
  .confirm-update-link{
    padding: 18px 24px;
  }
  
  .confirm-update-link__text{
    font-size: 16px;
  }
  
  .confirm-update-link__arrow{
    width: 24px;
    height: 24px;
  }
  
  .confirm-create-message{
    padding: 18px 24px;
    font-size: 15px;
  }
  
  .confirm-create-content{
    padding: 24px;
  }
  
  .confirm-create-header{
    font-size: 14px;
    padding: 16px 14px;
    width: 30%;
  }
  
  .confirm-create-data{
    font-size: 16px;
    padding: 16px 14px;
  }
  
  .confirm-create-subtitle{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .confirm-create-actions{
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .confirm-create-action__button{
    width: auto;
    min-width: 200px;
    padding: 16px 50px;
    font-size: 17px;
  }
  
  .confirm-create-link{
    padding: 18px 24px;
  }
  
  .confirm-create-link__text{
    font-size: 16px;
  }
  
  .confirm-create-link__arrow{
    width: 24px;
    height: 24px;
  }
  
  .complete-success{
    padding: 60px 40px;
  }
  
  .complete-success__icon{
    width: 112px;
    height: 112px;
  }
  
  .complete-success__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .complete-success__message{
    font-size: 20px;
  }
  
  .complete-link{
    padding: 18px 24px;
  }
  
  .complete-link__text{
    font-size: 16px;
  }
  
  .complete-link__arrow{
    width: 24px;
    height: 24px;
  }
  
  .download-content{
    padding: 24px;
  }
  
  .download-debug{
    padding: 14px;
    font-size: 13px;
  }
  
  .download-preview__image{
    padding: 24px;
  }
  
  .download-info{
    padding: 18px 24px;
  }
  
  .download-info__label{
    font-size: 16px;
  }
  
  .download-info__value{
    font-size: 20px;
  }
  
  .download-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .download-error{
    padding: 50px 30px;
  }
  
  .download-error__icon{
    width: 96px;
    height: 96px;
  }
  
  .download-error__icon svg{
    width: 56px;
    height: 56px;
  }
  
  .download-error__title{
    font-size: 15px;
  }
  
  .download-error__points{
    font-size: 32px;
  }
  
  .download-error__message{
    font-size: 16px;
  }
  
  .download-error__link{
    padding: 14px 40px;
    font-size: 17px;
  }
  
  .download-notice{
    padding: 18px 24px;
  }
  
  .download-notice__text{
    font-size: 14px;
  }
}

/* 音楽ダウンロードページ用スタイル */
.text_m--download-music{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.download-music-content{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
}

.download-music-debug{
  background: #fff9f0;
  border: 1px dashed #f08a00;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #856404;
  font-family: monospace;
}

.download-music-preview{
  text-align: center;
}

.download-music-title{
  font-size: 20px;
  font-weight: 900;
  color: #2f3b52;
  margin: 0 0 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border-radius: 12px;
  border: 2px solid #9c27b0;
  line-height: 1.5;
}

.download-music-details{
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.download-music-details__item{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e0e0e0;
  text-align: left;
}

.download-music-details__item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.download-music-details__label{
  font-size: 13px;
  font-weight: 700;
  color: #667;
  min-width: 110px;
  flex-shrink: 0;
}

.download-music-details__value{
  font-size: 14px;
  color: #2f3b52;
  line-height: 1.6;
  flex: 1;
}

.download-music-info{
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-radius: 12px;
  border: 2px solid #2196f3;
}

.download-music-info__item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-music-info__label{
  font-size: 15px;
  font-weight: 700;
  color: #1565c0;
}

.download-music-info__value{
  font-size: 18px;
  font-weight: 900;
  color: #2196f3;
}

.download-music-action{
  margin-bottom: 24px;
}

.download-music-button{
  display: inline-block;
  padding: 16px 50px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  min-width: 240px;
}

.download-music-button--download{
  background: linear-gradient(135deg, #4dc056 0%, #45a049 100%);
  color: #fff;
}

.download-music-button--download:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77,192,86,.4);
}

.download-music-button--redownload{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.download-music-button--redownload:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

.download-music-error{
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  margin-bottom: 24px;
}

.download-music-error__icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #ff9800;
  box-shadow: 0 4px 16px rgba(255,152,0,.3);
}

.download-music-error__icon svg{
  color: #ff9800;
}

.download-music-error__title{
  font-size: 14px;
  font-weight: 700;
  color: #856404;
  margin: 0 0 8px;
}

.download-music-error__points{
  font-size: 28px;
  font-weight: 900;
  color: #ff9800;
  margin: 0 0 16px;
}

.download-music-error__message{
  font-size: 15px;
  color: #856404;
  line-height: 1.8;
  margin: 0 0 20px;
}

.download-music-error__link{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,152,0,.3);
}

.download-music-error__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,152,0,.4);
}

.download-music-notice{
  padding: 16px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 4px solid #4dc056;
  border-radius: 12px;
}

.download-music-notice__text{
  font-size: 13px;
  color: #2e7d32;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px){
  .download-music-content{
    padding: 24px;
  }
  
  .download-music-debug{
    padding: 14px;
    font-size: 13px;
  }
  
  .download-music-title{
    font-size: 24px;
    padding: 20px 24px;
    margin-bottom: 28px;
  }
  
  .download-music-details{
    padding: 24px;
    margin-bottom: 28px;
  }
  
  .download-music-details__item{
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  
  .download-music-details__label{
    font-size: 14px;
    min-width: 120px;
  }
  
  .download-music-details__value{
    font-size: 15px;
  }
  
  .download-music-info{
    padding: 18px 24px;
  }
  
  .download-music-info__label{
    font-size: 16px;
  }
  
  .download-music-info__value{
    font-size: 20px;
  }
  
  .download-music-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .download-music-error{
    padding: 50px 30px;
  }
  
  .download-music-error__icon{
    width: 96px;
    height: 96px;
  }
  
  .download-music-error__icon svg{
    width: 56px;
    height: 56px;
  }
  
  .download-music-error__title{
    font-size: 15px;
  }
  
  .download-music-error__points{
    font-size: 32px;
  }
  
  .download-music-error__message{
    font-size: 16px;
  }
  
  .download-music-error__link{
    padding: 14px 40px;
    font-size: 17px;
  }
  
  .download-music-notice{
    padding: 18px 24px;
  }
  
  .download-music-notice__text{
    font-size: 14px;
  }
}

/* 退会コース選択ページ用スタイル */
.text_m--retire-select{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.retire-select-intro{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #e65100;
  line-height: 1.8;
}

.retire-select-payment{
  text-align: center;
  padding: 20px 0;
  margin-bottom: 24px;
}

.retire-select-payment img{
  max-width: 200px;
  height: auto;
}

.retire-select-list{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.retire-select-list__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-bottom: 16px;
}

.retire-course{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.retire-course:last-child{
  margin-bottom: 0;
}

.retire-course--active{
  border-color: #e0e0e0;
  cursor: pointer;
}

.retire-course--active:hover{
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,53,69,.2);
}

.retire-course--disabled{
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.retire-course--empty{
  border-color: #e0e0e0;
  text-align: center;
}

.retire-course__content{
  width: 100%;
}

.retire-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.retire-course__price-label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.retire-course__price-main{
  font-size: 20px;
  color: #2f3b52;
  font-weight: 900;
}

.retire-course__price-next{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.retire-course__status{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.retire-course__status--processing{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ff9800;
}

.retire-course__status-icon{
  font-size: 18px;
}

.retire-course__status-text{
  font-size: 15px;
  color: #e65100;
  font-weight: 700;
}

.retire-course__message{
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.retire-course__action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #dc3545;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.retire-course--active:hover .retire-course__action{
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.retire-course__action-text{
  font-size: 16px;
  color: #dc3545;
  font-weight: 700;
  transition: all 0.3s ease;
}

.retire-course--active:hover .retire-course__action-text{
  color: #fff;
}

.retire-course__action-arrow{
  font-size: 20px;
  color: #dc3545;
  font-weight: 900;
  transition: all 0.3s ease;
}

.retire-course--active:hover .retire-course__action-arrow{
  color: #fff;
  transform: translateX(5px);
}

.retire-course__empty-message{
  font-size: 15px;
  color: #666;
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px){
  .retire-select-intro{
    padding: 24px;
    font-size: 16px;
  }
  
  .retire-select-payment{
    padding: 24px 0;
  }
  
  .retire-select-payment img{
    max-width: 240px;
  }
  
  .retire-select-list{
    padding: 24px;
  }
  
  .retire-select-list__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .retire-course{
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .retire-course__price{
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .retire-course__price-label{
    font-size: 14px;
  }
  
  .retire-course__price-main{
    font-size: 22px;
  }
  
  .retire-course__price-next{
    font-size: 15px;
  }
  
  .retire-course__status{
    padding: 14px 20px;
    gap: 10px;
  }
  
  .retire-course__status-icon{
    font-size: 20px;
  }
  
  .retire-course__status-text{
    font-size: 16px;
  }
  
  .retire-course__message{
    font-size: 15px;
  }
  
  .retire-course__action{
    padding: 14px 20px;
  }
  
  .retire-course__action-text{
    font-size: 17px;
  }
  
  .retire-course__action-arrow{
    font-size: 22px;
  }
  
  .retire-course__empty-message{
    font-size: 16px;
    padding: 24px;
  }
}

/* 退会完了ページ用スタイル */
.text_m--retire-complete{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.retire-complete-message{
  background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 3px solid #4caf50;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.retire-complete-message__icon{
  width: 96px;
  height: 96px;
  background-color: #fff;
  border: 4px solid #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.retire-complete-message__icon svg{
  width: 56px;
  height: 56px;
  color: #4caf50;
}

.retire-complete-message__text{
  font-size: 18px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.retire-complete-ad{
  text-align: center;
  padding: 30px 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

@media (min-width: 768px){
  .retire-complete-message{
    padding: 60px 40px;
  }
  
  .retire-complete-message__icon{
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  
  .retire-complete-message__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .retire-complete-message__text{
    font-size: 20px;
  }
  
  .retire-complete-ad{
    padding: 40px 20px;
  }
}

/* 退会キャンセルページ用スタイル */
.text_m--retire-cancel{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.retire-cancel-message{
  background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
  border: 3px solid #2196f3;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.retire-cancel-message__icon{
  width: 96px;
  height: 96px;
  background-color: #fff;
  border: 4px solid #2196f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.retire-cancel-message__icon svg{
  width: 56px;
  height: 56px;
  color: #2196f3;
}

.retire-cancel-message__text{
  font-size: 18px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.retire-cancel-action{
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.retire-cancel-button{
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
  min-width: 240px;
}

.retire-cancel-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

@media (min-width: 768px){
  .retire-cancel-message{
    padding: 60px 40px;
  }
  
  .retire-cancel-message__icon{
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  
  .retire-cancel-message__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .retire-cancel-message__text{
    font-size: 20px;
  }
  
  .retire-cancel-action{
    padding: 30px 20px;
  }
  
  .retire-cancel-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
}

/* docomoキャリア決済退会ページ用スタイル */
.text_m--retire-docomo{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.retire-docomo-intro{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #e65100;
  line-height: 1.8;
}

.retire-docomo-payment{
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
}

.retire-docomo-payment__label{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(220,53,69,.3);
}

.retire-docomo-list{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.retire-docomo-list__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-bottom: 16px;
}

.retire-docomo-course{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.retire-docomo-course:last-child{
  margin-bottom: 0;
}

.retire-docomo-course--active{
  border-color: #e0e0e0;
  cursor: pointer;
}

.retire-docomo-course--active:hover{
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,53,69,.2);
}

.retire-docomo-course--disabled{
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.retire-docomo-course--empty{
  border-color: #e0e0e0;
  text-align: center;
}

.retire-docomo-course__content{
  width: 100%;
}

.retire-docomo-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.retire-docomo-course__price-label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.retire-docomo-course__price-main{
  font-size: 20px;
  color: #2f3b52;
  font-weight: 900;
}

.retire-docomo-course__price-next{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.retire-docomo-course__price-note{
  font-size: 12px;
  color: #dc3545;
  font-weight: 700;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 6px;
  margin-top: 4px;
  line-height: 1.5;
}

.retire-docomo-course__status{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.retire-docomo-course__status--processing{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ff9800;
}

.retire-docomo-course__status-icon{
  font-size: 18px;
}

.retire-docomo-course__status-text{
  font-size: 15px;
  color: #e65100;
  font-weight: 700;
}

.retire-docomo-course__message{
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.retire-docomo-course__action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #dc3545;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.retire-docomo-course--active:hover .retire-docomo-course__action{
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.retire-docomo-course__action-text{
  font-size: 16px;
  color: #dc3545;
  font-weight: 700;
  transition: all 0.3s ease;
}

.retire-docomo-course--active:hover .retire-docomo-course__action-text{
  color: #fff;
}

.retire-docomo-course__action-arrow{
  font-size: 20px;
  color: #dc3545;
  font-weight: 900;
  transition: all 0.3s ease;
}

.retire-docomo-course--active:hover .retire-docomo-course__action-arrow{
  color: #fff;
  transform: translateX(5px);
}

.retire-docomo-course__empty-message{
  font-size: 15px;
  color: #666;
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px){
  .retire-docomo-intro{
    padding: 24px;
    font-size: 16px;
  }
  
  .retire-docomo-payment{
    padding: 20px 0;
  }
  
  .retire-docomo-payment__label{
    padding: 14px 40px;
    font-size: 17px;
  }
  
  .retire-docomo-list{
    padding: 24px;
  }
  
  .retire-docomo-list__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .retire-docomo-course{
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .retire-docomo-course__price{
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .retire-docomo-course__price-label{
    font-size: 14px;
  }
  
  .retire-docomo-course__price-main{
    font-size: 22px;
  }
  
  .retire-docomo-course__price-next{
    font-size: 15px;
  }
  
  .retire-docomo-course__price-note{
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .retire-docomo-course__status{
    padding: 14px 20px;
    gap: 10px;
  }
  
  .retire-docomo-course__status-icon{
    font-size: 20px;
  }
  
  .retire-docomo-course__status-text{
    font-size: 16px;
  }
  
  .retire-docomo-course__message{
    font-size: 15px;
  }
  
  .retire-docomo-course__action{
    padding: 14px 20px;
  }
  
  .retire-docomo-course__action-text{
    font-size: 17px;
  }
  
  .retire-docomo-course__action-arrow{
    font-size: 22px;
  }
  
  .retire-docomo-course__empty-message{
    font-size: 16px;
    padding: 24px;
  }
}

/* AUキャリア決済退会ページ用スタイル */
.text_m--retire-auone{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.retire-auone-intro{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 15px;
  color: #e65100;
  line-height: 1.8;
}

.retire-auone-payment{
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
}

.retire-auone-payment__label{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255,111,0,.3);
}

.retire-auone-list{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.retire-auone-list__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-bottom: 16px;
}

.retire-auone-course{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.retire-auone-course:last-child{
  margin-bottom: 0;
}

.retire-auone-course--active{
  border-color: #e0e0e0;
  cursor: pointer;
}

.retire-auone-course--active:hover{
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,53,69,.2);
}

.retire-auone-course--disabled{
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.retire-auone-course--empty{
  border-color: #e0e0e0;
  text-align: center;
}

.retire-auone-course__content{
  width: 100%;
}

.retire-auone-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.retire-auone-course__price-label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.retire-auone-course__price-main{
  font-size: 20px;
  color: #2f3b52;
  font-weight: 900;
}

.retire-auone-course__price-next{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.retire-auone-course__status{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.retire-auone-course__status--processing{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ff9800;
}

.retire-auone-course__status-icon{
  font-size: 18px;
}

.retire-auone-course__status-text{
  font-size: 15px;
  color: #e65100;
  font-weight: 700;
}

.retire-auone-course__message{
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.retire-auone-course__action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #dc3545;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.retire-auone-course--active:hover .retire-auone-course__action{
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.retire-auone-course__action-text{
  font-size: 16px;
  color: #dc3545;
  font-weight: 700;
  transition: all 0.3s ease;
}

.retire-auone-course--active:hover .retire-auone-course__action-text{
  color: #fff;
}

.retire-auone-course__action-arrow{
  font-size: 20px;
  color: #dc3545;
  font-weight: 900;
  transition: all 0.3s ease;
}

.retire-auone-course--active:hover .retire-auone-course__action-arrow{
  color: #fff;
  transform: translateX(5px);
}

.retire-auone-course__empty-message{
  font-size: 15px;
  color: #666;
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px){
  .retire-auone-intro{
    padding: 24px;
    font-size: 16px;
  }
  
  .retire-auone-payment{
    padding: 20px 0;
  }
  
  .retire-auone-payment__label{
    padding: 14px 40px;
    font-size: 17px;
  }
  
  .retire-auone-list{
    padding: 24px;
  }
  
  .retire-auone-list__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .retire-auone-course{
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .retire-auone-course__price{
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .retire-auone-course__price-label{
    font-size: 14px;
  }
  
  .retire-auone-course__price-main{
    font-size: 22px;
  }
  
  .retire-auone-course__price-next{
    font-size: 15px;
  }
  
  .retire-auone-course__status{
    padding: 14px 20px;
    gap: 10px;
  }
  
  .retire-auone-course__status-icon{
    font-size: 20px;
  }
  
  .retire-auone-course__status-text{
    font-size: 16px;
  }
  
  .retire-auone-course__message{
    font-size: 15px;
  }
  
  .retire-auone-course__action{
    padding: 14px 20px;
  }
  
  .retire-auone-course__action-text{
    font-size: 17px;
  }
  
  .retire-auone-course__action-arrow{
    font-size: 22px;
  }
  
  .retire-auone-course__empty-message{
    font-size: 16px;
    padding: 24px;
  }
}

/* 登録済みエラーページ用スタイル */
.text_m--registered{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.registered-message{
  background: linear-gradient(180deg, #fff3e0 0%, #ffe0b2 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.registered-message__icon{
  width: 96px;
  height: 96px;
  background-color: #fff;
  border: 4px solid #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.registered-message__icon svg{
  width: 56px;
  height: 56px;
  color: #ff9800;
}

.registered-message__text{
  font-size: 16px;
  font-weight: 700;
  color: #e65100;
  line-height: 1.8;
  margin: 0;
}

.registered-action{
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.registered-button{
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
  min-width: 240px;
}

.registered-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

@media (min-width: 768px){
  .registered-message{
    padding: 60px 40px;
  }
  
  .registered-message__icon{
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  
  .registered-message__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .registered-message__text{
    font-size: 18px;
  }
  
  .registered-action{
    padding: 30px 20px;
  }
  
  .registered-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
}

/* 会員登録ページ用スタイル */
.text_m--regist{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.regist-intro{
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #1565c0;
  line-height: 1.8;
}

.regist-intro a{
  color: #1565c0;
  text-decoration: underline;
  font-weight: 700;
}

.regist-intro__billing{
  display: block;
  color: #dc3545;
  font-weight: 700;
  margin-top: 8px;
  font-size: 13px;
}

.regist-payment{
  text-align: center;
  padding: 20px 0;
  margin-bottom: 24px;
}

.regist-payment img{
  max-width: 250px;
  height: auto;
}

.regist-notice{
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 3px solid #dc3545;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.regist-notice__title{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #dc3545;
}

.regist-notice__content{
  color: #c62828;
  font-size: 14px;
  line-height: 1.7;
}

.regist-notice__item{
  margin: 0 0 12px;
}

.regist-notice__item:last-child{
  margin-bottom: 0;
}

.regist-list{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.regist-list__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-bottom: 16px;
}

.regist-course{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.regist-course:last-child{
  margin-bottom: 0;
}

.regist-course--available{
  border-color: #43a047;
  background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
  cursor: pointer;
}

.regist-course--available:hover{
  border-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,125,50,.15);
}

.regist-course--registered{
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.regist-course__content{
  width: 100%;
}

.regist-course__point{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 10px;
}

.regist-course__status{
  color: #dc3545;
  font-weight: 900;
  margin-left: 8px;
  font-size: 14px;
}

.regist-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.regist-course__price-label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.regist-course__price-main{
  font-size: 18px;
  color: #2f3b52;
  font-weight: 700;
}

.regist-course__price-premium{
  font-size: 18px;
  color: #f57c00;
  font-weight: 700;
}

.regist-course__price-next{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.regist-course__arrow{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #43a047;
  font-weight: 700;
  transition: all 0.3s ease;
}

.regist-course--available:hover .regist-course__arrow{
  transform: translateY(-50%) translateX(5px);
  color: #2e7d32;
}

.regist-info{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.regist-info__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  margin-bottom: 16px;
}

.regist-info__content{
  padding: 0 16px;
  font-size: 14px;
  color: #2f3b52;
  line-height: 1.7;
}

.regist-info__content a{
  color: #2196f3;
  text-decoration: underline;
}

@media (min-width: 768px){
  .regist-intro{
    padding: 20px 24px;
    font-size: 15px;
  }
  
  .regist-intro__billing{
    font-size: 14px;
  }
  
  .regist-payment{
    padding: 24px 0;
  }
  
  .regist-payment img{
    max-width: 300px;
  }
  
  .regist-notice{
    padding: 24px;
  }
  
  .regist-notice__title{
    font-size: 17px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .regist-notice__content{
    font-size: 15px;
  }
  
  .regist-notice__item{
    margin-bottom: 16px;
  }
  
  .regist-list{
    padding: 24px;
  }
  
  .regist-list__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .regist-course{
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .regist-course__point{
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .regist-course__status{
    font-size: 15px;
  }
  
  .regist-course__price{
    gap: 8px;
  }
  
  .regist-course__price-label{
    font-size: 14px;
  }
  
  .regist-course__price-main{
    font-size: 20px;
  }
  
  .regist-course__price-premium{
    font-size: 20px;
  }
  
  .regist-course__price-next{
    font-size: 15px;
  }
  
  .regist-course__arrow{
    right: 24px;
    font-size: 28px;
  }
  
  .regist-info{
    padding: 24px;
  }
  
  .regist-info__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .regist-info__content{
    padding: 0 20px;
    font-size: 15px;
  }
}

/* 登録完了ページ用スタイル */
.text_m--regist-complete{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.regist-complete-message{
  background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 3px solid #4caf50;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.regist-complete-message__icon{
  width: 96px;
  height: 96px;
  background-color: #fff;
  border: 4px solid #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.regist-complete-message__icon svg{
  width: 56px;
  height: 56px;
  color: #4caf50;
}

.regist-complete-message__text{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.8;
  margin: 0;
}

.regist-complete-action{
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.regist-complete-button{
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220,53,69,.3);
  min-width: 240px;
}

.regist-complete-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220,53,69,.4);
}

.regist-complete-login{
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.regist-complete-login__text{
  font-size: 14px;
  color: #e65100;
  line-height: 1.7;
  margin: 0 0 16px;
}

.regist-complete-login__info{
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.regist-complete-login__item{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.regist-complete-login__item:last-child{
  margin-bottom: 0;
}

.regist-complete-login__label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.regist-complete-login__value{
  font-size: 16px;
  color: #2f3b52;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 1px;
  background: #f5f5f5;
  padding: 10px 12px;
  border-radius: 6px;
  word-break: break-all;
}

.regist-complete-ad{
  text-align: center;
  padding: 30px 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.regist-complete-link{
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.regist-complete-link a{
  display: inline-block;
  color: #2196f3;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 768px){
  .regist-complete-message{
    padding: 60px 40px;
  }
  
  .regist-complete-message__icon{
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  
  .regist-complete-message__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .regist-complete-message__text{
    font-size: 18px;
  }
  
  .regist-complete-action{
    padding: 30px 20px;
  }
  
  .regist-complete-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
  
  .regist-complete-login{
    padding: 24px;
  }
  
  .regist-complete-login__text{
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .regist-complete-login__info{
    padding: 20px;
  }
  
  .regist-complete-login__item{
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .regist-complete-login__label{
    font-size: 14px;
  }
  
  .regist-complete-login__value{
    font-size: 17px;
    padding: 12px 14px;
  }
  
  .regist-complete-ad{
    padding: 40px 20px;
  }
  
  .regist-complete-link{
    padding: 30px 20px;
  }
  
  .regist-complete-link a{
    font-size: 16px;
  }
}

/* 決済中止ページ用スタイル */
.text_m--regist-cancel{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.regist-cancel-message{
  background: linear-gradient(180deg, #fff3e0 0%, #ffe0b2 100%);
  border: 3px solid #ff9800;
  border-radius: 16px;
  padding: 50px 20px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.regist-cancel-message__icon{
  width: 96px;
  height: 96px;
  background-color: #fff;
  border: 4px solid #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.regist-cancel-message__icon svg{
  width: 56px;
  height: 56px;
  color: #ff9800;
}

.regist-cancel-message__text{
  font-size: 16px;
  font-weight: 700;
  color: #e65100;
  line-height: 1.8;
  margin: 0;
}

.regist-cancel-action{
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  max-width: 600px;
}

.regist-cancel-button{
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
  min-width: 240px;
}

.regist-cancel-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33,150,243,.4);
}

@media (min-width: 768px){
  .regist-cancel-message{
    padding: 60px 40px;
  }
  
  .regist-cancel-message__icon{
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }
  
  .regist-cancel-message__icon svg{
    width: 64px;
    height: 64px;
  }
  
  .regist-cancel-message__text{
    font-size: 18px;
  }
  
  .regist-cancel-action{
    padding: 30px 20px;
  }
  
  .regist-cancel-button{
    padding: 18px 60px;
    font-size: 18px;
    min-width: 280px;
  }
}

/* ソフトバンク決済登録ページ用スタイル */
.text_m--regist-softbank{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.regist-softbank-intro{
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #1565c0;
  line-height: 1.8;
}

.regist-softbank-intro a{
  color: #1565c0;
  text-decoration: underline;
  font-weight: 700;
}

.regist-softbank-intro__billing{
  display: block;
  color: #dc3545;
  font-weight: 700;
  margin-top: 8px;
  font-size: 13px;
}

.regist-softbank-payment{
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
}

.regist-softbank-payment__label{
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #757575 0%, #616161 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(117,117,117,.3);
}

.regist-softbank-list{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.regist-softbank-list__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}

.regist-softbank-course{
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.regist-softbank-course:last-child{
  margin-bottom: 0;
}

.regist-softbank-course--available{
  border-color: #43a047;
  background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
  cursor: pointer;
}

.regist-softbank-course--available:hover{
  border-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,125,50,.15);
}

.regist-softbank-course--registered{
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.7;
}

.regist-softbank-course__content{
  width: 100%;
}

.regist-softbank-course__method{
  font-size: 13px;
  font-weight: 700;
  color: #616161;
  margin-bottom: 8px;
}

.regist-softbank-course__point{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 10px;
}

.regist-softbank-course__status{
  color: #dc3545;
  font-weight: 700;
  margin-left: 8px;
  font-size: 14px;
}

.regist-softbank-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.regist-softbank-course__price-label{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.regist-softbank-course__price-main{
  font-size: 18px;
  color: #2f3b52;
  font-weight: 700;
}

.regist-softbank-course__price-next{
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.regist-softbank-course__arrow{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #43a047;
  font-weight: 700;
  transition: all 0.3s ease;
}

.regist-softbank-course--available:hover .regist-softbank-course__arrow{
  transform: translateY(-50%) translateX(5px);
  color: #2e7d32;
}

.regist-softbank-info{
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #e7e7e7;
  margin-bottom: 24px;
}

.regist-softbank-info__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-left: 4px solid #757575;
  border-radius: 8px;
  margin-bottom: 16px;
}

.regist-softbank-info__content{
  padding: 0 16px;
  font-size: 14px;
  color: #2f3b52;
  line-height: 1.7;
}

.regist-softbank-info__content a{
  color: #2196f3;
  text-decoration: underline;
}

@media (min-width: 768px){
  .regist-softbank-intro{
    padding: 20px 24px;
    font-size: 15px;
  }
  
  .regist-softbank-intro__billing{
    font-size: 14px;
  }
  
  .regist-softbank-payment{
    padding: 20px 0;
  }
  
  .regist-softbank-payment__label{
    padding: 14px 40px;
    font-size: 17px;
  }
  
  .regist-softbank-list{
    padding: 24px;
  }
  
  .regist-softbank-list__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .regist-softbank-course{
    padding: 24px;
    margin-bottom: 20px;
  }
  
  .regist-softbank-course__method{
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .regist-softbank-course__point{
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .regist-softbank-course__status{
    font-size: 15px;
  }
  
  .regist-softbank-course__price{
    gap: 8px;
  }
  
  .regist-softbank-course__price-label{
    font-size: 14px;
  }
  
  .regist-softbank-course__price-main{
    font-size: 20px;
  }
  
  .regist-softbank-course__price-next{
    font-size: 15px;
  }
  
  .regist-softbank-course__arrow{
    right: 24px;
    font-size: 28px;
  }
  
  .regist-softbank-info{
    padding: 24px;
  }
  
  .regist-softbank-info__header{
    font-size: 17px;
    padding: 14px 20px;
    margin-bottom: 20px;
  }
  
  .regist-softbank-info__content{
    padding: 0 20px;
    font-size: 15px;
  }
}

/* フォーム処理中ページ用スタイル */
.text_m--form-processing{
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 20px 0;
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-processing{
  text-align: center;
  padding: 50px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.form-processing__spinner{
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-processing__text{
  font-size: 18px;
  font-weight: 700;
  color: #2f3b52;
  margin: 0;
  line-height: 1.8;
}

.form-processing__form{
  margin-top: 40px;
  text-align: center;
}

.form-processing__submit{
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33,150,243,.3);
}

.form-processing__submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33,150,243,.4);
}

@media (min-width: 768px){
  .form-processing{
    padding: 60px 40px;
  }
  
  .form-processing__spinner{
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
  }
  
  .form-processing__text{
    font-size: 20px;
  }
  
  .form-processing__form{
    margin-top: 50px;
  }
  
  .form-processing__submit{
    padding: 14px 50px;
    font-size: 17px;
  }
}

/* ========================================
   regist_docomo_sp_1.html
======================================== */

/* 共通スタイル */
.text_m--regist-docomo{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 30px 10px;
}

.text_m--regist-docomo a{
  color: #f08a00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text_m--regist-docomo a:hover{
  color: #d97a00;
  text-decoration: underline;
}

/* シングルコーススタイル */
.regist-docomo-single{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.regist-docomo-single__intro{
  font-size: 13px;
  color: #2f3b52;
  line-height: 1.6;
  text-align: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  font-weight: 600;
}

.regist-docomo-single__intro--top{
  font-size: 10px;
  line-height: 1.3;
  padding: 8px 12px;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-weight: 500;
}

.regist-docomo-single__trial{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regist-docomo-single__trial-text{
  font-size: 12px;
  color: #2f3b52;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
  background: #fff8f0;
  border-radius: 12px;
  border: 2px solid #ffd699;
}

.regist-docomo-single__trial-text--inline{
  width: calc(100% - 20px);
  margin: 0 10px;
  font-size: 18px;
  padding: 20px 24px;
  background: #ffffff;
  border: 4px solid #d50000;
  border-radius: 12px;
  position: relative;
  color: #d50000;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}

/* シンプルな赤色テキスト */
.regist-docomo-single__trial-highlight{
  color: #d50000 !important;
  font-size: 22px;
  font-weight: 800;
  display: inline-block;
}

.regist-docomo-single__trial-text--inline .regist-docomo-single__trial-highlight{
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #d50000 !important;
  display: inline-block;
  animation: highlight-pulse 2s ease-in-out infinite;
}

@keyframes highlight-pulse{
  0%, 100%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.05);
  }
}

.regist-docomo-single__notice{
  font-size: 11px;
  color: #555;
  line-height: 1.5;
  padding: 16px;
  background: #e8f4fd;
  border-left: 4px solid #2196f3;
  border-radius: 6px;
}

.regist-docomo-single__notice--inline{
  font-size: 11px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  color: #424242;
  text-align: left;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-docomo-single__info-frame{
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.regist-docomo-single__terms{
  font-size: 13px;
  color: #424242;
  line-height: 1.8;
  text-align: left;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-docomo-single__terms:last-child{
  margin-bottom: 0;
}

.regist-docomo-single__payment{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 10px;
  background: #ffffff;
  border-radius: 16px;
  border: 5px solid #d50000;
  box-shadow: 0 10px 30px rgba(213, 0, 0, 0.4), 0 5px 15px rgba(198, 40, 40, 0.3);
}

.regist-docomo-single__payment-label{
  font-size: 16px;
  font-weight: 700;
  color: #d32f2f;
  text-align: center;
}

.regist-docomo-single__payment-action{
  width: 100%;
  display: flex;
  justify-content: center;
}

.regist-docomo-single__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  font-size: 22px;
  font-weight: 900;
  color: #fff !important;
  background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 35px rgba(6, 199, 85, 0.5), 0 5px 18px rgba(0, 185, 0, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.1em;
}

.regist-docomo-single__button::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.regist-docomo-single__button:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 50px rgba(6, 199, 85, 0.65), 0 10px 25px rgba(0, 185, 0, 0.45);
  background: linear-gradient(135deg, #00E866 0%, #06C755 100%);
}

.regist-docomo-single__button:hover::before{
  left: 100%;
}

.regist-docomo-single__button:active{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.55), 0 4px 12px rgba(0, 185, 0, 0.35);
}

.regist-docomo-single__button--disabled{
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
  color: #999 !important;
  cursor: not-allowed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regist-docomo-single__button--disabled::before{
  display: none;
}

.regist-docomo-single__button--disabled:hover{
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regist-docomo-single__warning{
  font-size: 11px;
  color: #424242;
  line-height: 1.8;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-docomo-single__meta{
  color: transparent;
  font-size: 1px;
  text-align: right;
  user-select: none;
  opacity: 0;
}

/* マルチコーススタイル */
.regist-docomo-intro{
  font-size: 13px;
  color: #424242;
  line-height: 1.8;
  text-align: left;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.regist-docomo-intro__billing{
  font-size: 13px;
  color: #424242;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.regist-docomo-payment{
  text-align: center;
  margin-bottom: 20px;
}

.regist-docomo-payment__label{
  font-size: 16px;
  font-weight: 700;
  color: #d32f2f;
  padding: 12px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 10px;
  display: inline-block;
  border: 2px solid #ffcdd2;
}

.regist-docomo-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.regist-docomo-list__header{
  font-size: 18px;
  font-weight: 800;
  color: #2f3b52;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 12px;
  border: 2px solid #ffcdd2;
}

.regist-docomo-course{
  display: block;
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.regist-docomo-course--available{
  cursor: pointer;
}

.regist-docomo-course--available:hover{
  border-color: #f08a00;
  box-shadow: 0 6px 18px rgba(240, 138, 0, 0.15);
  transform: translateY(-2px);
}

.regist-docomo-course--registered{
  background: #f8f9fa;
  border-color: #ccc;
  cursor: default;
}

.regist-docomo-course__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.regist-docomo-course__point{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.regist-docomo-course__status{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
}

.regist-docomo-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.regist-docomo-course__price-label{
  font-size: 14px;
  color: #666;
  font-weight: 600;
  display: block;
}

.regist-docomo-course__price-next{
  font-size: 13px;
  color: #888;
  display: block;
}

.regist-docomo-course__price-main{
  font-size: 16px;
  color: #2f3b52;
  font-weight: 700;
  display: block;
}

.regist-docomo-course__arrow{
  font-size: 20px;
  font-weight: 700;
  color: #f08a00;
  flex-shrink: 0;
}

.regist-docomo-course--registered .regist-docomo-course__arrow{
  display: none;
}

.regist-docomo-info{
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.regist-docomo-info__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 12px;
  text-align: center;
}

.regist-docomo-info__content{
  text-align: center;
}

.regist-docomo-info__content a{
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #f08a00;
  border-radius: 8px;
  color: #f08a00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.regist-docomo-info__content a:hover{
  background: #f08a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 138, 0, 0.3);
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .regist-docomo-single__intro,
  .regist-docomo-single__terms{
    font-size: 14px;
  }
  
  .regist-docomo-single__intro--top{
    font-size: 11px;
    padding: 10px 16px;
  }
  
  .regist-docomo-single__trial-text{
    font-size: 13px;
  }
  
  .regist-docomo-single__trial-text--inline{
    width: calc(100% - 28px);
    margin: 0 14px;
    font-size: 22px;
    padding: 24px 32px;
  }
  
  .regist-docomo-single__trial-highlight{
    font-size: 24px;
  }
  
  .regist-docomo-single__trial-text--inline .regist-docomo-single__trial-highlight{
    font-size: 30px;
  }
  
  .regist-docomo-single__notice{
    font-size: 12px;
  }
  
  .regist-docomo-single__notice--inline{
    font-size: 12px;
    padding: 16px 22px;
  }
  
  .regist-docomo-single__warning{
    font-size: 12px;
    padding: 16px 22px;
  }
  
  .regist-docomo-single__info-frame{
    padding: 24px;
    margin-top: 24px;
  }
  
  .regist-docomo-single__terms{
    font-size: 14px;
    padding: 16px 22px;
    margin-bottom: 14px;
  }
  
  .regist-docomo-single__payment{
    padding: 40px 30px;
  }
  
  .regist-docomo-single__button{
    padding: 20px 90px;
    font-size: 22px;
  }
  
  .regist-docomo-intro{
    font-size: 14px;
    padding: 24px;
  }
  
  .regist-docomo-intro__billing{
    font-size: 14px;
  }
  
  .regist-docomo-list__header{
    font-size: 20px;
  }
  
  .regist-docomo-course{
    padding: 24px;
  }
  
  .regist-docomo-course__point{
    font-size: 16px;
  }
  
  .regist-docomo-course__price-label{
    font-size: 15px;
  }
  
  .regist-docomo-course__price-next{
    font-size: 14px;
  }
  
  .regist-docomo-course__price-main{
    font-size: 17px;
  }
}

/* ========================================
   regist_auone_sp_1.html
======================================== */

/* 共通スタイル */
.text_m--regist-auone{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 30px 10px;
}

.text_m--regist-auone a{
  color: #f08a00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text_m--regist-auone a:hover{
  color: #d97a00;
  text-decoration: underline;
}

/* シングルコーススタイル */
.regist-auone-single{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.regist-auone-single__intro{
  font-size: 13px;
  color: #2f3b52;
  line-height: 1.6;
  text-align: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  font-weight: 600;
}

.regist-auone-single__intro--top{
  font-size: 10px;
  line-height: 1.3;
  padding: 8px 12px;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-weight: 500;
}

.regist-auone-single__trial{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.regist-auone-single__trial-text{
  font-size: 12px;
  color: #2f3b52;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
  background: #fff8f0;
  border-radius: 12px;
  border: 2px solid #ffd699;
}

.regist-auone-single__trial-text--inline{
  width: calc(100% - 20px);
  margin: 0 10px;
  font-size: 18px;
  padding: 20px 24px;
  background: #ffffff;
  border: 4px solid #ff6f00;
  border-radius: 12px;
  position: relative;
  color: #ff6f00;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}

.regist-auone-single__trial-highlight{
  color: #ff6f00;
  font-size: 22px;
  font-weight: 800;
  display: inline-block;
}

.regist-auone-single__trial-text--inline .regist-auone-single__trial-highlight{
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ff6f00 !important;
  display: inline-block;
  animation: highlight-pulse 2s ease-in-out infinite;
}

.regist-auone-single__notice{
  font-size: 11px;
  color: #555;
  line-height: 1.5;
  padding: 16px;
  background: #e8f4fd;
  border-left: 4px solid #2196f3;
  border-radius: 6px;
}

.regist-auone-single__notice--inline{
  font-size: 11px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  color: #424242;
  text-align: left;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-auone-single__info-frame{
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.regist-auone-single__terms{
  font-size: 13px;
  color: #424242;
  line-height: 1.8;
  text-align: left;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-auone-single__terms:last-child{
  margin-bottom: 0;
}

.regist-auone-single__payment{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 5px solid #ff6f00;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4), 0 5px 15px rgba(230, 81, 0, 0.3);
}

.regist-auone-single__payment-logo{
  text-align: center;
}

.regist-auone-single__payment-logo img{
  max-width: 100%;
  height: auto;
}

.regist-auone-single__payment-action{
  width: 100%;
  display: flex;
  justify-content: center;
}

.regist-auone-single__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  font-size: 22px;
  font-weight: 900;
  color: #fff !important;
  background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 35px rgba(6, 199, 85, 0.5), 0 5px 18px rgba(0, 185, 0, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.1em;
}

.regist-auone-single__button::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.regist-auone-single__button:hover{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 50px rgba(6, 199, 85, 0.65), 0 10px 25px rgba(0, 185, 0, 0.45);
  background: linear-gradient(135deg, #00E866 0%, #06C755 100%);
}

.regist-auone-single__button:hover::before{
  left: 100%;
}

.regist-auone-single__button:active{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.55), 0 4px 12px rgba(0, 185, 0, 0.35);
}

.regist-auone-single__button--disabled{
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
  color: #999 !important;
  cursor: not-allowed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regist-auone-single__button--disabled::before{
  display: none;
}

.regist-auone-single__button--disabled:hover{
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.regist-auone-single__warning{
  font-size: 11px;
  color: #424242;
  line-height: 1.8;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e3f2fd;
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}

.regist-auone-single__meta{
  color: transparent;
  font-size: 1px;
  text-align: right;
  user-select: none;
  opacity: 0;
}

/* マルチコーススタイル */
.regist-auone-intro{
  font-size: 13px;
  color: #424242;
  line-height: 1.8;
  text-align: left;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.regist-auone-intro__billing{
  font-size: 13px;
  color: #424242;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.regist-auone-payment{
  text-align: center;
  margin-bottom: 20px;
}

.regist-auone-payment__logo{
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 10px;
  border: 2px solid #ffcdd2;
}

.regist-auone-payment__logo img{
  max-width: 100%;
  height: auto;
  display: block;
}

.regist-auone-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.regist-auone-list__header{
  font-size: 18px;
  font-weight: 800;
  color: #2f3b52;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 12px;
  border: 2px solid #ffcdd2;
}

.regist-auone-course{
  display: block;
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.regist-auone-course--available{
  cursor: pointer;
}

.regist-auone-course--available:hover{
  border-color: #f08a00;
  box-shadow: 0 6px 18px rgba(240, 138, 0, 0.15);
  transform: translateY(-2px);
}

.regist-auone-course--registered{
  background: #f8f9fa;
  border-color: #ccc;
  cursor: default;
}

.regist-auone-course__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.regist-auone-course__status-label{
  font-size: 15px;
  font-weight: 700;
  color: #2f3b52;
  line-height: 1.6;
}

.regist-auone-course__status{
  color: #d32f2f;
  font-size: 14px;
  font-weight: 700;
}

.regist-auone-course__price{
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.regist-auone-course__price-label{
  font-size: 14px;
  color: #666;
  font-weight: 600;
  display: block;
}

.regist-auone-course__price-next{
  font-size: 13px;
  color: #888;
  display: block;
}

.regist-auone-course__price-main{
  font-size: 16px;
  color: #2f3b52;
  font-weight: 700;
  display: block;
}

.regist-auone-course__arrow{
  font-size: 20px;
  font-weight: 700;
  color: #f08a00;
  flex-shrink: 0;
}

.regist-auone-course--registered .regist-auone-course__arrow{
  display: none;
}

.regist-auone-info{
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.regist-auone-info__header{
  font-size: 16px;
  font-weight: 700;
  color: #2f3b52;
  margin-bottom: 12px;
  text-align: center;
}

.regist-auone-info__content{
  text-align: center;
  font-size: 14px;
  color: #2f3b52;
  line-height: 1.7;
}

.regist-auone-info__content a{
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #f08a00;
  border-radius: 8px;
  color: #f08a00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.regist-auone-info__content a:hover{
  background: #f08a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 138, 0, 0.3);
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .regist-auone-single__intro,
  .regist-auone-single__terms{
    font-size: 14px;
  }
  
  .regist-auone-single__intro--top{
    font-size: 11px;
    padding: 10px 16px;
  }
  
  .regist-auone-single__trial-text{
    font-size: 13px;
  }
  
  .regist-auone-single__trial-text--inline{
    width: calc(100% - 28px);
    margin: 0 14px;
    font-size: 22px;
    padding: 24px 32px;
  }
  
  .regist-auone-single__trial-highlight{
    font-size: 24px;
  }
  
  .regist-auone-single__trial-text--inline .regist-auone-single__trial-highlight{
    font-size: 30px;
  }
  
  .regist-auone-single__notice{
    font-size: 12px;
  }
  
  .regist-auone-single__notice--inline{
    font-size: 12px;
    padding: 16px 22px;
  }
  
  .regist-auone-single__warning{
    font-size: 12px;
    padding: 16px 22px;
  }
  
  .regist-auone-single__payment{
    padding: 40px 30px;
  }
  
  .regist-auone-single__button{
    padding: 20px 90px;
    font-size: 22px;
  }
  
  .regist-auone-single__info-frame{
    padding: 24px;
    margin-top: 24px;
  }
  
  .regist-auone-single__terms{
    font-size: 14px;
    padding: 16px 22px;
    margin-bottom: 14px;
  }
  
  .regist-auone-intro{
    font-size: 14px;
    padding: 24px;
  }
  
  .regist-auone-intro__billing{
    font-size: 14px;
  }
  
  .regist-auone-list__header{
    font-size: 20px;
  }
  
  .regist-auone-course{
    padding: 24px;
  }
  
  .regist-auone-course__status-label{
    font-size: 16px;
  }
  
  .regist-auone-course__price-label{
    font-size: 15px;
  }
  
  .regist-auone-course__price-next{
    font-size: 14px;
  }
  
  .regist-auone-course__price-main{
    font-size: 17px;
  }
}

/* ========================================
   no_login_sp_1.html - ログインページ
   デザインにこだわった特別なページ
======================================== */

.text_m--no-login{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* イントロセクション */
.no-login__intro{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 16px;
  margin-bottom: 40px;
  border: 2px solid #ffcdd2;
}

.no-login__intro-icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.4);
}

.no-login__intro-icon svg{
  width: 32px;
  height: 32px;
}

.no-login__intro-text{
  font-size: 15px;
  color: #2f3b52;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
}

/* ログイン方法リスト */
.no-login__methods{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 各ログイン方法カード */
.no-login__method{
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.no-login__method:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.no-login__method--credit{
  border-color: #e3f2fd;
}

.no-login__method--credit:hover{
  border-color: #2196f3;
}

.no-login__method--docomo{
  border-color: #fce4ec;
}

.no-login__method--docomo:hover{
  border-color: #e91e63;
}

.no-login__method--au{
  border-color: #fff3e0;
}

.no-login__method--au:hover{
  border-color: #ff9800;
}

.no-login__method--softbank{
  border-color: #f3e5f5;
}

.no-login__method--softbank:hover{
  border-color: #9c27b0;
}

/* メソッドヘッダー */
.no-login__method-header{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.no-login__method-badge{
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.no-login__method-badge svg{
  width: 28px;
  height: 28px;
}

.no-login__method-badge--credit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.no-login__method-badge--docomo{
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #fff;
}

.no-login__method-badge--au{
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.no-login__method-badge--softbank{
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.no-login__method-title{
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.no-login__method-label{
  font-size: 18px;
  font-weight: 800;
  color: #2f3b52;
  line-height: 1.2;
}

.no-login__method-sublabel{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* ロゴエリア */
.no-login__method-logo{
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
}

.no-login__method-logo img{
  max-width: 100%;
  height: auto;
  max-height: 60px;
}

/* フォーム */
.no-login__form{
  width: 100%;
}

/* アクションエリア */
.no-login__method-action{
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
}

/* ログインボタン */
.no-login__button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  min-height: 52px;
  box-sizing: border-box;
}

.no-login__button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s ease;
}

.no-login__button:hover::before{
  left: 100%;
}

.no-login__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.no-login__button:active{
  transform: translateY(0);
}

.no-login__button--credit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.no-login__button--credit:hover{
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.no-login__button--docomo{
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.no-login__button--docomo:hover{
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}

.no-login__button--au{
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.no-login__button--au:hover{
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

.no-login__button--softbank{
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.no-login__button--softbank:hover{
  box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
}

.no-login__button-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.no-login__button:hover .no-login__button-icon{
  background: rgba(255,255,255,.3);
  transform: translateX(4px);
}

.no-login__button-icon svg{
  width: 16px;
  height: 16px;
}

.no-login__button-text{
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--no-login{
    padding: 60px 40px;
  }
  
  .no-login__intro{
    padding: 40px 30px;
  }
  
  .no-login__intro-icon{
    width: 80px;
    height: 80px;
  }
  
  .no-login__intro-icon svg{
    width: 40px;
    height: 40px;
  }
  
  .no-login__intro-text{
    font-size: 16px;
  }
  
  .no-login__methods{
    gap: 30px;
  }
  
  .no-login__method{
    padding: 36px 32px;
  }
  
  .no-login__method-badge{
    width: 60px;
    height: 60px;
  }
  
  .no-login__method-badge svg{
    width: 32px;
    height: 32px;
  }
  
  .no-login__method-label{
    font-size: 20px;
  }
  
  .no-login__method-sublabel{
    font-size: 14px;
  }
  
  .no-login__method-logo{
    padding: 24px;
  }
  
  .no-login__method-logo img{
    max-height: 80px;
  }
  
  .no-login__button{
    padding: 18px 32px;
    font-size: 17px;
  }
  
  .no-login__button-icon{
    width: 28px;
    height: 28px;
  }
  
  .no-login__button-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .no-login__button-text{
    font-size: 17px;
  }
}

/* ========================================
   login_ng_id_sp_1.html - ログインエラー/退会ページ
======================================== */

.text_m--login-ng{
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 30px 24px;
}

/* メインコンテナ */
.login-ng{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* アラートセクション */
.login-ng__alert{
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #f5faff 0%, #e8f4fd 100%);
  border-radius: 12px;
  border: 2px solid #bbdefb;
}

.login-ng__alert-icon{
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.login-ng__alert-icon svg{
  width: 28px;
  height: 28px;
}

.login-ng__alert-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-ng__alert-title{
  font-size: 16px;
  font-weight: 800;
  color: #2f3b52;
  line-height: 1.3;
}

.login-ng__alert-text{
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* 注意事項 */
.login-ng__notice{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #e8f4fd;
  border-left: 4px solid #2196f3;
  border-radius: 8px;
}

.login-ng__notice-icon{
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2196f3;
}

.login-ng__notice-icon svg{
  width: 20px;
  height: 20px;
}

.login-ng__notice-content{
  flex: 1;
  font-size: 14px;
  color: #2f3b52;
  line-height: 1.7;
  font-weight: 600;
}

/* ログインボタンエリア */
.login-ng__action{
  padding: 20px 0;
  text-align: center;
}

.login-ng__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f08a00 0%, #d97a00 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(240, 138, 0, 0.4);
}

.login-ng__button:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(240, 138, 0, 0.5);
}

.login-ng__button:active{
  transform: translateY(-1px);
}

.login-ng__button-icon{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}

.login-ng__button-icon svg{
  width: 16px;
  height: 16px;
}

.login-ng__button-text{
  line-height: 1;
}

/* ヘルプセクション */
.login-ng__help{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.login-ng__help-title{
  font-size: 16px;
  font-weight: 800;
  color: #2f3b52;
  line-height: 1.4;
  text-align: center;
}

.login-ng__help-text{
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  text-align: center;
}

.login-ng__help-action{
  text-align: center;
  margin-top: 8px;
}

.login-ng__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #f08a00;
  background: #fff;
  border: 2px solid #f08a00;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-ng__link:hover{
  background: #f08a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 138, 0, 0.3);
}

.login-ng__link-icon{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-ng__link-icon svg{
  width: 18px;
  height: 18px;
}

.login-ng__link-text{
  line-height: 1;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--login-ng{
    padding: 40px 36px;
  }
  
  .login-ng__alert{
    padding: 28px;
  }
  
  .login-ng__alert-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .login-ng__alert-icon svg{
    width: 32px;
    height: 32px;
  }
  
  .login-ng__alert-title{
    font-size: 18px;
  }
  
  .login-ng__alert-text{
    font-size: 15px;
  }
  
  .login-ng__notice{
    padding: 20px;
  }
  
  .login-ng__notice-icon{
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  
  .login-ng__notice-icon svg{
    width: 24px;
    height: 24px;
  }
  
  .login-ng__notice-content{
    font-size: 15px;
  }
  
  .login-ng__button{
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .login-ng__button-icon{
    width: 28px;
    height: 28px;
  }
  
  .login-ng__button-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .login-ng__help{
    padding: 28px;
  }
  
  .login-ng__help-title{
    font-size: 17px;
  }
  
  .login-ng__help-text{
    font-size: 15px;
  }
  
  .login-ng__link{
    padding: 14px 40px;
    font-size: 16px;
  }
}

/* ========================================
   login_menu_sp_1.html - ログインメニュー
   no_login_sp_1.htmlと同じデザイン
======================================== */

.text_m--login-menu{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* イントロセクション */
.login-menu__intro{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f5faff 0%, #e8f4fd 100%);
  border-radius: 16px;
  margin-bottom: 40px;
  border: 2px solid #bbdefb;
}

.login-menu__intro-icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.3);
}

.login-menu__intro-icon svg{
  width: 32px;
  height: 32px;
}

.login-menu__intro-text{
  font-size: 15px;
  color: #2f3b52;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
}

/* ログイン方法リスト */
.login-menu__methods{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 各ログイン方法カード */
.login-menu__method{
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.login-menu__method:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.login-menu__method--credit{
  border-color: #e3f2fd;
}

.login-menu__method--credit:hover{
  border-color: #2196f3;
}

.login-menu__method--docomo{
  border-color: #fce4ec;
}

.login-menu__method--docomo:hover{
  border-color: #e91e63;
}

.login-menu__method--au{
  border-color: #fff3e0;
}

.login-menu__method--au:hover{
  border-color: #ff9800;
}

.login-menu__method--softbank{
  border-color: #f3e5f5;
}

.login-menu__method--softbank:hover{
  border-color: #9c27b0;
}

/* メソッドヘッダー */
.login-menu__method-header{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.login-menu__method-badge{
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.login-menu__method-badge svg{
  width: 28px;
  height: 28px;
}

.login-menu__method-badge--credit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
}

.login-menu__method-badge--docomo{
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #fff;
}

.login-menu__method-badge--au{
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #fff;
}

.login-menu__method-badge--softbank{
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: #fff;
}

.login-menu__method-title{
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.login-menu__method-label{
  font-size: 18px;
  font-weight: 800;
  color: #2f3b52;
  line-height: 1.2;
}

.login-menu__method-sublabel{
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* ロゴエリア */
.login-menu__method-logo{
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
}

.login-menu__method-logo img{
  max-width: 100%;
  height: auto;
  max-height: 60px;
}

/* フォーム */
.login-menu__form{
  width: 100%;
}

/* アクションエリア */
.login-menu__method-action{
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.login-menu__method-action a{
  display: inline-block;
  text-decoration: none;
}

/* ログインボタン */
.login-menu__button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  min-height: 52px;
  box-sizing: border-box;
}

.login-menu__button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s ease;
}

.login-menu__button:hover::before{
  left: 100%;
}

.login-menu__button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.login-menu__button:active{
  transform: translateY(0);
}

.login-menu__button--credit{
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.login-menu__button--credit:hover{
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.login-menu__button--docomo{
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.login-menu__button--docomo:hover{
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}

.login-menu__button--au{
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.login-menu__button--au:hover{
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

.login-menu__button--softbank{
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.login-menu__button--softbank:hover{
  box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
}

.login-menu__button-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.login-menu__button:hover .login-menu__button-icon{
  background: rgba(255,255,255,.3);
  transform: translateX(4px);
}

.login-menu__button-icon svg{
  width: 16px;
  height: 16px;
}

.login-menu__button-text{
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* 画像ボタン（docomo用） */
.login-menu__image-button{
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: block;
  margin: 0 auto;
}

.login-menu__image-button:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

/* 画像リンク（AU用） */
.login-menu__image-link{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.login-menu__method-action a:hover .login-menu__image-link{
  transform: translateY(-2px);
  opacity: 0.9;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--login-menu{
    padding: 60px 40px;
  }
  
  .login-menu__intro{
    padding: 40px 30px;
  }
  
  .login-menu__intro-icon{
    width: 80px;
    height: 80px;
  }
  
  .login-menu__intro-icon svg{
    width: 40px;
    height: 40px;
  }
  
  .login-menu__intro-text{
    font-size: 16px;
  }
  
  .login-menu__methods{
    gap: 30px;
  }
  
  .login-menu__method{
    padding: 36px 32px;
  }
  
  .login-menu__method-badge{
    width: 60px;
    height: 60px;
  }
  
  .login-menu__method-badge svg{
    width: 32px;
    height: 32px;
  }
  
  .login-menu__method-label{
    font-size: 20px;
  }
  
  .login-menu__method-sublabel{
    font-size: 14px;
  }
  
  .login-menu__method-logo{
    padding: 24px;
  }
  
  .login-menu__method-logo img{
    max-height: 80px;
  }
  
  .login-menu__button{
    padding: 18px 32px;
    font-size: 17px;
  }
  
  .login-menu__button-icon{
    width: 28px;
    height: 28px;
  }
  
  .login-menu__button-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .login-menu__button-text{
    font-size: 17px;
  }
}

/* ========================================
   login_info_sp_1.html - ログイン情報表示
======================================== */

.text_m--login-info{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* メインコンテナ */
.login-info{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 注意事項 */
.login-info__notice{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8e8 100%);
  border-radius: 12px;
  border: 2px solid #ffd699;
}

.login-info__notice-icon{
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.login-info__notice-icon svg{
  width: 28px;
  height: 28px;
}

.login-info__notice-text{
  flex: 1;
  font-size: 15px;
  color: #2f3b52;
  line-height: 1.7;
  font-weight: 700;
}

/* 情報カード */
.login-info__card{
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  overflow: hidden;
  border: 2px solid #e7e7e7;
}

.login-info__card-header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #f08a00 0%, #d97a00 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.login-info__card-header svg{
  width: 28px;
  height: 28px;
}

/* 認証情報エリア */
.login-info__credentials{
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 各項目 */
.login-info__item{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.login-info__item-label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-info__item-label svg{
  width: 18px;
  height: 18px;
  color: #f08a00;
}

.login-info__item-value{
  font-size: 18px;
  font-weight: 800;
  color: #2f3b52;
  font-family: 'Courier New', monospace;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid #e7e7e7;
  word-break: break-all;
  letter-spacing: 1px;
  text-align: center;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--login-info{
    padding: 60px 40px;
  }
  
  .login-info{
    gap: 40px;
  }
  
  .login-info__notice{
    padding: 24px;
  }
  
  .login-info__notice-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .login-info__notice-icon svg{
    width: 32px;
    height: 32px;
  }
  
  .login-info__notice-text{
    font-size: 16px;
  }
  
  .login-info__card-header{
    padding: 24px;
    font-size: 19px;
  }
  
  .login-info__card-header svg{
    width: 32px;
    height: 32px;
  }
  
  .login-info__credentials{
    padding: 40px 32px;
    gap: 28px;
  }
  
  .login-info__item{
    padding: 24px;
  }
  
  .login-info__item-label{
    font-size: 14px;
  }
  
  .login-info__item-label svg{
    width: 20px;
    height: 20px;
  }
  
  .login-info__item-value{
    font-size: 20px;
    padding: 18px;
  }
}

/* ========================================
   login_id_sp_1.html - IDログインフォーム
======================================== */

.text_m--login-id{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* メインコンテナ */
.login-id{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* イントロセクション */
.login-id__intro{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  border: 2px solid #90caf9;
}

.login-id__intro-icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.4);
}

.login-id__intro-icon svg{
  width: 32px;
  height: 32px;
}

.login-id__intro-text{
  font-size: 15px;
  color: #2f3b52;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
}

/* フォームラッパー */
.login-id__form-wrapper{
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  overflow: hidden;
  border: 2px solid #e7e7e7;
}

/* フォーム */
.login-id__form{
  display: flex;
  flex-direction: column;
}

/* フォームヘッダー */
.login-id__form-header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #f08a00 0%, #d97a00 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.login-id__form-header svg{
  width: 28px;
  height: 28px;
}

/* フォームグループ */
.login-id__form-group{
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #e7e7e7;
}

.login-id__form-group:last-of-type{
  border-bottom: none;
}

/* ラベル */
.login-id__label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2f3b52;
}

.login-id__label svg{
  width: 20px;
  height: 20px;
  color: #f08a00;
}

/* 入力フィールド */
.login-id__input{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e7e7e7;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  box-sizing: border-box;
}

.login-id__input:focus{
  outline: none;
  border-color: #f08a00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 138, 0, 0.1);
}

.login-id__input::placeholder{
  color: #999;
}

/* 送信ボタンエリア */
.login-id__form-submit{
  padding: 24px;
  background: #f8f9fa;
}

/* ログインボタン */
.login-id__button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f08a00 0%, #d97a00 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(240, 138, 0, 0.4);
}

.login-id__button:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(240, 138, 0, 0.5);
}

.login-id__button:active{
  transform: translateY(-1px);
}

.login-id__button-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}

.login-id__button-icon svg{
  width: 16px;
  height: 16px;
}

.login-id__button-text{
  line-height: 1;
}

/* ヘルプリンク */
.login-id__help{
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid #e7e7e7;
  background: #fff;
}

.login-id__help-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #f08a00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}

.login-id__help-link:hover{
  background: #fff5f0;
  color: #d97a00;
}

.login-id__help-link svg{
  width: 18px;
  height: 18px;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--login-id{
    padding: 60px 40px;
  }
  
  .login-id{
    gap: 40px;
  }
  
  .login-id__intro{
    padding: 40px 30px;
  }
  
  .login-id__intro-icon{
    width: 80px;
    height: 80px;
  }
  
  .login-id__intro-icon svg{
    width: 40px;
    height: 40px;
  }
  
  .login-id__intro-text{
    font-size: 16px;
  }
  
  .login-id__form-header{
    padding: 24px;
    font-size: 19px;
  }
  
  .login-id__form-header svg{
    width: 32px;
    height: 32px;
  }
  
  .login-id__form-group{
    padding: 24px 32px;
  }
  
  .login-id__label{
    font-size: 15px;
  }
  
  .login-id__label svg{
    width: 22px;
    height: 22px;
  }
  
  .login-id__input{
    padding: 16px 18px;
    font-size: 17px;
  }
  
  .login-id__form-submit{
    padding: 28px 32px;
  }
  
  .login-id__button{
    padding: 18px 32px;
    font-size: 17px;
  }
  
  .login-id__button-icon{
    width: 28px;
    height: 28px;
  }
  
  .login-id__button-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .login-id__help{
    padding: 24px 32px;
  }
  
  .login-id__help-link{
    font-size: 15px;
    padding: 10px 20px;
  }
  
  .login-id__help-link svg{
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   docomo_connect_sp_1.html - ログアウトページ
======================================== */

.text_m--docomo-connect{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* メインコンテナ */
.docomo-connect{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ノーティスラッパー */
.docomo-connect__notice-wrapper{
  /* partial{notice}用のスペース */
}

/* コンテンツ */
.docomo-connect__content{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* メッセージセクション */
.docomo-connect__message{
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  border: 2px solid #90caf9;
}

.docomo-connect__message-icon{
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.docomo-connect__message-icon svg{
  width: 28px;
  height: 28px;
}

.docomo-connect__message-text{
  flex: 1;
  font-size: 15px;
  color: #2f3b52;
  line-height: 1.8;
  font-weight: 600;
}

/* アクションエリア */
.docomo-connect__action{
  text-align: center;
  padding: 20px 0;
}

/* ログアウトボタン */
.docomo-connect__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.4);
}

.docomo-connect__button:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.5);
}

.docomo-connect__button:active{
  transform: translateY(-1px);
}

.docomo-connect__button-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}

.docomo-connect__button-icon svg{
  width: 16px;
  height: 16px;
}

.docomo-connect__button-text{
  line-height: 1;
}

/* リンクエリア */
.docomo-connect__links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e7e7e7;
}

.docomo-connect__link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #2f3b52;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.docomo-connect__link:hover{
  background: #fff;
  border-color: #f08a00;
  color: #f08a00;
  transform: translateX(4px);
}

.docomo-connect__link svg{
  width: 22px;
  height: 22px;
  color: #f08a00;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (min-width: 768px){
  .text_m--docomo-connect{
    padding: 60px 40px;
  }
  
  .docomo-connect{
    gap: 40px;
  }
  
  .docomo-connect__content{
    gap: 40px;
  }
  
  .docomo-connect__message{
    padding: 28px;
  }
  
  .docomo-connect__message-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .docomo-connect__message-icon svg{
    width: 32px;
    height: 32px;
  }
  
  .docomo-connect__message-text{
    font-size: 16px;
  }
  
  .docomo-connect__button{
    padding: 18px 50px;
    font-size: 17px;
  }
  
  .docomo-connect__button-icon{
    width: 28px;
    height: 28px;
  }
  
  .docomo-connect__button-icon svg{
    width: 18px;
    height: 18px;
  }
  
  .docomo-connect__links{
    padding: 28px;
    gap: 14px;
  }
  
  .docomo-connect__link{
    padding: 16px 20px;
    font-size: 16px;
  }
  
  .docomo-connect__link svg{
    width: 24px;
    height: 24px;
  }
}




/* ログインメニューのイントロセクションをコンパクト化 */
  .login-menu__intro {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 12px 15px !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  
  .login-menu__intro-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
  
  .login-menu__intro-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .login-menu__intro-text {
    font-size: 13px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }
  
  /* タブレット以上の画面でもコンパクトに */
  @media (min-width: 768px) {
    .login-menu__intro {
      padding: 16px 20px !important;
      gap: 16px !important;
    }
    
    .login-menu__intro-icon {
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
    }
    
    .login-menu__intro-icon svg {
      width: 24px !important;
      height: 24px !important;
    }
    
    .login-menu__intro-text {
      font-size: 14px !important;
    }
  }