@charset "utf-8";
:root{
    --qr-color:#fcd6fc;
    --footer-bgcolor:#926544;

    --color-black:#000000;
    --color-white:#ffffff;
    --color-red:#FF0000;
    --color-pink:#ED008C;
    --color-gray: #000000;

    --color-light-white:#DEDEDE;
    
}


body{
    background-color: var(--color-white);

    /* font-size: 0.7rem; */
}
.bg-navi {
    background-color: #FFF4DE;
}

.alert-success {
    font-size: 1.5rem;
}
.total-h2{
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px){
    .total-h2{
        font-size: 1.8rem;
    }
}

.navbar-dark .navbar-brand, 
.navbar-dark .navbar-brand:focus, 
.navbar-dark .navbar-brand:hover {
    color: var(--color-black);
}


/* 細かく調節 */
@media only screen and (max-width: 319px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
}
@media only screen and (min-width: 320px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
}
@media only screen and (min-width: 375px) {
    .navbar-brand {
        font-size: 1.125rem;
    }
}



.navbar-brand-span{
    color: #23B5E6;
    border-bottom: 1px solid #23B5E6;
}


.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(146, 101, 68, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.pointer-events-none{
    pointer-events: none;
}
#app .py-4{
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

@media (min-width: 768px){
    .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(152, 251, 152, 0.075);
}

/*----------------------------------
**  テーブルのセル幅
**----------------------------------*/
table .cw-2{
    min-width: 4rem;
}
table .cw-3{
    min-width: 5rem;
}
table .cw-4{
    min-width: 6rem;
}
table .cw-5{
    min-width: 7rem;
}
table .cw-6{
    min-width: 8rem;
}
table .cw-7{
    min-width: 9rem;
}
table .cw-8{
    min-width: 10rem;
}

/*----------------------------------
**  表示自体を隠しておきたいものに適用
**----------------------------------*/
.display-always-none{
    display: none;
  }
  
  /*----------------------------------
  **  サイズで表示を消す
  **----------------------------------*/
  @media (max-width: 575px) {
    .display-sp-none{
        display: none;
    }
  }
  @media (min-width: 576px) {
    .display-sm-none {
        display: none;
    }
  }
  @media (min-width: 768px) {
    .display-md-none {
        padding: 3rem;
    }
  }
  @media (min-width: 992px) {
    .display-lg-none {
        max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .display-xl-none {
        max-width: 1140px;
    }
  }
  
  /* .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  
  .col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  
  .col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  
  .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  } */
/*--------------------------------------------------------------
管理画面  一覧 スマホの時の表示変更
--------------------------------------------------------------*/
@media (max-width: 575px) {
    .master-list tr{
        text-align: left;
        display: grid;
    }
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
    width:70%;
    height: 100vh;/*ナビの高さ*/
    background: rgb(255,244,224);	

    /*動き*/
  transition: all 0.6s;
}

#fullOverlay{
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(100, 100, 100, .8);
    z-index: -1000;
    display:none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}



/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 70%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}



/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    margin-top: 15%;
    padding-left: 10%;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    /* text-align: center; */
}

#g-nav li a{
    color: rgb(156,115,87	);

  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;

  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}


/* 細かく調節 */
@media only screen and (max-width: 319px) {
    #g-nav{
        width:70%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 60%;
    }
}
@media only screen and (min-width: 320px) {
    #g-nav{
        width:70%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 60%;
    }
}
@media only screen and (min-width: 375px) {
    #g-nav{
        width:60%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 60%;
    }
}
@media only screen and (min-width: 600px) {
    #g-nav{
        width:45%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 60%;
    }
}


@media (min-width: 768px){
    #g-nav{
        width:30%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 60%;
    }
}

@media only screen and (min-width: 800px) {
    #g-nav{
        width:28%;
    }

    #g-nav.panelactive #g-nav-list{
        width: 30%;
    }
}



/*========= ボタンのためのCSS ===============*/

.side-nav-openbtn{
    /* position: relative; */
}
.openbtn1{
    position:fixed;
    /* position: absolute; */
    z-index: 9999;/*ボタンを最前面に*/
    top:0px;
    right: 0px;
    cursor: pointer;
    width: 50px;
    height:50px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

.openbtn1.active{
    position:fixed;
    /* top: -30px;
    right: -20px; */
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 50px;
    height:50px;
    background-color: rgb(156,115,87);

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/* 細かく調節 */
@media only screen and (max-width: 319px) {
    /* .openbtn1{
        position:fixed;
        z-index: 9999;
        top:0;
        right: 0px;
        cursor: pointer;
        width: 50px;
        height:50px;
    } */
    
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}
@media only screen and (min-width: 320px) {
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}
@media only screen and (min-width: 375px) {
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}
@media only screen and (min-width: 600px) {
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}
@media (min-width: 768px){
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}
@media only screen and (min-width: 800px) {
    .openbtn1.active{
        position:fixed;
        top: 0px;
        right: 0px;
    }
}

/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: rgb(156,115,87);

    width: 45%;
    right: -25px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.openbtn1.active span{
    background-color: var(--color-white);
}
.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:23px;
}
.openbtn1 span:nth-of-type(3) {
  top:31px;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


#login-page{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* -----------------------------------------------------------------------
 * 追記分
 * -----------------------------------------------------------------------*/
#top-title > div{
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}
#top-title img{
    max-width: 100%;
    width: 100%;
}


/* --------------------------------
 * 開催期間
 * --------------------------------*/
#open-period {
    background-color: #FFF4DE;
}

#open-period .wrapper{
    padding:1rem 0;
}

/* .border-3{
    border-width: 3px !important;
} */

/* -----------------------------------------------------------------------
 * トップメニューアイコン
 * -----------------------------------------------------------------------*/
#menu-icon{
    padding:2rem 0;
    /* font-size: 0.7rem; */
}

#menu-icon a{
    max-width: 60px;
    color: var(--color-black);
    text-decoration: none;
}
#menu-icon img{
    /* max-width: 60px; */
    max-width: 56px;
    /* max-width: 50px; */
}

#top-how-to-play{
    text-align: center;
    border-right: 1px solid var(--color-light-white);
}

#top-shoplist{
    text-align: center;
    border-right: 1px solid var(--color-light-white);
}
#top-application{
    text-align: center;
    border-right: 1px solid var(--color-light-white);
}
#top-mypage{
    text-align: center;
}

@media only screen and (max-width: 600px) {
    #menu-icon{
        font-size: 0.7rem;
    }
    #menu-icon a{
        max-width: 60px;
    }
    #menu-icon img{
        max-width: 50px;
    }
}
@media only screen and (max-width: 414px) {
    #menu-icon{
        font-size: 0.6rem;
    }
    #menu-icon a{
        max-width: 40px;
    }
    #menu-icon img{
        max-width: 40px;
    }
}
@media only screen and (max-width: 372px) {
    #menu-icon a{
        max-width: 30px;
    }
    #menu-icon img{
        max-width: 30px;
    }
}
@media only screen and (max-width: 320px) {
    #menu-icon{
        font-size: 0.55rem;
    }
    #menu-icon a{
        max-width: 20px;
    }
    #menu-icon img{
        max-width: 20px;
    }
}
/* -----------------------------------------------------------------------
 * トピックス
 * -----------------------------------------------------------------------*/

#topics .wrapper{
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.sectionHeading {
    margin-bottom: 15px;
    color: var(--color-black);
}
.sectionHeading .sectionHeading__en {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .2em;
}
.sectionHeading .sectionHeading__line {
    display: inline-block;
    margin: 0 20px;
    width: 1px;
    height: 14px;
    background: var(--color-black);
}
.sectionHeading .sectionHeading__ja {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: .15em;
    vertical-align: 2px;
}

#topics-title{
    text-align: center;
    padding: 1rem 0;
}

#topics-title > p:first-child{
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .15em;
    vertical-align: 2px;
    /* padding-bottom: 0.5rem; */
    margin-bottom: 0;
}
#topics-title > p{
    font-weight: normal;
    letter-spacing: .15em;
    vertical-align: 2px;
}

/* #topics-title > span{
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: .15em;
    vertical-align: 2px;
} */

/* #topics-title > span{
    border-bottom: 1px solid var(--color-black);
    font-weight: bold;
} */



#topics ul{
    list-style: none;
    padding-left: 0;
    width: 100%;
}

#topics .topics-list li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dfdfdf;
    width: 100%;
}

#topics .topics-list li:after {
    position: absolute;
    content: url("../img/angle-right.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 1px 2px;
    width: 1.8rem;
    right: 15px;
}

.topics-list .topic-content{
    width: 100% !important;
}
#topics li{
    list-style: none;
    padding-left: 0;
}

#topics li span:first-child{
    display: inline-block;
    width: 25%;
}

.topics-list a{
    color: var(--color-black);
}

/* #topics li span:nth-child(2){
    width: 70%;
} */

#topics-listpage{
    text-align: right;
}
.topics-listpage {
    margin-right: 1.5rem;
    text-align: right;
}



.topics-listpage a{
    color: var(--color-black);
}

.topics-listpage a:after {
    position: absolute;
    content: url("../img/arrow-right-long-solid.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    right: 15px;
}

/* -----------------------------------------------------------------------
 * フッター
 * -----------------------------------------------------------------------*/
#footer{
    background-color: var(--footer-bgcolor);
}

#footer > div > div{
    padding:1rem 0;
}

#footer-company{
    font-size: 1.0rem;
    text-align: center;
    margin: 0 auto;
}
#footer-company > div{
    text-align: left;
    display: inline-block;
}

#footer-txt{
    color: var(--white);
    padding: 1rem 0;
}
@media only screen and (min-width: 768px) {
    #footer-company{
        font-size: 2rem;
    }
}


/* -----------------------------------------------------------------------
 * トピックス 単発
 * -----------------------------------------------------------------------*/
#topics-single ul{
    list-style: none;
    padding-left: 0;
    width: 100%;
}

#topics-single .topics-list li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dfdfdf;
    width: 100%;
}

#topics-single .topics-list li:after {
    position: absolute;
    content: url("../img/angle-right.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 1px 2px;
    width: 1.8rem;
    right: 15px;
}

.topics-list .topic-content{
    width: 100% !important;
}
#topics-single li{
    list-style: none;
    padding-left: 0;
}

#topics-single li span:first-child{
    display: inline-block;
    width: 25%;
}
/* #topics li span:nth-child(2){
    width: 70%;
} */

.topics-listpage {
    margin-right: 1.5rem;
    text-align: right;
}

.topics-listpage a{
    color: var(--color-black);
}

.topics-listpage a:after {
    position: absolute;
    content: url("../img/arrow-right-long-solid.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    right: 15px;
}


/* -----------------------------------------------------------------------
 * トピックス ALL
 * -----------------------------------------------------------------------*/



#topics-all ul{
    list-style: none;
    padding-left: 0;
    width: 100%;
}

#topics-all .topics-list li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dfdfdf;
    width: 100%;
}

/* #topics-all .topics-list li:after {
    position: absolute;
    content: url("../img/angle-right.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 1px 2px;
    width: 1.8rem;
    right: 15px;
} */

.topics-list .topic-content{
    width: 100% !important;
}
#topics-all li{
    list-style: none;
    padding-left: 0;
}

#topics-all li span:first-child{
    display: inline-block;
    width: 25%;
}
/* #topics li span:nth-child(2){
    width: 70%;
} */

.topics-listpage {
    margin-right: 1.5rem;
    text-align: right;
}

.topics-listpage a{
    color: var(--color-black);
}

.topics-listpage a:after {
    position: absolute;
    content: url("../img/arrow-right-long-solid.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    right: 15px;
}

.topic-content a{
    color: #3490dc !important;
    /* text-decoration: none;
    background-color: transparent; */
}
/* -----------------------------------------------------------------------
 * カメラ
 * -----------------------------------------------------------------------*/
#camera img{
    width:30px;
    max-width: 30px;
}
.camera-scan-button {
    /* display: none; */
    position: fixed;
    /* position:  sticky;追尾させる */
    width: 60px;
    height: 60px;

    right: 15px;
    bottom: 45px;
    cursor: pointer;
    color: var(--color-black);
    text-align: center;
    line-height: 40px;
    /* opacity: 0.8; */
    z-index: 10;

    background-color: var(--footer-bgcolor);
    /* border-top-left-radius: 50%;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; */
    border-radius: 50%;
}

.fixed{
    /* width: 100%; */
    /* position:  absolute; */
    bottom: 100px !important; /*下に固定*/
}

@media only screen and (min-width: 768px) {
    .camera-scan-button {
        right: 30px;
        bottom: 30px; 
    }
}
.scan-qrimg{
    position: absolute; 
    top: 40%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.scan-txt{
    color: var(--white);
    position: absolute; 
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

/* -----------------------------------------------------------------------
 * 店舗
 * -----------------------------------------------------------------------*/
#shop{
    padding-left: 1rem;
    padding-right: 1rem;
}

.shop-wrapper{
    border-bottom: 1px solid var(--color-black);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.shop_pic img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#shop-search {
    padding-top: 1rem;
}


/*--------------------
App　
--------------------*/
/* #shop-search .shop-keyword-search{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

    font-size: 16px;
    width: 100%; 
    background-color: #ddd;
    border: none; 
    outline: none; 
    box-sizing: border-box; 
} */

.search-form {
    position: relative;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 40px;
    border-radius: 40px;
    border: 2px solid var(--footer-bgcolor);
    /* box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); */
    transform: translate(-50%, -50%);
    background: var(--color-white);
    transition: all 0.3s ease;
  }
  
  /* .search-form:focus {
      box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  } */
  
  
  .search-input {
    position: absolute;
    top: 10px;
    left: 38px;
    font-size: 14px;
    background: none;
    color: #5a6674;
    width: 195px;
    height: 20px;
    border: none;
    appearance: none;
    outline: none;
  }
  
  .search-input::-webkit-search-cancel-button {
      appearance: none;
  }
  
  
  .search-button {
    position: absolute;
    top: 6px;
    left: 15px;
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none!important;
    cursor: pointer;
  }
  .search-button  svg {
      width: 20px;
      height: 20px;
      fill: #5a6674;
  }
  
  .search-option {
    position: absolute;
    text-align: right;
    top: 6px;
    right: 15px;
  }
  
  .search-option div {
      position: relative;
      display: inline-block;
      margin: 0 1px;
      cursor: pointer;
  }
  
  .search-option input {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.01;
      cursor: pointer;
  }
  
  .search-option span {
      position: absolute;
      display: block;
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      background: #929AA3;
      color: var(--color-white);
      font-size: 9px;
      letter-spacing: 1px;
      line-height: 1;
      text-transform: uppercase;
      padding: 4px 7px;
      border-radius: 12px;
      top: -18px;
      transition: all .2s ease-in-out;
  }
  
  /* .search-option::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 50%;
      transform: translateX(-50%);
      border-top: 4px solid #929AA3;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      transition: all .2s ease-in-out;
  } */
  
  .search-option:hover span {
    opacity: 1;
    top: -21px;
  }
  
  .search-option label {
    display: block;
    cursor: pointer;
  }
  
.search-option svg,
.search-option img{
    height: 20px;
    width: 20px;
    fill: #5a6674;
    opacity: 1;
    transition: all .2s ease-in-out;
    pointer-events: none;
}

/* .search-option:hover svg,
.search-option:hover img{
  opacity: 1;
} */

.search-sort{
    padding: 1rem 1rem;
}
.search-sort div{
    padding: 2px;
}
.search-sort a{
    padding: 1px 1rem;
    color: var(--footer-bgcolor);
    border: 1px solid var(--footer-bgcolor);
    /* background-color: var(--footer-bgcolor); */
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
}
.search-sort a:hover{
    background-color: var(--footer-bgcolor);
    color: var(--color-white);
}
/* -----------------------------------------------------------------------
 * 応募
 * -----------------------------------------------------------------------*/
#application-top-image{
    position: relative;
    width: 100% !important;
}
#application-top-image img{
    width: 100%;
}
.combined{
    /* position: absolute; */
    /* right:10px; */
    /* top: 50%;
    transform: translateY(-50%) ; */
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translateX(-50%) translateY(-50%) ; */
    font-size: 1.5rem;
    font-weight: bold;
}

.combined-collect-stamps{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) ;
    justify-content: center;
    background-color: var(--color-white);
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.combined-collect-stamps-size{
    font-size: 1.35rem !important;
}
.combined div{
    width: 100% !important;
}
.combined button{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) ;
    
    text-align: center;
    border: 0;
    background: #2674BF;
    color: var(--color-white);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    /* padding: 0.5rem 4rem; */
    width: 80%;
    margin: 0 auto;
}

.combined button::after{
    position: absolute;
    content: url("../svg/arrow-long-white.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    /* right: 15px; */
    margin-left: 1rem;
    color: var(--color-white);
}

.combined .app-btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) ;
    
    text-align: center;
    border: 0;
    background: #2674BF;
    color: var(--color-white);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    /* padding: 0.5rem 4rem; */
    width: 80%;
    margin: 0 auto;
    font-size: inherit;
    font-weight: initial;
}

.combined .app-btn::after{
    position: absolute;
    content: url("../svg/arrow-long-white.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    /* right: 15px; */
    margin-left: 1rem;
    color: var(--color-white);
}

.application-div{
    position: relative;
    padding:5px 4rem;
    text-align: center;
    border: 0;
    background: #2674BF;
    color: var(--color-white);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    /* border-radius: 50%; */
    /* font-size: large; */
    cursor: pointer;
}
.application-enquete30-answered{
    background: #808080;
}

.apply-btn::after{
    position: absolute;
    content: url("../svg/arrow-long-white.svg");
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 3px 2px;
    width: 1.2rem;
    /* right: 15px; */
    margin-left: 1rem;
    color: var(--color-white);
}

#application-button{
    padding: 1rem 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.mypage_application_title{
    font-size: 2rem;
}
.mypage_application_month{
    font-size: 2rem;
}

#stamp-list input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.stamp-mark{
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.stamp-mark-circle{
    position: relative;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-red);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-circle_gray{
    position: relative;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-circle img{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-circle_gray img{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-shop{
    width: 76%;
    position: absolute;
    top: 12%;
    left:50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color:var(--color-red);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-shop_30{
    width: 76%;
    position: absolute;
    top: 45%;
    left:50%;
    text-align: center;
    vertical-align: middle;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color:var(--color-gray);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.stamp-mark-date{
    position: absolute;
    top: 70%;
    left:50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color:var(--color-red);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.stamp-mark-date30{
    position: absolute;
    top: 75%;
    left:50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color:var(--color-red);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.stamp-mark-img{
    font-size: 48px;
    /* color: gold; */
    color: #38C172;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;

    /* background-image: url("../svg/check-solid.svg");
    background-size: 100%;
    background-position:15% 15%;
    background-repeat: no-repeat; */
}

/* 細かく調節 */
@media only screen and (max-width: 319px) {
    .combined-collect-stamps-size{
        font-size: 1.15rem !important;
    }

    .stamp-mark-shop{
        font-size: 0.6rem;
    }
    .stamp-mark-date{
        font-size: 0.6rem;
    }
    .stamp-mark-img{
        font-size: 2.0rem;
    }
}
@media only screen and (min-width: 320px) {
    .combined-collect-stamps-size{
        font-size: 1.15rem !important;
    }

    .stamp-mark-shop{
        font-size: 0.7rem;
    }
    .stamp-mark-date{
        font-size: 0.7rem;
    }
    .stamp-mark-img{
        font-size: 2.5rem;
    }
}
@media only screen and (min-width: 375px) {
    .combined-collect-stamps-size{
        font-size: 1.25rem !important;
    }
    .stamp-mark-shop{
        font-size: 0.8rem;
    }
    .stamp-mark-date{
        font-size: 0.8rem;
    }
}
@media only screen and (min-width: 600px) {
    .stamp-mark-shop{
        font-size: 1.0rem;
    }
    .stamp-mark-date{
        font-size: 1.0rem;
    }
    .stamp-mark-img{
        font-size: 4.5rem;
    }
}
@media only screen and (min-width: 800px) {
    .stamp-mark-shop{
        font-size: 1.2rem;
    }
    .stamp-mark-date{
        font-size: 1.2rem;
    }
    .stamp-mark-img{
        font-size: 6rem;
    }
}
/* -----------------------------------------------------------------------
 * 遊び方
 * -----------------------------------------------------------------------*/
#how-to-play .container{
    max-width: 720px;
}
#how-to-play .wrapper > div{
    padding: 1rem 15px;
}
#how-to-play ol{
    padding-left: 1rem;
}

#how-to-play .new-registration{
    position: relative;
}

#how-to-play .new-registration-div{
    background-color: var(--color-pink);
    border-color: var(--color-pink);
}

#how-to-play .new-registration-ol li::marker {
    color: var(--color-pink);
}

/* @media only screen and (min-width: 768px) {
    #how-to-play .wrapper > div{
        text-align: center;
    }
} */

#how-to-play .collect-stamp-div{
    background-color: #00AEEF;
    border-color: #00AEEF;
}

#how-to-play .collect-stamp-ol li::marker {
    color: #00AEEF;
}

#how-to-play .application-method-div{
    background-color: #71BF44;
    border-color: #71BF44;
}

#how-to-play .application-method-ol li::marker {
    color: #71BF44;
}

#how-to-play .font-red{
    color: var(--color-red);
}

.ticket_gift{
    position:absolute;
    width: 100px;
    padding-left: 10px;
}

#how-to-play .attention {
    list-style: none;
    padding-left: 1rem;
}
#how-to-play .attention li::marker {
    color: var(--color-red);
    content: "※";
}
#how-to-play .attention li{
    color: var(--color-red);
}

/* -----------------------------------------------------------------------
 * 遊び方
 * -----------------------------------------------------------------------*/
#help-index .container{
    max-width: 720px;
}
#help-index .wrapper > div{
    padding: 1rem 15px;
}
#help-index ol{
    padding-left: 1rem;
}
/* #help-index ul{
    padding-left: 1rem;
} */

#help-index .new-registration{
    position: relative;
}

#help-index .new-registration-div{
    background-color: var(--color-pink);
    border-color: var(--color-pink);
}

#help-index .new-registration-ol li::marker {
    color: var(--color-pink);
}

#help-index .attention {
    list-style: none;
}
#help-index .attention li::marker {
    color: var(--color-red);
    content: "※";
}
#help-index .attention li{
    color: var(--color-red);
}

#help-index .ul1st {
    list-style: none;
}
#help-index .ul1st li::marker {
    content: "①";
}
#help-index .ul2nd {
    list-style: none;
}
#help-index .ul2nd li::marker {
    content: "②";
}

/* @media only screen and (min-width: 768px) {
    #help-index .wrapper > div{
        text-align: center;
    }
} */



/*----------------------------------
** マイページ
**----------------------------------*/
#application_result{
    padding: 1rem 0;
}

#mypage-title{
    text-align: center;
    padding: 1rem 0;
}

#mypage-title > p:first-child{
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .15em;
    vertical-align: 2px;
    /* padding-bottom: 0.5rem; */
    margin-bottom: 0;
}
#tmypage-title > p{
    font-weight: normal;
    letter-spacing: .15em;
    vertical-align: 2px;
}

/*----------------------------------
** プライバシーポリシー 画面 #help_privacy{} 
**----------------------------------*/
#help_privacy .heading-bold {
    margin: 16px 0;
    font-size: 16px;
    font-weight: bold;
}
@media only screen and (min-width: 768px) {
    #help_privacy .heading-bold {
        font-size: 18px; 
    }
}

@media(min-width: 576px){
    #help_privacy a[href^="tel:"]{
        pointer-events: none;
        cursor: default;
    }
}

.help-card-content {
    margin: 0; }
.help-card-content .help-card-content-text {
    margin: 0; }
@media only screen and (min-width: 768px) {
    .help-card-content {
        display: block;
        margin: 0; }
    .help-card-content .help-card-content-text {
        position: relative;
        min-height: 1px;
        margin-left: 8.33333%; }
    .help-card-content-text .ul-1rem{
        padding-left: 1rem;
    }
    .help-card-content-text .ol-1rem{
        padding-left: 1rem;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .help-card-content {
        display: flex; }
    .help-card-content .help-card-content-text {
        width: 83.33333%; }
}

/* -----------------------------------------------------------------------
 * 集計画面
 * -----------------------------------------------------------------------*/
#totalling-page .title-thead{
    border-bottom: 5px double #dee2e6;
}

#totalling-page .subtotal-tr{
    border-top: 5px double #dee2e6;
}

/* -----------------------------------------------------------------------
 * 追記分　終了
 * -----------------------------------------------------------------------*/





