@charset "utf-8";

/* =======================================
    共通パーツ
======================================= */
/* ------ Reset -------*/
* {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
html,body {
  -webkit-text-size-adjust: 100%;
}


/* ------ Responsive -------*/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/* ------ box -------*/
body {
  background-color: #fff;
  /* min-width: 1165px; */
  overflow-y: scroll;
}
#pageWrapper{
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section {
  position: relative;
  width: 100%;
}
.container {
  box-sizing: border-box;
  max-width: 1165px; /* 1135px + 30px*/
  margin: 0 auto;
  position: relative;
  padding: 80px 15px;
  width: 100%;
}
.case{
  margin-bottom: 70px;
}
.box{
  margin-bottom: 40px;
}
.case:last-child,.box:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 767px){
  body{
    min-width: 100%;
  }
  .container {
    padding: 8vw 0; /* 30px 0 */
    margin: 0 auto;
    width: 88%;
  }
  .case{
    margin-bottom: 8vw; /* 40px */
  }
  .box{
    margin-bottom: 4vw; /* 20px */
  }
}


/* ------ flex-box -------*/
.col2,.col3{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
@media screen and (max-width: 767px) {
  .col2,.col3{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


/* ------ fadeInUp -------*/
.fadeInUp{
  -webkit-transform: translateZ(0);
  /* display: none; */
  opacity: 0;
}
.fadeInUp.animated {
  /* アニメーションのプロパティを指定 */
  -webkit-transform: translateZ(0);
  animation-name: animated;
  animation-duration: 1s;
  animation-timing-function: ease;
  position: relative;
  opacity: 1;
}
@keyframes animated {
  from {
    opacity: 0;
    bottom: -20px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}


/* ------ text -------*/
html {
  font-size: 62.5%;
}
body{
  color: #000;
  font-family: "Zen Kaku Gothic Antique","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.7rem;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.7;
}
.serif{
  font-family: "Noto Serif JP","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
main p{
  margin-bottom: 1em;
}
main p:last-child{
  margin-bottom: 0;
}
.ttl_main{
  position: relative;
  text-align: center;
  z-index: 10;
}
.ttl_sub{
  margin-bottom: 40px;
}
.ttl_main img, .ttl_sub img{
  margin: 0 auto;
}
.ttl_item{
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.txt_notes{
  font-size: 1.1rem;
  position: relative;
  letter-spacing: -0.05em;
}
.sup{
  display: inline-block;
  position: relative;
}
.sup sup{
  font-size: 0.9rem;
  position: absolute;
  top: -6px;
  right: 0;
}
@media screen and (max-width: 767px){
  body{
    font-size: 2.933vw; /* 1.1rem */
  }
  .ttl_sub{
    margin-bottom: 4vw; /* 1.5rem */
  }
  .ttl_item{
    font-size: 3.2vw; /* 1.2rem */
    font-weight: bold;
  }
  .txt_notes{
    font-size: 2.133vw; /* 0.8rem */
  }
  .sup sup{
    font-size: 1.867vw; /* 0.7rem */
    position: absolute;
    top: -5px;
    right: 0;
  }
  .ttl_main img{
    height: 100%;
    width: auto;
  }
}

/* .txt_products_link */
.txt_products_link{
  font-size: min(2.403vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.075em;
  text-align: center;
}
.txt_products_link a{
  color: #0071bc;
}
@media screen and (max-width: 767px){
  .txt_products_link{
    font-size: 4.267vw; /* 16px */
    line-height: 1.5;
  }
}

/* .txt_emsp */
.txt_emsp.pc{
  display: inline-block;
}
@media screen and (max-width: 767px){
  .txt_emsp.pc{
    display: none;
  }
}

/* .marker */
.marker{
  background-color: #fff000;
  color: #00297a;
  padding: 0 min(1.631vw ,10px);
}


/* ------ img -------*/
@media screen and (max-width: 767px){
  img{
    width: 100%;
  }
}


/* ------ btn -------*/
/* a */
a{
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover{
    text-decoration: underline;
  }
}

/* btn */
.btn{
  display: inline-block;
}
.btn_text{
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .btn:hover{
    text-decoration: none;
    transform:scale(0.95);
    transition: 0.3s all;
    opacity: 1;
  }
  .btn_text:hover{
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .btn{
    display: block;
  }
}

/* .link_box */
.link_box {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .link_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .link_box .btn img{
    width: 72vw;
  }
}


/* ------ background -------*/
/* .bg_bubble */
.bg_bubble{
  background-image: url(../img/bg_bubble.jpg);
  background-repeat: no-repeat;
  /* background-size: 1900px auto; */
  background-size: cover;
  background-position: top center;
}
.bg_bubble .container{
  padding-top: 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .bg_bubble{
    background-image: url(../img/bg_bubble_sp.jpg);
  }
  .bg_bubble .container{
    padding-bottom: 12vw;
  }
}

/* .bd_b_box */
.bd_b_box{
  background:
    url(../img/bg_bd_top_pc.png) no-repeat center top / 100% auto,
    url(../img/bg_bd_bottom_pc.png) no-repeat center bottom / 100% auto;
  box-sizing: border-box;
  padding-top: 6.6%;
  padding-bottom: 6.6%;
  position: relative;
}
.bd_b_box .inner{
  background: url(../img/bg_bd_pc.png) repeat-y center top / 100% auto;
  padding: 20px 80px 0;
  padding-bottom: 0;
}
.bd_b_box .ttl_main{
  position: absolute;
  top: -36px;
  left: calc(50% - 266px);
  line-height: 0;
}
@media screen and (max-width: 1136px){
  .bd_b_box .inner{
    padding: 20px 7.048vw 0;
  }
}
@media screen and (max-width: 767px){
  .bd_b_box{
    background:
    url(../img/bg_bd_top_sp.png) no-repeat center top / 100% auto,
    url(../img/bg_bd_bottom_sp.png) no-repeat center bottom / 100% auto;
  padding-top: 9.333%;
  padding-bottom: 9.333%;
  }
  .bd_b_box .inner{
    background: url(../img/bg_bd_sp.png) repeat-y center top / 100% auto;
    padding: 2vw 6vw 0;
  }
  .bd_b_box .ttl_main{
    top: -15px;
    left: calc(50% - 113px);
    height: 32px;
  }
}

/* ------ list -------*/
/* .list_box */
.list_box{
  position: relative;
}
.list_box li{
  padding-left: 1em;
}
.list_box li::before{
  content: '・';
  position: absolute;
  left: 0;
}
/* .list_circle_box */
.list_circle_box{
  position: relative;
  margin: 0.5em 0;
}
.list_circle_box li{
  padding-left: 1em;
}
.list_circle_box li::before{
  content: '○';
  position: absolute;
  left: 0;
}


/* ------ footer -------*/
footer{
  background-color: #f2f2f2;
  padding: 30px;
  text-align: center;
}
.ttl_campaign{
  font-size: min(2.833vw, 3.3rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  text-align: center;
}
.ttl_campaign span{
  border-bottom: 1px solid;
  display: inline-block;
  padding: 0 30px 5px;
}
.txt_campaign_01{
  color: #4c4948;
  font-size: min(1.888vw, 2.2rem);
}
.txt_campaign_02{
  font-size: min(2.833vw, 3.3rem);
  font-weight: bold;
  margin-bottom: 0.5em;
}
.txt_campaign_03{
  color: #4c4948;
  text-align: left;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 630px;
}
@media screen and (max-width: 767px){
  footer{
    padding: 8vw 4vw;
  }
  .ttl_campaign{
    font-size: 4.267vw; /* 16px */
  }
  .ttl_campaign span{
    padding: 0 2.667vw 1.333vw;
    /* padding: 0 10px 5px; */
  }
  .txt_campaign_01{
    font-size: 3.467vw; /* 13px */
  }
  .txt_campaign_02{
    font-size: 4.8vw; /* 18px */
  }
}


/* --------------------------------------------------
  #pageTop
-------------------------------------------------- */
/* ------ #mainvisual_box -------*/
#mainvisual_box img{
  margin: 0 auto;
  width: 100%;
}


/* ------ #about_box -------*/
#about_box .ttl_main{
  margin-bottom: 1em;
}
#about_box .txt_products_link span{
  border-top: 1px solid #00297a;
  padding: 10px 100px 0;
}
.icon_about{
  position: absolute;
  top: min(12.017vw, 140px);
  left: -50px;
  height: auto;
  width: min(13.734vw ,160px);
  z-index: 1;
}
@media screen and (min-width: 768px){
  #about_box .container{
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px){
  #about_box .ttl_main img{
    width: 90%;
  }
  #about_box .txt_products_link span{
    display: inline-block;
    padding: 10px 10px 0;
  }
  .icon_about {
    top: 2.667vw;
    left: -2.667vw;
    width: 14.667vw;
  }
  .img_about{
    margin: 5.333vw auto 0;
    width: 80%;
  }
  #about_box .fadeInUp{
    opacity: 1 !important;
  }
  #about_box .animated{
    animation: none;
  }
}


/* ------ #prize_box -------*/
#prize_box{
  background-image: url(../img/bg_prize.jpg);
  background-repeat: no-repeat;
  /* background-size: 1900px auto; */
  background-size: cover;
  background-position: top center;
}
#prize_box .ttl_main{
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px){
  #prize_box .container{
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px){
  #prize_box .ttl_main{
    height: 32px;
    margin-bottom: 1em;
  }
}

/* .prize_list_box */
.prize_list_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prize_list_box li{
  margin-bottom: 20px;
  position: relative;
}
.prize_list_box img{
  height: auto;
  width: 100%;
}
.img_prize_a,
.img_prize_b{
  width: 100%;
}
.img_prize_c,
.img_prize_d{
  width: 49.5%;
}
@media screen and (max-width: 767px){
  .prize_list_box{
    flex-direction: column;
  }
  .prize_list_box li{
    margin-bottom: 10px;
  }
  .prize_list_box li:last-child{
    margin-bottom: 0;
  }
  .img_prize_c,
  .img_prize_d{
    width: 100%;
  }
}
.txt_prize{
  position: absolute;
}
.img_prize_a .txt_prize{
  right: 80px;
  top: 260px;
  width: 350px;
}
.img_prize_b .txt_prize{
  right: 85px;
  top: 230px;
  width: 470px;
}
@media screen and (max-width: 1165px){
  .txt_prize{
    font-size: min( 1.459vw, 1.7rem);
  }
  .img_prize_a .txt_prize{
    right: 6.867vw;
    top: 22.318vw;
    width: 30.043vw;
  }
  .img_prize_b .txt_prize{
    right: 7.296vw;
    top: 19.742vw;
    width: 40.343vw;
  }
}
@media screen and (max-width: 767px){
  .txt_prize{
    font-size: 3.2vw; /* 12px */
  }
  .img_prize_a .txt_prize{
    right: 5%;
    top: auto;
    bottom: 20px;
    width: 90%;
  }
  .img_prize_b .txt_prize{
    right: 5%;
    top: auto;
    bottom: 20px;
    width: 90%;
  }
}


/* ------ #application-methods_box -------*/
#application-methods_box .container{
  padding-top: 100px;
}
#application-methods_box .img_application-methods{
  margin: 0 auto 1.5em;
}
#application-methods_box p{
  font-size: min(1.717vw, 2rem);
  font-weight: 600;
}
#application-methods_box p.txt_application-methods{
  color: #2e3192;
  font-size: min(2.232vw, 2.6rem);
  font-weight: 900;
  line-height: 1.5;
  padding-left: min(12.017vw, 140px);
}
@media screen and (max-width: 767px){
  #application-methods_box .container{
    padding-top: 12vw;
  }
  #application-methods_box .bd_b_box .inner{
    padding-top: 10px;
  }
  #application-methods_box .img_application-methods{
    width: 80%;
  }
  #application-methods_box p{
    font-size:  3.2vw; /*12px*/
  }
  #application-methods_box p.txt_application-methods{
    font-size: 3.733vw; /*14px*/
    padding-left: 0;
  }
}

/* .date_box */
#application-methods_box .date_box{
  border: 3px solid #29abe2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5em;
}
#application-methods_box .date_box .col2:nth-child(1){
  border-bottom: 3px solid #29abe2;
}
#application-methods_box .date_box p{
  box-sizing: border-box;
  margin-bottom: 0;
  font-weight: 900;
  padding: 10px min(1.717vw ,20px);
}
#application-methods_box .date_box p:nth-child(2){
  flex: 1;
}
#application-methods_box .date_box .title{
  background-color: #2e3192;
  color: #fff;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: min(2.232vw, 2.6rem);
  width: min(27.468vw, 320px);
}
#application-methods_box .date_box .date{
  color: #000;
  display: inline-block;
  font-size: min(2.06vw, 2.4rem);
}
#application-methods_box .date_box .date::after{
  content: '';
  background-image: url(../img/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: inline-block;
  height: min(1.888vw,22px);
  width: min(1.03vw,12px);
  margin-left: min(1.288vw,15px);
  margin-right:min(0.687vw,8px);
  position: relative;
  top: 3px;
}
#application-methods_box .date_box .marker{
  font-size: min(2.403vw, 2.8rem);
}
@media screen and (max-width: 767px){
  #application-methods_box .date_box p{
    padding: 2vw 6vw;
  }
  #application-methods_box .date_box .title{
    font-size: 4vw;/*14px*/
    width: 100%;
  }
  #application-methods_box .date_box .date{
    font-size: 4.267vw; /*15px*/
  }
  #application-methods_box .date_box .date::after{
    height: 16px;
    width: 8px;
    margin-left: 10px;
    top: 3px;
  }
  #application-methods_box .date_box .marker{
    font-size: 4.267vw; /*16px*/
    margin-left: 2em;
  }
}

#application-methods_box .txt_bottom{
  color: #4c4948;
}


/* ------ #products_box -------*/
#products_box .bd_b_box{
  padding-bottom: 3.3%;
}
#products_box .bd_b_box .inner{
  position: relative;
}
.ttl_products_sub{
  font-size: min(2.403vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.5em;
  text-align: center;
}
.ttl_products_sub span{
  border-bottom: 1px solid;
  padding: 0 40px;
}
@media screen and (min-width: 768px){
  #products_box .bd_b_box .inner{
    padding: 0;
  }
}
@media screen and (max-width: 767px){
  #products_box .bd_b_box .inner{
    padding: 2vw 4vw 0;
  }
  #products_box .bd_b_box{
    padding-bottom: 6.6%;
  }
  .ttl_products_sub span{
    padding: 0 8vw;
  }
  .ttl_products_sub{
    font-size: 4vw; /* 15px */
  }
}

/* .list_products_box */
.list_products_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list_products_box li{
  text-align: center;
  margin: 0 10px 20px;
}
@media screen and (min-width: 768px){
  .list_products_box .img_products_04,
  .list_products_box .img_products_05,
  .list_products_box .img_products_06{
    margin: 0 20px 20px;
  }
  .list_products_box .img_products_01 img,
  .list_products_box .img_products_02 img,
  .list_products_box .img_products_03 img{
    height: 20.687vw;
    max-height: 241px;
    width: auto;
  }
  .list_products_box .img_products_04 img,
  .list_products_box .img_products_05 img,
  .list_products_box .img_products_06 img{
    height: 22.489vw;
    max-height: 262px;
    width: auto;
  }
}
@media screen and (max-width: 1165px){
  .list_products_box li{
    margin: 0 0.858vw 1.717vw;
  }
  .list_products_box .img_products_04,
  .list_products_box .img_products_05,
  .list_products_box .img_products_06{
    margin: 0 1.717vw 1.717vw;
  }
}
@media screen and (max-width: 767px){
  .list_products_box li{
    margin: 0 3% 15px;
  }
  .list_products_box .img_products_04,
  .list_products_box .img_products_05,
  .list_products_box .img_products_06{
    margin: 0 2.5% 15px;
  }
  .list_products_box .img_products_01 img,
  .list_products_box .img_products_02 img,
  .list_products_box .img_products_03 img{
    height: 32vw;
    max-height: 120px;
    width: auto;
  }
  .list_products_box .img_products_04 img,
  .list_products_box .img_products_05 img,
  .list_products_box .img_products_06 img{
    height: 34.667vw;
    max-height: 130px;
    width: auto;
  }
}

/* .txt_etc */
#products_box p.txt_etc{
  color: #1a3066;
  font-size: min(1.717vw, 2rem);
  font-weight: bold;
  position: absolute;
  right: 9%;
  bottom: 9%;
  margin: 0;
}
@media screen and (max-width: 767px){
  #products_box p.txt_etc{
    font-size: 4.267vw; /* 16px */
  }
}


/* ------ #stores_box -------*/
#stores_box .bd_b_box{
  padding-bottom: 3.3%;
}
#stores_box .bd_b_box .inner{
  padding: 0 30px;
}
#stores_box p{
  color: #1a3066;
  text-align: center;
}
#stores_box p.txt_stores{
  color: #00297a;
  font-size: min( 2.747vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px){
  #stores_box .bd_b_box .inner{
    padding-left: 4vw;
    padding-right: 4vw;
  }
  #stores_box p{
    line-height: 1.5;
  }
  #stores_box p.txt_stores{
    font-size: 4.533vw; /* 17px */
    line-height: 1.7;
  }
}


/* ------ #application-requirements_box -------*/
#application-requirements_box .container{
  padding-bottom: 60px;
}
@media screen and (max-width: 767px){
  #application-requirements_box .container{
    padding-bottom: 8vw;
  }
  #application-requirements_box .bd_b_box .inner{
    padding: 2vw 5.333vw;
  }
  #application-requirements_box p{
    line-height: 1.5;
  }
}

#application-requirements_box dt{
  margin-top: 40px;
}
@media screen and (max-width: 767px){
  #application-requirements_box dl,
  #application-requirements_box ul{
    line-height: 1.5;
  }
  #application-requirements_box dt{
    font-weight: bold;
    margin-top: 4vw; /* 15px */
  }
  #application-requirements_box .ttl_sub img{
    width: 50vw;
  }
}
#application-requirements_box dt:nth-child(1){
  margin-top: 0;
}

/* faq */
.ttl_faq{
  margin: 0 auto 4vw;
  text-align: center;
}
.txt_question{
  font-size: 2.2rem;
  font-weight: bold;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.txt_question::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_question.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-right: 10px;
  width: 33px;
  height: 29px;
}
.txt_answer{
  padding-left: 30px;
}
.txt_answer::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-right: 15px;
  margin-left: 5px;
  width: 10px;
  height: 15px;
}
@media screen and (max-width: 767px){
  .ttl_faq{
    width: 40vw;
  }
  .txt_question{
    font-size: 3.2vw; /* 1.2rem */
    margin-bottom: 0.5em;
  }
  .txt_question::before{
    margin-right: 1.333vw; /* 5px */
    width: 3.733vw; /* 14px */
    height: 4.267vw; /* 16px */
  }
  .txt_answer{
    padding-left: 4vw; /* 15px */
    line-height: 1.5;
  }
  .txt_answer::before{
    margin-right: 1.333vw; /* 5px */
    margin-left: 0;
    width: 1.6vw; /* 6px */
    height: 2.667vw; /* 10px */
  }
}


/* ------ #receipt-registration_box -------*/
#receipt-registration_box{
  background-color: #fbe9dc;
}
#receipt-registration_box .container{
  padding-bottom: 40px;
}
#receipt-registration_box .ttl_main{
  margin-bottom: 2em;
}
@media screen and (max-width: 767px){
  #receipt-registration_box .container{
    padding-bottom: 8vw;
  }
  #receipt-registration_box .ttl_main{
    height: 32px;
    margin-bottom: 1.5em;
  }
}

/* .receipt_box */
.receipt_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.receipt_box li{
  margin: 0 1% 2%;
  width: 31.333%
}
@media screen and (max-width: 767px){
  .receipt_box li{
    margin: 0 auto 5.333vw;
    width: 88%
  }
  .receipt_box li:last-child{
    margin-bottom: 0;
  }
}


/* ------ #points-flow_box -------*/
#points-flow_box .link_box{
  margin-bottom: 50px;
  margin-top: 40px;
}
#points-flow_box .container{
  padding-top: 50px;
}
@media screen and (min-width: 768px){
  #points-flow_box .txt_notes{
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 767px){
  #points-flow_box .container{
    padding-top: 8vw;
  }
  #points-flow_box .link_box{
    margin-bottom: 8vw;
    margin-top: 6vw;
  }
  #points-flow_box .link_box .btn img{
    width: 82vw;
  }
}