/* 
  Tailwind CSS v3.4.1 Standalone 
  このファイルはCDNを使わずにローカルで修正できるように作成されました。
  基本的なTailwindのクラスと、このアプリ専用のスタイルが含まれています。
*/

/* --- アプリ専用のカスタムスタイル --- */
.striped-progress {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}

.menu-item:active {
  background-color: #f3f4f6;
}


/*==================================================
common
================================================== */

:root{
    --color-red01: #d70c25;
    --color-gray01: #f4f4f4;
    --color-gray02: #999;
}

/*#header{
    padding-top: 54px;
}

#hm-bar{
    top: -54px;
}*/

.clearfix:after{
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden;
}

.clearfix {
min-height: 1px;
}

* html .clearfix{
height: 1px;
/*\*//*/
height: auto;
overflow: hidden;
/**/
}

p{margin:0 0 15px; }

.cb{clear:both;}


img{
border:0;
outline:none;
}


.sp-only{display: none !important ;}
@media only screen and (max-width: 480px) {
.sp-only{display: inline !important;}
.pc-only{display: none !important ;}
}
.br-tab {
	display: none;
}

  .br-pc { display:block; }
  .br-sp { display:none; }

@media screen and (max-width: 768px){	
  .br-pc { display:none; }
  .br-tab { display:block; }
}
@media screen and (max-width: 480px){	
  .br-tab { display:none; }
  .br-sp { display:block; }
}

/* --- btn --- */

.btn{
    background-color: var(--color-red01);
    color: #fff;
    cursor: pointer;
    display: block;
	transition: 0.5s;
    text-decoration: none;
    position: relative;
	text-align: center;
    border-radius: 30px;
    padding: 14px 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.0rem;
    font-weight: bold;
}

.btn.btn-black{
    background-color: #000;
}

.btn.btn-gray{
    background-color: var(--color-gray01);
    color: #000;
}

.btn.btn-small{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    box-sizing: border-box;
    font-size: 0.9rem;
}



/* --- contents-area --- */

.contents-area{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.box-w{
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
}



/* --- bg --- */

.bg-red{
    background-color: var(--color-red01);
}

.bg-gray{
    background-color: var(--color-gray01);
}

/* --- color --- */

.fc-red{
    color: var(--color-red01);
}

.fc-gray{
    color: var(--color-gray02);
}


/* --- list --- */

ol{
    list-style-type: decimal !important;
}


/* --- card --- */

.card{
    border-radius: 12px;
    box-shadow: 0px 0px 10px -5px #b2b2b2;
    border: 2px solid var(--color-gray01);
    margin-bottom: 25px;
}


/*==================================================
header
================================================== */

#header-card{
    position: relative;
}

#header-card-r{
    padding-left: 0;
}

#header-card-l{
    width: 24.5%;
    position: absolute;
    top: 0;
    left: 0;
}

#box-prof-pic{
    width: 100%;
    aspect-ratio: 1 / 1;
}

#box-prof-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #f9d746;
}

#page #header{
    background-color: var(--color-red01);
}


/*==================================================
footer
================================================== */






/*==================================================
register
================================================== */

.popo-register{
    width: 24%;
    position: absolute;
    z-index: 1;
    left: 38%;
    top: -5px;
}

.box-top-popo{
    padding-top: 35px;
}

#page-register,
#page-login{
    padding-top: 55px;
}


/*==================================================
news
================================================== */



.head-news{
    background-color: var(--color-gray01);
    padding: 8px 10px;
    border-radius: 10px 10px 0 0;
}

.body-news{
    padding: 10px 12px;
    line-height: 1.6;
}


/*==================================================
tab
================================================== */

.tabs {
  width: 100%;
}

/* radio非表示 */
.tabs input {
  display: none !important;
}

/* タブボタン */
.tabs > label {
  display: inline-block;
  padding: 6px 10px 5px;
    border: 1px solid var(--color-red01);
    border-radius: 30px;
  cursor: pointer;
  background: #fff;
  margin-right: 3px;
  transition: 0.3s;
    font-size: 0.85rem;
    line-height: 1;
}

/* activeタブ */
#score-tab:checked + label,
#new-tab:checked + label,
#point-tab:checked + label {
    color: #fff;
  background-color: var(--color-red01);
}

/* コンテンツ共通 */
.contents {
  display: block !important;
  padding: 20px 0;
  position: relative;
}

/* コンテンツ非表示 */
.content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 表示制御 */
#score-tab:checked ~ .contents .content1,
#new-tab:checked ~ .contents .content2,
#point-tab:checked ~ .contents .content3 {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* banner-detail-tab 表示制御 */
#banner-detail-tab #tab1:checked ~ .contents .content1,
#banner-detail-tab #tab2:checked ~ .contents .content2,
#banner-detail-tab #tab3:checked ~ .contents .content3 {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


#banner-detail-tab.tabs label {
  display: inline-block;
  padding: 15px 20px 13px;
    border: none;
    border-radius: 5px 5px 0 0;
  cursor: pointer;
  background: var(--color-gray01);
  margin-right: 0;
  transition: 0.3s;
    font-size: 0.85rem;
    line-height: 1;
}

/* activeタブ */
#banner-detail-tab #tab1:checked + label,
#banner-detail-tab #tab2:checked + label,
#banner-detail-tab #tab3:checked + label {
    color: #fff;
  background-color: #000;
}
#banner-detail-tab .contents {
    border: 1px solid #000;
    padding: 15px;
    font-size: 0.85rem;
}


#passbook-list.tabs > label {
  display: inline-block;
  padding: 15px 20px 13px;
    border: none;
    border-radius: 5px 5px 0 0;
  cursor: pointer;
  background: var(--color-gray01);
  margin-right: 0;
  transition: 0.3s;
    font-size: 0.85rem;
    line-height: 1;
}

/* activeタブ */
#passbook-list #tab1:checked + label,
#passbook-list #tab2:checked + label,
#passbook-list #tab3:checked + label {
    color: #fff;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
#passbook-list .contents {
    border: 1px solid rgb(249 115 22 / var(--tw-bg-opacity, 1));
    padding: 15px;
    font-size: 0.85rem;
}



#passbook-list .content input {
  display: inline !important;
}


/*==================================================
mypage
================================================== */

#my-menu a{
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}


.title {
    margin-top: 3rem;
    align-items: center;
    border-top: 3px solid rgb(215 12 37 / var(--tw-border-opacity, 1));
    background: #fff;
    color: #2c4256;
    padding: 8px 10px;
    justify-content: space-between
}

#breadcrumb li:last-child,.title.bg_no {
    background: 0 0
}

.title.bg_no {
    padding-bottom: 5px
}

.title h2 {
    font-family: 'M PLUS 1p',sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 2em
}

.title h2 img {
    margin-right: 2%;
    vertical-align: text-top;
    width: 6vw;
    max-width: 1.6em
}

.title span {
    font-size: .8rem;
    position: absolute;
    right: 2%
}

.title-main {
    margin: 10px 0;
    font-size: 16px
}

p.error-txt {
  width: 100%;
  border: 2px solid #c91e00;
  border-radius: 8px;
  padding: 6px 8px;
  color: #c91e00;
  background: #ffede7;
  font-size: 13px;
  line-height: 1.4em;
  margin: 10px auto;
  font-weight: 700
}

p.not-found {
  width: 100%;
  border: 1px solid #eaebdd;
  border-top: #eaebdd 4px solid;
  padding: 20px 30px;
  color: #444;
  background: #fff;
  line-height: 2em;
  margin: 15px auto;
  font-size: 16px
}

/* --- エラーページ（/error/common など） --- */

#error-page {
  width: 94%;
  margin: 15px auto 40px;
  padding: 20px 16px;
  box-sizing: border-box;
  background: var(--color-gray01);
  border-radius: 12px;
  text-align: center
}

#error-page h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
  color: #222
}

#error-page p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.9;
  color: #555;
  word-break: break-all
}

#error-page .btn-box {
  display: block;
  margin: 24px auto 0
}

#error-page .btn-box a.top_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  margin: 0 auto;
  padding: 10px 16px;
  box-sizing: border-box;
  border-radius: 30px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .3s
}

#error-page .btn-box a.top_link:hover {
  background: #444
}

/* --- メンテナンスページ（/error/maintenance） --- */

#maintenance-page {
  width: 94%;
  margin: 15px auto 40px;
  padding: 20px 16px;
  box-sizing: border-box;
  background: var(--color-gray01);
  border-radius: 12px;
  text-align: center
}

#maintenance-page h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
  color: #222
}

#maintenance-page img {
  display: block;
  width: auto;
  max-width: 70%;
  height: auto;
  margin: 16px auto
}

#maintenance-page p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.9;
  color: #555
}

#maintenance-page .txtbox {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #fff5f5;
  border-radius: 12px;
  color: #e60012
}

#maintenance-page .txtbox strong {
  font-weight: 900
}
/* スライドメニュー内 検索窓（form.css の height:50px を上書き） */
#sidebar #ss_search {
  height: 35px;
  background: transparent
}

/* スライドメニュー内 お得情報ボタン */
#sidebar .deal-btn {
  animation: deal-btn-pulse 2.2s ease-in-out infinite
}

#sidebar .deal-btn .deal-arrow {
  animation: deal-arrow-slide 1.4s ease-in-out infinite
}

@keyframes deal-btn-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .55)
  }
  60% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0)
  }
}

@keyframes deal-arrow-slide {
  0%, 100% {
    transform: translateX(0);
    opacity: .5
  }
  50% {
    transform: translateX(5px);
    opacity: 1
  }
}

@media (prefers-reduced-motion: reduce) {
  #sidebar .deal-btn,
  #sidebar .deal-btn .deal-arrow {
    animation: none
  }
}
