@charset "utf-8";

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-VariableFont_wght.woff2') format('woff2'),
    url('../font/NotoSansJP-VariableFont_wght.woff') format('woff'),
    url('../font/NotoSansJP-VariableFont_wght.eot') format('eot'),
    url('../font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Serif JP';
  src: url('../font/NotoSerifJP-VariableFont_wght.woff2') format('woff2'),
    url('../font/NotoSerifJP-VariableFont_wght.woff') format('woff'),
    url('../font/NotoSerifJP-VariableFont_wght.eot') format('eot'),
    url('../font/NotoSerifJP-VariableFont_wght.ttf') format('truetype');
}


html {
  font-size: min(1vw, calc(var(--contentWidth) / 100));
  overflow-x: hidden;
}

body {
  width: 100%;
  font-size: 4.3rem;
  background-image: url(../img/back.jpg);
  color: var(--black);
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: underline;
  color: revert;
}

#contents {
  background: #fff;
  max-width: var(--contentWidth);
  margin-inline: auto;
  box-shadow: 0 0 20rem 0 rgba(0, 0, 0, 0.3);
}

main {
  overflow: hidden;
}

/*------------------------------------------------
header
--------------------------------------------------*/
.r_grad {
  background-image: linear-gradient(90deg, #88000c 0%, #ca2035 50%, #88000c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg_r_gr {
  background-image: linear-gradient(90deg, #88000c 0%, #ca2035 50%, #88000c 100%);
}

/*------------------------------------------------
カウントダウンタイマー
--------------------------------------------------*/
#scheader {
  z-index: 100;
  /* Updated to higher z-index */
  position: sticky;
  /* Changed from fixed to sticky */
  top: 0;
  /* Added for sticky positioning */
  width: 100%;
  font-size: 3.5rem;
  font-weight: bold;
  /* Removed duplicate declaration */
  text-align: center;
  background: var(--black);
  /* Updated to use variable */
  color: #fff;
  padding: 2rem 0;
  /* Added for consistent spacing */
  line-height: 1;
  /* Unified line-height */
}

#scheader .countdown {
  padding: 1rem 0;
  margin: 0 auto;
  line-height: 1.2;
  /* Retained specific line-height */
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif, monospace;
}

#scheader .countdown .timer_num {
  display: inline-block;
  padding: 0 0.4rem;
  margin: 0 0.4rem;
  border-radius: 3px;
  color: var(--black);
  font-size: 150%;
  background: #fff;
}

/*--------------------------------------------------
 Section
-------------------------------------------------- */
.img_arrow {
  width: 60%;
  margin: 0 auto;
  margin-top: 3rem;
}

video {
  width: 100%;
}

/* Form
------------------------- */
.form {
  background-image: linear-gradient(90deg, #90000c, #e00d1f 50%, #90000c);
  color: #fff;
  position: relative;
}

.form_inner {
  padding: 8rem 5rem;
}

@media screen and (max-width: 480px) {
  .form_inner {
    padding: 8rem 5rem;
  }
}

.form.head2 {
  color: #111111;
}

.form.form_arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-top: 7rem solid transparent;
  border-left: min(calc(var(--contentWidth) / 2), 50vw) solid var(--formColor);
  border-right: min(calc(var(--contentWidth) / 2), 50vw) solid var(--formColor);
  border-bottom: none;
  top: calc(-7rem + 1px);
  left: 0;
}

.form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

header .form form {
  grid-template-rows: 1fr auto;
  gap: 0 2rem;
}

.form_box {
  position: relative;
}

.form_input {
  position: relative;
  background: #fff;
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 2rem;
  color: #111111;
  text-align: left;
  padding: 2.5rem 0.5rem 2.5rem 10rem;
  font-size: 4rem;
  height: 100%;
}

@media screen and (max-width: 480px) {
  .form_input {
    padding: 4rem 0.5rem 4rem 10rem;
  }
}

.form_must {
  position: absolute;
  /* width: 10rem; */
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 3rem;
  text-align: center;
  z-index: 10;
  width: auto;
  padding: 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

header .form_label {
  left: 11rem;
}

.form_label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: ease 0.3s;
  pointer-events: none;
  color: #aaa;
  z-index: 10;
  font-size: 3rem;
  left: 12rem;
}

@media screen and (max-width: 480px) {
  main .form_label {
    font-size: 4rem;
  }
}

.form_input:focus+.form_label,
.form_input:not(:placeholder-shown)+.form_label {
  top: 15%;
  font-size: 3rem;
  color: #3377ff;
}

.form_btn button {
  position: relative;
  width: 100%;
  height: 100%;
  background: #00ad48;
  border: 2px solid #7dff88;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 5rem;
  line-height: 1.3;
  padding-right: 0.5em;
  padding: 4rem 0;
}


/* btn under */
.btn_under {
  margin-top: 4rem;
}

.btn_under_wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: flex-start;
}

.btn_under_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 27%;
}

.btn_under_list img {
  width: 15rem;
  max-width: 100%;
}

.btn_under_list p {
  font-size: 3.5rem;
  line-height: 1.4;
}

.ui-autocomplete {
  position: absolute !important;
  background: #fff;
  list-style: none;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.ui-autocomplete li {
  border-bottom: 1px solid #ccc;
  padding: 1rem;
  font-family: inherit !important;
  text-align: left;
  color: #111111;
}

.ui-autocomplete li:hover,
.ui-state-focus {
  background: #ff7;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.merit_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  text-align: center;
}

.form_text-wrap {
  font-size: 3rem;
  margin: 1rem 0rem;
  padding: .8rem 1rem 1rem;
  width: 28% !important;
  border: 1px dotted #fff;
  border-radius: 2rem;
  line-height: 1.3;
}

.head2 .form_text-wrap {
  border: 1px dotted #111111;
}

.merit_icon .form_text-wrap:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40% !important;
}

.form_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  align-items: stretch;
  /* 子要素の高さを揃える */
}

.form_icon p {
  font-weight: bold;
  font-size: 3.5rem;
  margin: 1rem 0;
  padding: 1rem;
  width: 49%;
  /* 横幅の調整 */
  border: 1px dotted #fff;
  border-radius: 2rem;
  text-align: center;
  display: flex;
  /* コンテンツを中央揃え */
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* パディング込みで幅を調整 */
}

/*css変更*/
.bg_gr {
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  padding-bottom: 10rem;
}


.header .btn_wrap {
  position: relative;
  padding-bottom: 5rem;
  top: -1rem;
}

/* ----------------------------------------------------
cp
--------------------------------------------------- */
.cp {
  padding-top: 0;
  background-color: #fffcf3;
  background-image: url(../img/crissxcross.png);
  background-size: 30rem;
}

.cp:nth-of-type(1) {
  padding-bottom: 5rem;
}

.cp .bg_r_gr {
  padding: 8rem 5rem;
  background-image: url(../img/bg_campaign.jpg);
}

.cp .sub_head {
  font-weight: 900;
  line-height: 1.3;
}

.cp .cp_box {
  background-color: #fff;
  padding: 5rem;
  margin: 0 5rem;
  border: 2px solid var(--red);
}

/* ----------------------------------------------------
chance
--------------------------------------------------- */
#chance {
  padding: 0;
}

/*------------------------
リスト（チェック付き）
------------------------*/
ul {
  list-style: none;
}

.list1 {
  color: #fff;
  border: 2px solid var(--blue);
  border-top: none;
  padding: 6rem 5rem 6rem 10rem;
}

.list1 li {
  position: relative;
  padding-left: 7rem;
  padding-bottom: 2rem;
  font-family: 'Noto Serif JP', serif;
}

.list1 li:last-child {
  padding-bottom: 0;
}

.list1 li::before,
.list1 li::after {
  content: "";
  position: absolute;
}

/* チェックマーク（✔） */
.list1 li::before {
  top: 1.2rem;
  left: 1.5rem;
  width: 2.6rem;
  height: 4rem;
  transform: rotate(50deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/* チェックボックス */
.list1 li::after {
  top: 2.1rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 2px;
}

@media screen and (max-width: 480px) {
  .list1 li::after {
    top: 1.7rem;
  }

  .list1 li::before {
    top: .8rem;
  }
}

/* ----------------------------------------------------
case
--------------------------------------------------- */
#case {
  background: #2b0303;
  padding: 0 0 16rem;
}

.case_box {
  background: #fff;
  border-radius: 0 0 7rem 7rem;
}

.radius {
  border-radius: 0 0 7rem 7rem;
}

.case_box_inner {
  padding: 6rem 5rem 3rem;
}

.case_ttl_wrap {
  background: #90000c;
  padding: 3rem 5rem 5rem;
  border-radius: 7rem 7rem 0 0;
}

.case_num {
  font-size: 6.5rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  text-align: center;
  color: #ffffff50;
}

.case_ttl {
  font-size: 4.2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

.b_box {
  position: relative;
}

.a_box {
  position: relative;
}

.b_box video,
.a_box video {
  width: 100%;
  display: block;
}

.b_video_ttl {
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  padding: 1rem 0;
}

.a_video_ttl {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  padding: 1rem 0;
}

.b_caption {
  color: #fff;
  line-height: 1.4;
  padding: 3rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  place-items: center center;
  background: var(--black);
  font-size: 4rem;
}

.a_caption {
  line-height: 1.4;
  padding: 3rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  place-items: center center;
  background: var(--red);
  color: #fff;
  font-size: 4rem;
}

.ba_ttl {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  font-feature-settings: 'palt'1;
  position: relative;
  letter-spacing: 2px;
  background: #168ea2;
  padding: 2rem 0;
  color: #fff;
}

/* ----------------------------------------------------
case
--------------------------------------------------- */
#case02 {
  background: #0e4108;
  padding: 0 0 16rem;
}

.middle {
  margin: 4rem 0;
}

.case02_box {
  background: #fff;
  border-radius: 0 0 7rem 7rem;
}

.case02_ttl_wrap {
  background: #176514;
  padding: 3rem 5rem 5rem;
  border-radius: 7rem 7rem 0 0;
}

.case02_num {
  font-size: 6.5rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  text-align: center;
  color: #ffffff50;
}

.case02_ttl {
  font-size: 4.5rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

.contets_img {
  padding: 0;
}

/* ----------------------------------------------------
future
--------------------------------------------------- */
#future {
  background-image: url(../img/bg_or.jpg);
  background-size: cover;
  padding-bottom: 8rem;
}

.future_box {
  background: #fff;
  border-radius: 4rem;
  padding: 6rem 5rem 7rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
}

.future_box .notice {
  text-align: center;
}

.future_box+.future_box {
  margin-top: 8rem;
}

.future_head {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.future_num {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: #b87b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 5rem;
}

.future_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 1.4;
}

.future_divider {
  border-top: 1px solid #b88c2c;
  margin: 0 0 4rem;
}

.future_body {
  margin-bottom: 5rem;
  font-size: 4rem;
}

.future_body p {
  font-size: 100%;
}

.future_image img {
  display: block;
  width: 100%;
}

.future_ex {
  font-size: 3rem;
  border: 1px solid #b0dce7;
  color: #444;
  padding: 2rem;
}

.future_lead .sub_head {
  color: #ff6d1f;
  line-height: 1.3;
  font-weight: 900;
  text-shadow: 0 0 3rem rgb(255, 255, 255), 0 0 5rem rgb(255, 255, 255), 0 0 7rem rgb(255, 255, 255);
  margin-bottom: 2rem;
  font-size: 7rem;
}

#future2 {
  background-image: url(../img/bg_bl.jpg);
  background-size: cover;
  padding-bottom: 0;
}

#future2 .future_lead .sub_head {
  color: #192f6f;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 2rem;
  font-size: 7rem;
}

#future2 .future_num {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: #666979;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 5rem;
}

#future2 .future_divider {
  border-top: 1px solid #3f4567;
  margin: 0 0 4rem;
}

/* ----------------------------------------------------
product
--------------------------------------------------- */
#product {
  padding: 0;
}

.product_select,
.product_premium,
.product_secret {
  padding: 10rem 0 10rem;
  color: #fff;
  text-align: center;
}

.product_select {
  background: url(../img/bg_select.jpg);
  background-size: cover;
}

.product_premium {
  background: url(../img/bg_premium.jpg);
  background-size: cover;
}

.product_secret {
  background: url(../img/bg_secret.jpg);
  background-size: cover;
}

.product_select .lead,
.product_premium .lead,
.product_secret .lead {
  color: #ffe8b9;
  font-weight: 700;
}

.product_select_title {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  line-height: 1.3;
}

.product_select_title .sub_head {
  margin: 0;
  font-size: 5.5rem;
  font-family: serif;
  background: linear-gradient(to right, #d8c073 0%, #fffbec 40%, #fffbec 60%, #d8c073 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* 一部ブラウザ用 */
  color: transparent;
  /* Fallback用 */
  font-weight: 900;
}

.product_leaf {
  width: 8rem;
}

.product_image {
  margin: 0 auto 3rem;
}

.product_image img {
  display: block;
  width: 100%;
}

.product_select_copy {
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--yellow3);
}

.product_btn_wrap {
  margin-top: 0;
  display: flex;
}


.product_btn {
  padding: 2.5rem 4rem;
  font-size: 4.2rem;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.btn_wrap .product_btn::before {
  content: "";
  display: inline-block;
  width: 13rem;
  height: 13rem;
  margin-right: 5rem;
  background: url(../img/icon_youtube.png) no-repeat center/contain;
}

.product_select_note {
  margin-top: 3rem;
  font-size: 2.8rem;
  line-height: 1.5;
}

.product_btn_wrap .r_btn {
  /* background: #e01818;
  border-radius: 2rem;
  box-shadow: 0 5px 0 #850707, 0 2px 10px rgba(0, 0, 0, 0.3) inset; */
}

.product_btn_wrap .g_btn {
  /* background: #c8a224;
  border-radius: 2rem;
  box-shadow: 0 5px 0 #9b7003, 0 2px 10px rgba(255, 255, 255, 0.3) inset; */
}

.product_btn_wrap .b_btn {
  /* background: #4f4f4f;
  border-radius: 2rem;
  box-shadow: 0 5px 0 #3c3c3c, 0 2px 10px rgba(255, 255, 255, 0.1) inset; */
}

/* 横並びボタン */
#horizontal-buttons {
  padding: 10rem 0;
}

.btn-wrap-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-wrap-horizontal span {
  display: contents;

}

.btn-wrap-horizontal .btn_ft {
  flex: 1;
  max-width: 300px;
  padding: 3rem 2.3rem;
  border-radius: 2rem;
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-wrap-horizontal .btn_ft:hover {
  filter: brightness(1.3);
}

.btn-wrap-horizontal .btn_ft a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3.7rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.btn-wrap-horizontal .btn-red {
  background: #e01818;
  box-shadow: 0 5px 0 #850707, 0 2px 10px rgba(0, 0, 0, 0.3) inset;
}

.btn-wrap-horizontal .btn-gold {
  background: #c8a224;
  box-shadow: 0 5px 0 #9b7003, 0 2px 10px rgba(0, 0, 0, 0.2) inset;
  padding-left: 3.5rem;
}

.btn-wrap-horizontal .btn-gray {
  background: #4f4f4f;
  box-shadow: 0 5px 0 #3c3c3c, 0 2px 10px rgba(0, 0, 0, 0.3) inset;
}

.btn-wrap-horizontal .letter_btn::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.15em solid currentColor;
  border-right: 0.15em solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ----------------------------------------------------
Bパターンボタン
--------------------------------------------------- */
.pack-select {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.pack-select__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.pack-list {
  max-width: 90%;
  margin: 0 auto 5rem;
}

.pack-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 5rem;
  background: #eeeeee;
  border-radius: 1.5rem;
  margin-bottom: 1.6rem;
  cursor: pointer;
  font-weight: 600;
}


.pack-item input {
  display: none;
}

.pack-radio {
  width: 3rem;
  height: 3rem;
  border: 3px solid #222222;
  border-radius: 50%;
  position: relative;
}

.pack-item input:checked+.pack-radio {
  border-color: #1ea7fd;
  background: #1ea7fd;
}

.pack-item input:checked+.pack-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.1rem;
  height: 2.1rem;
  background: #1ea7fd;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pack-item input:checked~.pack-name {
  color: #1ea7fd;
  font-weight: 700;
}

.pack-name {
  flex: 1;
  text-align: left;
}





/* ----------------------------------------------------
special
--------------------------------------------------- */
#special {
  padding: 10rem 0 8rem;
  text-align: center;
  background-color: #023f00;
  background-image: url("../img/bg_spe.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  /* 変更: auto から 100% に */
  position: relative;
  /* 追加: 背景画像の位置調整用 */
}

#special .notice {
  text-align: left;
}

#special .lead {
  display: inline-block;
  padding: 2rem 8rem;
  background: #222;
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  border-radius: 0.6rem;
  position: relative;
}

#special .lead::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.7rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.4rem 2.8rem 0 2.8rem;
  border-color: #222 transparent transparent transparent;
}

.bonus {
  position: relative;
  background-color: #fffaf1;
  margin: 15rem 5rem 5rem;
  padding: 12rem 5rem 7rem;
  border: 0.4rem solid #b09430;
  outline: 0.4rem solid #b09430;
  outline-offset: 1rem;
}

.bonus+.bonus {
  margin-top: 17rem;
}

/* 四隅の飾り枠 */
.corners {
  position: absolute;
  inset: 0;
  /* 四隅基準に */
  pointer-events: none;
  z-index: 3;
}

/* 四隅用の疑似要素を4つ作成 */
.corners::before,
.corners::after,
.corners span::before,
.corners span::after {
  content: "";
  position: absolute;
  width: 8rem;
  /* 飾りの大きさを調整 */
  height: 8rem;
  background-image: url("../img/frame.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 左上 */
.corners::before {
  top: 0;
  left: 0;
  transform: rotate(0deg);
}

/* 右上 */
.corners::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

/* 右下 */
.corners span::before {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

/* 左下 */
.corners span::after {
  bottom: 0;
  left: 0;
  transform: rotate(270deg);
}

/* --- 中身 --- */
.bonus_title {
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  font-weight: 700;
}

.bonus_image {
  position: absolute;
  width: 28%;
  top: -12rem;
  left: 50%;
  /* 左端を50%に */
  transform: translateX(-50%);
  /* 自分の幅の半分だけ左にずらして中央に */
}

/* ----------------------------------------------------
special2
--------------------------------------------------- */
#special2 {
  padding: 0;
}

.spe_select,
.spe_premium,
.spe_secret {
  background-size: cover;
  padding: 10rem 0;
}

.spe_select {
  background: url(../img/bg_select.jpg);
  padding-top: 0;
}

.spe_premium {
  background: url(../img/bg_premium.jpg);
}

.spe_secret {
  background: url(../img/bg_secret.jpg);
}

.spe_sel_box {
  background-color: #fff;
  margin: 5rem 0;
  padding: 8rem 5rem;
  border-radius: 4rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
}

.special2_list {
  counter-reset: list;
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  font-size: 4rem;
  line-height: 1.7;
}

.special2_list li {
  position: relative;
  padding: 2rem 2rem 2rem 7.5rem;
  /* 左に余白を追加（4rem文字に合わせて拡大） */
  margin: 2rem 0;
  font-weight: bold;
  border-bottom: dashed 1px #ccc;
}

.special2_list li::before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 4.5rem;
  /* バッジを4rem文字に合わせて拡大 */
  height: 4.5rem;
  line-height: 4.5rem;
  border-radius: 50%;
  text-align: center;

  background: #fff;
  color: #333;
  font-size: 3rem;
  /* 数字は少し小さめで調整 */
}


/* アコーディオンエリアの設定 */
.ac_area {
  display: none;
  color: #333;
}

.ac_inner:first-child {
  padding: 0rem;
}

/* フォームボタンの文言・アイコン */
/* フォームボタンの文言・アイコン */

.cta_btn:before {
  background-image: none;
  content: "";
  background-color: var(--white);
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.cta_btn:after {
  content: "";
  background-color: var(--white);
  width: 2px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 30px;
}

.cta_btn.opened::after {
  content: none;
}

.cta_btn span {
  display: block;
}

.cta_btn.opened {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

}


.cta_btn {
  display: block;
  width: 100%;
  background: var(--black);
  border: 1px solid var(--white);
  font-weight: bold;
  color: var(--white);
  line-height: 1.6;
  padding: 2rem 0;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  z-index: 10;
  text-decoration: none;
  border-radius: 6px;
  font-size: 4.2rem;
  text-align: center;
}

.cta_btn:hover {
  filter: brightness(1.3);
}

#special2 .grid {
  grid-template-columns: 1fr 5.5fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px dashed var(--gold3);
  padding: 2rem 0;
}

#special2 .grid .num {
  background: linear-gradient(to right, var(--gold3) 0%, var(--gold4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: serif;
  font-size: 180%;
  font-style: italic;
  width: auto;
  height: auto;
  display: inline-block;
  /* ← これ重要 */
  overflow: visible;
  /* ← 欠け防止 */
  padding-right: 0.2em;


}


/* -- offer --*/
#offer {
  padding: 0;
}

#offer .bg_blk2 {
  padding-bottom: 12rem;
}

#offer .bg_r2 {
  padding-top: 10rem;
  padding-bottom: 12rem;
  background-color: #630005;
}

#offer .bg_gl2 {
  padding-top: 10rem;
  padding-bottom: 12rem;
}

#offer .sale_price .bg_grad_gold2 {
  padding: 2rem 0;
  text-shadow: 0 0px 5px #333;
}

/* -- pay --*/
#pay {
  padding-top: 0;
}

#pay .bg_gry {
  padding: 10rem 0;
}

#pay .lead {
  padding: 3rem 0;

}

#pay .box_wrap {
  box-shadow: 0.5rem 0.5rem 0.5rem 0.1rem rgb(0, 0, 0, 0.2);
}

.box {
  padding: 4rem 3rem;
}

#offer .btn_wrap .btn_ft {
  width: 100%;
}

/* 黒系ボタン */
.bg_blk2 .btn_wrap .btn_ft {
  /* background: #4f4f4f;
  border-radius: 2rem;
  box-shadow: 0 5px 0 #3c3c3c, 0 2px 10px rgba(255, 255, 255, 0.1) inset; */
  color: #fff;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
  padding: 2rem 0;
}

.btn_wrap .letter_btn.no-icon::before {
  display: none;
}

.pack-select .btn_wrap .btn_ft {
  padding: 0 5rem;
  padding-left: 8rem;
}

/* 料金/*form
----------------------------------------------------------------------------------------------*/
.price-table {
  width: 100%;
  margin: 20px auto 0;
  border: 2px solid var(--red);
  line-height: 1.3;
  background: var(--white);
}

.price-table th {
  background: var(--red);
  color: var(--white);
  font-weight: bold;
  padding: 5px
}

.price-table tr:nth-child(2n) {
  background: #f8f8f8;
}

.price-table td {
  padding: 1rem 1.5rem;
  vertical-align: middle
}

.price-table td .small {
  font-size: 60%
}

.price-table td:nth-child(odd) {
  width: 63%;
  font-size: 2rem
}

.price-table td:nth-child(even) {
  width: 30%;
  text-align: center;
  font-size: 2.2rem;
  border-left: 3px dotted #ddd;
}

.price-table td .small {
  font-size: 75%
}

.price-table .bg_red {
  display: block;
  background: var(--red);
  padding: .5rem .5rem 0;
  margin: 0 0 .5rem;
  color: var(--white);
  font-size: 4rem;
  font-weight: bold
}

tr.price-table-result td {
  padding: 2rem;
  text-align: center
}

.price_box {
  /* margin: 4rem auto 2rem */
}

.price_result {
  margin: 0 auto;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  position: relative;
  padding-top: 1rem
}

.price_result_main {
  font-size: 6rem;
  line-height: 1;
  margin: 0 0 0 13rem;
  color: var(--black);
}

.price_result_sub {
  margin-top: 0;
  font-size: 4.5rem;
  text-align: right;
  line-height: 1
}

.price_notice {
  padding: 3rem;
  margin: 2rem auto 0;
  background: var(--white)6f6
}

.price_notice p {
  padding: 0 0 0 1em;
  margin: 0 auto;
  font-size: 2.2rem;
  text-indent: -1em
}

/*月々約*/
.price_monthly {
  background: var(--black);
  width: 110px;
  height: 110px;
  border-radius: 200px;
  position: absolute;
  color: var(--white);
  line-height: 110px;
  text-align: center;
  font-size: 3rem;
  top: 0
}

/*amazon風料金*/
.am_price {
  margin: 0 auto;
  font-family: Arial, Helvetica, "sans-serif";
  position: relative;
  padding-top: 2rem;
  max-width: 560px;
  width: 100%;
}

.am_price_description {
  justify-content: start;
  align-items: center;
  margin-bottom: 2rem
}

.am_price_description_ttl {
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
  font-size: 4rem;
  margin-right: 1rem;
  border-radius: 4px
}

.am_price_box {
  font-size: 13rem;
  line-height: 1
}

.am_price_total {
  font-size: 13rem;
}

.am_price_symbol,
.am_price_symbol2,
.am_price_symbol3 {
  font-size: 41%;
  top: -1rem;
  position: relative
}

.am_price_symbol3 {
  font-size: 60%;
}

.am_price_result_sub,
.am_price_result_sub2 {
  margin: 1rem auto 0;
  font-size: 3rem;
  line-height: 1;
  text-align: left;
  color: #565959
}

.am_price span.r {
  color: var(--red);
}

.am_price_list {
  margin: 0 auto
}

.am_price_list li {
  position: relative;
  padding: .3rem 0 0 3rem;
  line-height: 1.4;
  font-size: 3rem;
  color: #1a6171
}

.am_price_list li:before,
.list1 li:after {
  content: "";
  position: absolute
}

.am_price_list li:before {
  top: 1.2rem;
  left: .5rem;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  width: 1.4rem;
  height: 2.2rem;
  border-right: 3px solid #1a6171;
  border-bottom: 3px solid #1a6171
}

.am_price_list li:after {
  left: 0;
  top: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #626161;
  border-radius: 2px
}

.am_price_list li:last-child {
  padding-bottom: 0
}

.price_label {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 2rem 0
}

.am_price_list {
  margin-top: 1rem
}

.am_price_main {
  font-weight: bold;
}

p.am_price_main2 {
  font-size: 3rem;
  text-align: right;
  margin-top: 1rem
}

/* Footer
------------------------- */
footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #dddddd;
  color: #707070;
  padding: 5rem;
}

#footer_logo {
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

#footer_info p {
  font-size: 2rem;
  text-align: center;
}

#footer_info ul {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
}

#footer_info ul li a {
  display: block;
  padding: 0.5em;
  font-size: 3rem;
  text-align: center;
  color: inherit !important;
  text-decoration: none;
}

#footer_info p a {
  color: inherit !important;
  text-decoration: none;
}

/* Scfooter
------------------------- */
#scfooter {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2rem);
  position: sticky;
  bottom: 0;
  max-width: var(--contentWidth);
  margin-inline: auto;
  padding: 3rem 0;
  z-index: 100;
  display: none;
}

#scfooter .btn_wrap {
  margin-top: 0;
}



/*アニメーション*/
/* ----------------------------------------------------
ふわっと表示
------------------------------------------------------ */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.loop-bg {
  height: 20rem;
  background: url("../img/mock.png") repeat-x 0 50%;
  background-size: 185rem auto;
  --tile-w: 1900px;
  animation: bgscroll 60s linear infinite;
  position: relative;
  margin-top: -84rem;
  z-index: 10;
  background-color: transparent;
}

@keyframes bgscroll {
  from {
    background-position: 0 50%;
  }

  to {
    background-position: calc(var(--tile-w) * -1) 50%;
  }
}


/* -- lineup --*/
.lineup {
  padding: 5rem 0;
  font-size: 4.2rem;
}

.lineup .table_wrap {
  max-height: 60rem;
  overflow: hidden;

}

.lineup table {
  width: 100%;
  font-size: 3.2rem;

}

.lineup .table_wrap table {
  border: 1px solid #000;
  display: block;
  max-height: 60rem;
  overflow-y: auto;
}

.lineup table th,
.lineup table td {
  padding: 0.5em;
}

.lineup table th {
  width: 30%;
  text-align: center;
}

.lineup table td {
  width: 45%;
}

.lineup table thead {
  width: 100%;
}

.lineup table thead th {
  background-color: var(--black);
  color: var(--white);
  padding: 1em 0.5em;
}

.lineup table thead th:nth-child(2) {
  width: 45%;
}

.lineup table thead th:nth-child(3) {
  width: 25%;
}

.lineup table tbody tr:nth-child(2n) {
  background-color: #f1f1f1;
}

.lineup table tbody td {
  text-align: left;
}

.lineup_badge img {
  max-width: 60px;
  width: 100%;
}

.lineup table .lineup_badge {
  width: 25%;
  text-align: center;
}

.budge_list {
  justify-content: space-between;
}

.budge_list__item img {
  max-width: 20px;
}

/* ac_wrap and grid styles for secret pack */
.ac_wrap {
  margin-top: 3rem;
}

.bg_wht {
  background: #fff;
  color: #333;
}

.grid {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}

.grid.bottom {
  border-bottom: 1px solid #eee;
}

.grid:last-child {
  border-bottom: none;
}

.num {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  margin-right: 3rem;
  flex-shrink: 0;
}

.grad_gold2 {
  background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
}

.font80 {
  font-size: 3.2rem;
  line-height: 1.4;
}