@charset "UTF-8";
html{
 overflow:auto;
 /* scroll-behavior: smooth; */
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  overflow-x:hidden;
  background-color: #152F42;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a{
  color: #415A9E;
}

a:hover{
  text-decoration: none;
}

a:visited{
  color: #415A9E;
}

p{
  font-size: 13px;
  text-align: justify;
  line-height: 170%;
}

img{
  width: 100%;
}

.img_link{
  margin-bottom: 14px;
}

.img_link:hover{
  opacity: 0.8;
  transition-duration: 0.4s;
}

.pc{
  display: none !important;
}
.sp{
  display: block !important;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  gap: 100px;
  margin-top: 100px;
}

/*/////////
　画像アスペクト比保持
/////////*/

.img-wrapper {
  display: flex;
  justify-content: center;
}


/*/////////
　導入
/////////*/

.introduction{
  color: #fff;
}

.introduction p{
  text-align: center;
  font-size: 13px;
  letter-spacing: 4%;
  line-height: 340%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.introduction.js-lines-parent p {
  overflow: hidden;
}

/* 分割された各行 */
.js-line-wrapper {
  display: block; /* 1行として扱う */
  opacity: 0;
  transform: translateY(30px); /* 少し下から */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* クラスがついたら表示 */
.introduction.is-show .js-line-wrapper {
  opacity: 1;
  transform: translateY(0);
}


/*/////////
　注意文言
/////////*/

.attention p {
  margin: 0 0 10px 0;
  text-indent: -12px;
  font-size: 12px;
  padding-left: 12px;
}

.attention p:last-child {
  margin-bottom: 0;
}


/*/////////
　箇条書きリスト
/////////*/

.list p {
  margin: 0 0 10px 0;
  text-indent: -13px;
  padding-left: 13px;
}

.list p:last-child {
  margin-bottom: 0;
}


/*/////////
　ボタン
/////////*/


.btn {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 0;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .15);
  border-radius: 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  line-height: 20px;
  position: relative;
  padding-right: 20px;
  box-sizing: border-box;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn:hover{
  opacity: 0.8;
  transition-duration: 0.4s;
  text-decoration: none;
}

.btn:visited{
  color: #fff
}


/*/////////
　固定ボタン
/////////*/

.fixed-buttons {
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fixed-buttons.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fixed-buttons a {
  transition: transform 0.2s ease;
}

.fixed-buttons img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-button-apply { 
  width: 90px;
}

.fixed-button-cq {
  width: 140px;
}

.fixed-button-cq-2 {
  width: 140px;
  margin-bottom: 10px;
}

.no-transition, 
.no-transition * {
  transition: none !important;
}


/*/////////
　アンカー
/////////*/

/* introduction全体の初期状態 */
.js-lines-parent {
  opacity: 0;
  transition: opacity 0.5s ease; /* 親要素自体もふわっと出す場合 */
}

/* クラスがついたら親を表示 */
.js-lines-parent.is-show {
  opacity: 1;
}

/* 各行のアニメーション */
.js-line-wrapper {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 行の表示 */
.js-lines-parent.is-show .js-line-wrapper {
  opacity: 1;
  transform: translateY(0);
}

/* アンカーグループ */
.anchor-group {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.anchor-group.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.anker_campaign{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.anker_event{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.anker_lottery{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, .25);
  padding: 20px;
  border-radius: 30px;
  color: #fff;
  margin-top: 20px;
}

.anker_lottery_ttl{
  font-size: 16px;
  font-weight: 500;
}

.anker_lottery_txt{
  padding: 0 14px;
  font-size: 12px;
  font-weight: 300;
}

/* 初期状態は非表示 */
.tab-content {
  display: none;
}

/* activeクラスがついているものだけ表示 */
.tab-content.active {
  display: flex !important;
}

/* コンテンツのスクロール位置調整*/
.tab-content,#lottery-section {
  scroll-margin-top: 76px; 
}

.tab-btn img {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.tab-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.attention_anker p {
  margin: 0 0 10px 0;
  text-indent: -12px;
  font-size: 12px;
  padding: 0 20px;
  color: #fff;
}

.attention_anker p:last-child {
  margin-bottom: 0;
}



/*/////////
　タブボタン
/////////*/

.tab-group {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .1);
}

.tab-btn-kids{
  background-image: linear-gradient(0deg, #FF64AA, #EAA96F);
}

.tab-btn-sign{
  background-image: linear-gradient(0deg, #008CD8, #24EADD);
}

.tab-btn-cq{
  background-image: linear-gradient(0deg, #00A1AD, #A3FF89);
}

.tab-btn-benefits{
  background-image: linear-gradient(0deg, #F25C23, #FFF279);
}

/* 表示状態 */
.tab-group.is-show {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

/* ボタン4等分 */
.tab-group .tab-btn {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

@keyframes underline-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.tab-group .tab-btn p {
  text-align: center;
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 110%;
}

.tab-group .tab-btn.active p {
  padding-bottom: 8px;
}

.tab-group .tab-btn p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease;
}

.tab-group.is-show .tab-btn.active p::after {
  animation: underline-grow 0.3s ease 0.1s forwards; 
}


/*/////////
　カウントダウン
/////////*/

#cqbank{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.countdown_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(213, 234, 228, .3);
  border: 1px solid #1FE7B3;
  border-radius: 20px;
  padding: 30px 20px 20px 20px;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
}

.countdown_ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  white-space: nowrap;
}

/* カウントダウン関数のスタイル↓ */
#counter{
  text-align: center;
  line-height: 1.2;
}
/* あと */
.count-label-prefix { 
  font-size: 20px;
  color: #fff; 
  font-weight: 600;
  margin-bottom: -10px;
}
/* 日数 */
.count-number {
  font-size: 70px;
  color: #FFFF94;
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings:
    "YOPQ" 300;
}
/* 日 */
.count-label-suffix {
  font-size: 50px; 
  color: #FFFF94;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}
/* 本日開催 */
.count-today { 
  font-size: 36px;
  font-weight: 900;
  color: #FFFF94;
}
/* ↑カウントダウン関数のスタイルここまで */

.countdown{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* CQ BANK DAYロゴ */
.countdown_ttl .img-wrapper {
  display: flex;
  width: 80%;
  justify-content: center;
}

/* グッドドッグ */
.countdown .img-wrapper {
  display: flex;
  width: 34%;
  justify-content: center;
}

.countdwn_link{
  color: #fff;
}

.countdwn_link a{
  color: #fff;
}


/*/////////
　CQ BANKとは？
/////////*/

.what_cq{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.what_cq_ttl{
  font-size: 18px;
  font-weight: 800;
  background-color: #1FE7B3;
  padding: 10px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.what_cq_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #D5EAE4;
  padding: 20px;
  gap: 20px;
}

.what_cq .btn:visited{
  color: #333;
}

.explanation_cq{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.explanation_cq img{
  width: 130%;
}

.cq_x_ui{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #C8E2DA;
  padding: 20px;
  gap: 10px;
}

.btn_cq{
  background: linear-gradient(#00FFBD, #00DFA5);
  color: #333;
}

.btn_cq:after{
  right: 80px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}


/*/////////
　コンテンツ共通
/////////*/

#content-kids, #content-sign, #content-cq, #content-benefits {
  flex-direction: column;
  align-items: center;
}

.present{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.entry_period{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin: 16px 0;
}

.entry_period_ttl{
  background-color: #333;
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  font-weight: 500;
  line-height: 120%;
}

.entry_period_date{
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

/*参加方法*/
.apply{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #FFE6F1;
  border-radius: 30px;
  gap: 14px;
}

.apply_ttl{
  font-size: 16px;
  color: #7E3D59;
  font-weight: 900;
}

.apply_step{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: #fff;
  border-radius: 24px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

.apply_step_icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FF85BC;
  text-align: center;
  color: #fff;
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: 5%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.apply_step_icon span{
  font-size: 20px;
  font-weight: 900;
}

.apply_step_ttl{
  font-weight: 700;
  font-size: 14px;
}

/*キャンペーン詳細*/
.detail_box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.detail{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.detail_ttl{
  width: 100%;
  box-sizing: border-box;
  padding: 4px 2px;
  background-color: #c9799d;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.detail_separator{
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.detail_separator_ttl{
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  font-weight: 600;
  text-align: center;
}

/*当日のご案内*/
.guidance{
  padding: 20px;
  border-radius: 30px;
  background-color: #fff;
}

.guidance_ttl{
  color: #FF2989;
  border-bottom: 1px solid #FF2989;
  padding-bottom: 6px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.guidance_txt{
  font-weight: 500;
  margin-bottom: 10px;
}

/*詳細のアコーディオン（一部）*/
.accordion_container_detail summary{
  font-size: 12px;
  padding: 8px 50px 8px 30px;
  color: #333;
}

.accordion_container_detail summary::after{
  right: 30px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

/*/////////
　注意事項（アコーディオン）
/////////*/

.accordion_container {
  background-color: #F4E7ED;
}

.accordion_container, 
details {
  display: block !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: 100% !important;
}

summary {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  position: relative;
  cursor: pointer;
  color: #A54876;
  font-weight: bold;
  font-size: 13px;
  list-style: none;
    padding: 10px 20px 10px 0;
  box-sizing: border-box;
}

summary::after {
  content: "";
  position: absolute;
  right: 40px; 
  top: 44%;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #A54876;
  border-right: 2px solid #A54876;
  transform-origin: center center;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.2s;
}

summary::-webkit-details-marker { display: none; }

details[open] summary::after {
  transform: translateY(30%) rotate(-45deg);
}

.content {
  padding: 20px;
  padding-left: 28px;
}

.content p {
  margin: 0 0 10px 0;
  text-indent: -13px;
}

.content p:last-child {
  margin-bottom: 0;
}

.accordion_inquiry {
  margin-left: -28px;
  margin-right: -20px;
  padding: 0 20px; 
  text-indent: 0;
  display: flex;
  flex-direction: column;
}

.accordion_inquiry p {
  text-indent: 0 !important;
  margin: 0;
}

.accordion_inquiry_ttl {
  font-weight: bold;
  margin-bottom: 4px;
  color: #A54876;
}


/*/////////
　スタメンキッズ
/////////*/

.content-kids{
  background-color: #FDF2F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 32px;
}

.btn_kids{
  background: linear-gradient(#FFA1CB, #FF2989);
}

.kids_apply{
  padding: 16px;
  background-color: #F4E7ED;
  margin-top: 14px;
}

.kids_apply_ttl{
  font-weight: 700;
  text-align: center;
}

.kids_apply_txt{
  color: #FF4700;
  font-weight: 700;
}


/*/////////
　サイン会
/////////*/

.content-sign{
  background-color: #E6EFF5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 32px;
}

.btn_sign{
  background: linear-gradient(#4CC0FF, #008CD8);
}

.apply_step_sign{
  display: flex;
  flex-direction: column;
}

.apply_step_sign_2{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

/* モーダル */
.modal-trigger {
  position: relative;
  display: inline-block;
  padding: 16px 0;
  padding-right: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #36417D;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 50px;
  width: 100%;
  border: 1px solid #1C3D6B;
  font-size: 14px;
}

.modal-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: 
    linear-gradient(to bottom, transparent 6px, #36417D 6px, #36417D 8px, transparent 8px),
    linear-gradient(to right, transparent 6px, #36417D 6px, #36417D 8px, transparent 8px);
}

.modal_btn_cq{
  border: 1px solid #00544b;
  color: #00544b;
  background-color: #e8f4f1;
}

.modal_btn_cq::after{
  background: 
    linear-gradient(to bottom, transparent 6px, #00544b 6px, #00544b 8px, transparent 8px),
    linear-gradient(to right, transparent 6px, #00544b 6px, #00544b 8px, transparent 8px);
}

.flow_modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.flow_modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.flow_modal-content {
  background: #fff;
  padding: 20px;
  width: 75%;
  max-width: 600px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.flow_modal-content.is-cq {
  background-color: #ACF9CF;
}

.modal-close-btn {
  position: sticky;
  top: 0;
  left: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  margin-top: -20px;
  margin-right: -10px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.modal-close-btn:focus {
  outline: none;
  box-shadow: none;
}
/* モーダルここまで */

.detail_ttl_sign{
  background-color: #549cc9;
}

.sign_present{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.sign_present_ttl{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: 5%;
  font-feature-settings: "palt";
}

.sign_present_ttl span{
  font-size: 14px;
  font-weight: 700;
}

.sign_present_ttlimg{
  height: 45px;
  width: auto;
}

.numberofwinners{
  font-size: 14px;
  font-weight: 700;
}

.winning_ttl{
  font-weight: 600;
  margin-bottom: 10px;
  color: #1C3D6B;
}

.accordion_container_sign{
  background-color: #D5E2EB;
}

.accordion_container_sign summary{
  color: #1C3D6B;
}

.accordion_container_sign summary::after {
    border-top: 2px solid #1C3D6B;
    border-right: 2px solid #1C3D6B;
}


/*/////////
　cqブース
/////////*/

.content-cq{
  background-color: #ECF7F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 32px;
}

.detail_cq{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.detail_ttl_cq{
  background-color: #37C39E;
}

.detail_cq_A{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #37C39E;
  background-color: #e2f7ef;
  border-radius: 30px;
  gap: 20px;
}

.detail_cq_B{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #37C39E;
  background-color: #E2F6F4;
  border-radius: 30px;
  gap: 20px;
}

.cq_present{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.cq_present_ttl{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: 5%;
  font-feature-settings: "palt";
  color: #00A379;
}

.cq_present_ttl span{
  font-size: 14px;
  font-weight: 700;
}

.cq_present_ttlimg{
  height: 45px;
}

.content_cq {
  padding: 20px;
}

.cq_benefits{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.detail_separator_ttl_cq{
  border-bottom: 1px solid #4b4b4b;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 4px;
}

.accordion_container_cq{
  background-color: #dcece8;
}

.accordion_container_cq summary{
  color: #0b6f76;
}

.accordion_container_cq summary::after {
    border-top: 2px solid #0b6f76;
    border-right: 2px solid #0b6f76;
}


/*/////////
　来場特典
/////////*/

.content-benefits{
  background-color: #FFF6F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 32px;
}

#lottery-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lottery_guidance{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 30px;
  background-color: #FFEEE8;
}

.lottery_guidance_ttl{
  color: #FB380F;
  border-bottom: 1px solid #FB380F;
  padding-bottom: 6px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  width: 100%;
}

.lottery_guidance_txt{
  font-weight: 500;
  text-align: center;
}

.lottery_guidance_section{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lottery_guidance_section_ttl_place{
  color: #FB4F2A;
  font-weight: 700;
}

.lottery_guidance_section_ttl_time{
  color: #FB4F2A;
  font-weight: 700;
}

.lottery_guidance_section_ttl_place::before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 4px;
  margin-bottom: 1px;
  color: #FB4F2A;
  font-size: 14px;
  display: inline-block;
}

.lottery_guidance_section_ttl_time::before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 4px;
  margin-bottom: 1px;
  color: #FB4F2A;
  font-size: 14px;
  display: inline-block;
}


/*/////////
　注意事項・コンタクト
/////////*/

#contact{
  background-color: #D2D9DF;
  padding: 20px;
}

.dial{
  padding: 16px;
  background-color: #C3CCD4;
  margin-bottom: 16px;
}

.dial_ttl{
  font-weight: 700;
  margin-bottom: 8px;
}

.dial_time{
  border-top: 1px solid #333;
  padding-top: 10px;
}


/*/////////
　フッター
/////////*/

footer{
  margin-bottom: 20px;
}

footer img{
    width: 40%;
    margin-left: -10px;
    margin-bottom: 10px;
}

footer p{
  color: #fff;
  font-size: 11px;
  font-weight: 300;
}

footer .attention p{
  font-size: 11px;
}

.footer_container{
  margin-bottom: 10px;
}

.footer_container_ttl{
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

footer a{
  color: #fff;
}


@media screen and (min-width:451px) {
  html{
    background-image: url(../img/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
  }

  body{
    max-width:450px;
    margin: 0 auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .1);
    position: relative;
  }

  .sp{
    display: none !important;
  }
  .pc{
    display: block !important;
  }

  .tab-group {
  max-width: 450px;
}

.explanation_cq img{
  width: 100%;
}

.cq_x_ui img{
  width: 80%;
}

/* カウントダウン */
#counter{
  line-height: 1.1;
}

/* あと */
.count-label-prefix { 
  font-size: 30px;
}

/* 日数 */
.count-number {
  font-size: 90px;
}
/* 日 */
.count-label-suffix {
  font-size: 60px; 
}
/* 本日開催 */
.count-today { 
  font-size: 36px;
}

/* 固定ボタン */
.fixed-buttons {
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    bottom: 0px;
    margin-left: 235px;     
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
    transform: translateY(20px);
    padding: 0;
  }

  .fixed-buttons.is-active {
    transform: translateY(0);
  }

  .fixed-button-apply {
    position: static;
    width: 100px; 
  }

  .fixed-button-cq {
    position: static;
    width: 150px; 
  }

  .fixed-button-cq-2 {
  width: 160px;
  margin-bottom: 20px;
  }

/* モーダル */
  .flow_modal-content {
  max-width: 350px;
  max-height: 80vh;
}


}
