@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap&subset=japanese");

/*----------------[Base]----------------*/
.campaignContents{
  margin: 5px auto 0;
  font-size: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/*----------------[Layout]----------------*/
.l_campaignMv {
  margin: 0 auto;
  background: #377aa8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2096be 0%, #54b1d0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#377aa8', endColorstr='#398eaf', GradientType=0);
  /* IE6-9 */
}
.l_campaignCoupon01{
  margin: 0 auto;
  background: url(bg_02.png) repeat;
}
.l_campaignCoupon02{
  margin: 0 auto;
  background: #fff;
}
.l_campaignCoupon03{
  margin: 0 auto;
  background: #e7f9ff;
}
.l_campaignPoint {
  margin: 0 auto;
  background: #377aa8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2096be 0%, #54b1d0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#377aa8', endColorstr='#398eaf', GradientType=0);
  /* IE6-9 */
}

/*----------------[Module]----------------*/
/*-----mv-----*/
.m_campaignMv_inner {
  max-width: 1700px;
  height: 400px;
  margin: 0 auto;
  background: url(bg_01_pc.png) no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.m_campaignTitle_inner{
  width: 540px;
  min-height: 200px;
  margin: 0 auto;
  padding: 30px 20px;
  /*! background: #fff; */
  background: #377aa8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #377aa8 0%, #398eaf 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #2096be 0%, #54b1d0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#377aa8', endColorstr='#398eaf', GradientType=0);
  /* IE6-9 */
  border-radius: 20px;
  font-size: 2rem;
  text-align: center;
}
.m_campaignTitle{
  font-size: 5rem;
  color: #fff79b;
  font-weight: 400;
}

/*-----section-----*/
.m_section_inner {
  width: 1160px;
  margin: 0 auto;
  padding: 60px 0;
}
.m_section_ttl {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #36689b;
}
.m_section_box{
  margin: 30px auto 0;
}
.m_section_txt + .m_section_txt {
  margin-top: 15px;
}
.m_txtBold{
  font-weight: bold;
}
.m_txtRed{
  color: #c00;
}
.m_txtLine{
  background: linear-gradient(#fff79b 0%, #fff79b 100%);
}
.m_txtLine02{
  background: linear-gradient(transparent 60%, #fff79b 60%);
}
.m_txtSmall{
font-size: 1.6rem;
}

/*-----button-----*/
.m_button {
  padding: 15px 30px 18px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50px;
  color: #333;
  text-decoration: none;
  display: block;
  text-align: center;
  position: relative;
}
.m_button:hover{
 color: #fff;
  background: linear-gradient(180deg, rgba(15,13,13,1) 0%, rgba(88,88,87,1) 100%);
}
.m_button::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #181818;
  border-right: 2px solid #181818;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 43%;
  bottom: 0;
}
.m_button:hover:after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*----------------[original]----------------*/
/*-----mv-----*/
.campaignTitleTxt{
  margin-top: 10px;
  color: #fff;
}
.campaignTitleBtn {
  font-size: 1.8rem;
  margin: 10px auto 0;
  width: 400px;
}
.campaignTitleBtn .m_button::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 40%;
}

/*-----coupon01-----*/
.l_campaignCoupon01 .m_section_txt{
  text-align: center;
}
.couponBox01{
  background: #fff;
  border: solid 3px #2097be;
  outline: solid 3px #2097be;
  outline-offset: 4px;
  margin: 37px 7px 7px;
  border-radius: 20px;
  padding: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.couponCol01{
  background: url(coupon_bg_pc.png) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 495px;
  height: 190px;
  padding: 25px 75px 25px 70px;
}
.couponLead{
  font-size: 2.2rem;
  font-weight: bold;
}
.couponPrice{
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.2;
}
.couponPriceBold{
  font-size: 6rem;
  color: #c00;
}
.couponCol02{
  width: 530px;
  height: auto;
  color: #36689b;
}

.couponBox01 .couponCol01{
  width: 554px;
  height: 213px;
  padding: 30px 85px 30px 80px;
}
.couponBox01 .couponLead{
  font-size: 2.5rem;
}
.couponBox01 .couponPrice{
  font-size: 5rem;
}
.couponBox01 .couponPriceBold{
  font-size: 6.8rem;
}
.couponBox01 .couponCol02{
  width: 470px;
}

.couponNotes{
  font-size: 1.5rem;
  /*! color: #c00; */
  margin-top: 10px;
}
.couponTxt01{
  color: #36689b;
  font-weight: bold;
}
.couponTxt02{
  color: #c00;
  margin-top: 10px;
  font-size: 1.6rem;
}
.couponTxt02 ul{
  padding: 0 25px;
  list-style: disc;
}
.couponlpBtn{
  margin-top: 20px;
}

/*-----coupon02-----*/
.couponBox02{
  background: #e7f9ff;
  border: solid 3px #e7f9ff;
  outline: solid 3px #e7f9ff;
  outline-offset: 4px;
  margin: 37px 7px 7px;
  border-radius: 20px;
  padding: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
/* item_pc */
.couponpcList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.couponpcItem{
  width: calc((100% - 80px) / 3);
  text-align: center;
}
.pcTitle{
  color: #2097be;
  font-size: 3.2rem;
}
.couponpcItem .pcType{
  font-size: 1.6rem;
  margin-top: 10px;
}
.couponpcItem .pcPrice{
  color: #c00;
}
.couponpcItem .pcPrice span{
  font-size: 3rem;
}
.couponpcItem .couponpcBtn{
  margin-top: 10px;
}
.couponpcItem .pcSpec{
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
}
.couponpcItem .pcSpec dl{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.couponpcItem .pcSpec dl + dl{
  margin-top: 3px;
}
.couponpcItem .pcSpec dt{
  width: 120px;
  padding: 3px 5px;
  background: #e7f9ff;
}
.couponpcItem .pcSpec dd{
  flex: 1;
  padding: 3px 5px;
}
.couponpcItem .pcSpec dd span{
  font-size: 80%;
}

/*-----coupon03-----*/
.couponBox03{
  background: #fff;
  border: solid 3px #fff;
  outline: solid 3px #fff;
  outline-offset: 4px;
  margin: 37px 7px 7px;
  border-radius: 20px;
  padding: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.specialpcList{
  margin: 50px 100px 0;
}
.specialpcItem .pcTitle{
  text-align: center;
}
.specialpcItem .pcType{
  margin-top: 10px;
  text-align: center;
}
.specialpcArea{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.specialpcTxt{
  width: 600px;
}
.pcPoint{
  margin-top: 20px;
  font-weight: bold;
}
.pcPointTxt li{
  padding: 5px 0 4px 30px;
  font-size: 1.6rem;
  position: relative;
}
.pcPointTxt li::before {
  position: absolute;
  content: '';
  display: block;
  width: 19px;
  height: 20px;
  background-image: url(icon_check.png);
  background-size: contain;
  left: 5px;
}
.specialpcBtn{
  max-width: 360px;
  margin: 10px 0 0 auto;
}

/*-----point-----*/
.l_campaignPoint .m_section_ttl{
  color: #fff79b;
}
.pointList{
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.pointItem{
  width: calc((100% - 45px) / 3);
  text-align: center;
}
.pointItemTxt{
  margin-top: 30px;
}

/*-----lineup-----*/
.lineup .lineup_heading {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #36689b;
}
.lineup02_list a {
  display: block;
  text-decoration: none;
  color: #333;
}
.lineup02_itemBox + .lineup02_itemBox{
  margin-top: 20px;
}
.lineup02_itemBox ul{
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.lineup02_item {
  width: 282px;
  height: auto;
  background: #fff;
  border-radius: 3px;
  /*! border: 1px solid #ccc; */
}
.lineup02_item:nth-of-type(n+2) {
  margin-left: 10px;
}
.lineup02_item:nth-of-type(5) {
  margin-left: 0;
}
.lineup02_item:nth-of-type(n+5) {
  margin-top: 20px;
}
.lineup02_item > a {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  height: 100%;
}
.lineup02_item > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.lineup02_item > a:before {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  content: "";
  display: block;
  border-radius: 3px;
  height: calc(100% - 1px);
  width: calc(100% - 1px);
  /*! border: 1px solid #fff; */
}
.lineup02_item > a:hover:before {
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border: 2px solid #0784E8;
  z-index: 4;
}
.lineup02_imageBox {
  position: relative;
  height: 120px;
  background: #f5f7fa;
  text-align: center;
  padding: 10px
}
.lineup02_image {
  height: 100px;
  margin-right: 40px;
}

.lineup02_DH1 .lineup02_image {
  margin-right: 70px;
}

.lineup02_label {
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.lineup02_labelItem {
  display: block;
  padding: 2px 5px;
  border: solid 1px #ccc;
  background: #fff;
  text-align: center;
  font-size: 1.2rem;
}
.lineup02_labelItem + .lineup02_labelItem {
  margin-top: 3px;
}
.lineup02_info {
  padding: 10px 5px;
}
.lineup02_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
.lineup02_type {
  font-size: 1.2rem;
  margin-top: 5px;
}
.lineup_num {
  font-size: 1.6rem;
}

.productLineupTable_noteBottom {
  margin-top: 5px;
  font-size: 1.1rem;
}
.productLineupTable_noteBottom + p{
	margin-top: 0;
}


/*-----limitedCampaign-----*/
.limitedCampaign{
  width: 980px;
  margin: 30px auto 0;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #36689b;
}
.limitedCampaignTtl{
  background: #36689b;
  padding: 10px 10px 12px;
  font-size: 2.5rem;
  color: #fff79b;
  text-align: center;
  letter-spacing: 0.2rem;
  border-radius: 20px 20px 0 0;
  margin-top: -2px;
}
.limitedCampaignTxt{
  padding: 20px;
}
.limitedCampaignDeta{
  width: 700px;
  margin: 20px auto 0;
  padding: 15px;
  background: #e7f9ff;
}
.limitedCampaignDeta dl{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  /*! align-items: center; */
}
.limitedCampaignDeta dl + dl{
  margin-top: 5px;
}
.limitedCampaignDeta dt{
  width: 25%;
  padding: 5px 10px;
  background: #B3E2F2;
  color: #36689b;
}
.limitedCampaignDeta dd{
  flex: 1;
  padding: 5px 0 5px 10px;
  text-align: left;
}
.limitedCampaignCut{
  margin-top: 15px;
  text-align: left;
  font-size: 1.5rem;
}

.specialCoupon{
  width: 554px;
  margin-top: 15px;
  font-size: 1.6rem;
  background: #e7f9ff;
  padding: 15px;
}
.specialCouponTtl{
  color: #36689b;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 下部バナー
------------------------------------- */
.bannerBox {
  margin-top: 50px;
  text-align: center;
}
.bannerBox a {
  display: inline-block;
}
.bannerBox a:hover {
  opacity: 0.7;
}


@media screen and (max-width: 767px) {
/*----------------[Base]----------------*/
.campaignContents{
  font-size: 1.5rem;
}
.campaignContents img{
  width: 100%;
  height: auto;
}

/*----------------[Layout]----------------*/
.l_campaignPoint {
  background-size: 50%;
}

/*----------------[Module]----------------*/
/*-----mv-----*/
.m_campaignMv_inner {
  max-width: 100%;
  height: 400px;
  margin: 0 10px;
  background: url(bg_01_sp.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.m_campaignTitle_inner{
  width: 100%;
  min-width: 80%;
  max-width: 93%;
  margin: 25px auto;
  padding: 30px 10px;
  font-size: 1.5rem;
  min-height: 190px;
}
.m_campaignTitle{
  font-size: 4rem;
}
.m_txtSmall{
font-size: 1.3rem;
}

/*-----section-----*/
.m_section_inner {
  width: 100%;
  padding: 40px 10px;
}
.m_section_ttl {
  font-size: 2.4rem;
}

/*-----button-----*/
.m_button {
  padding: 10px 30px 13px;
}

/*----------------[original]----------------*/
/*-----mv-----*/
.campaignTitleBtn {
  width: 100%;
  font-size: 1.7rem;
}

/*-----coupon01-----*/
.l_campaignCoupon01 .m_section_txt{
  text-align: left;
}
.couponBox01{
  padding: 20px 15px;
  display: block;
}
.couponCol01{
  background-image: url(coupon_bg_sp.png);
  background-size: contain;
}
.couponLead{
  font-size: 1.5rem;
}
.couponPrice{
  font-size: 2.2rem;
}
.couponPriceBold{
  font-size: 3.6rem;
}
.couponCol02{
  width: 100%;
  height: auto;
  margin-top: 15px;
}

.couponBox01 .couponCol01{
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 6% 12% 6.5%;
  margin: 0 auto;
}
.couponBox01 .couponLead{
  font-size: 1.5rem;
}
.couponBox01 .couponPrice{
  font-size: 2.2rem;
}
.couponBox01 .couponPriceBold{
  font-size: 3.6rem;
}
.couponBox01 .couponCol02{
  width: 100%;
}

.couponNotes{
  font-size: 1.2rem;
}
.couponTxt02{
  font-size: 1.5rem;
}

/*-----coupon02-----*/
.couponBox02{
  padding: 20px 15px;
  display: block;
}
.couponBox02 .couponCol01{
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 6% 12% 6.5%;
  margin: 0 auto;
}
/* item_pc */
.couponpcList {
  display: block;
  margin-top: 30px;
}
.couponpcItem{
  width: 100%;
}
  .couponpcItem + .couponpcItem{
  margin-top: 20px;
}
.pcImage{
  max-width: 70%;
  margin: 0 auto;
}
.pcTitle{
  font-size: 1.7rem;
}
.couponpcItem .pcType{
  margin-top: 5px;
}
.couponpcItem .pcPrice span {
  font-size: 2.5rem;
}
.couponpcItem .pcSpec{
  font-size: 1.2rem;
  margin-top: 10px;
}

/*-----coupon03-----*/
.couponBox03{
  padding: 20px 15px;
  display: block;
}
.couponBox03 .couponCol01{
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 6% 12% 6.5%;
  margin: 0 auto;
}
.specialpcList{
  margin: 30px 0 0;
}
.specialpcArea{
  display: block;
}
  .specialpcItem .pcType{
  margin-top: 5px;
}
.specialpcTxt{
  width: 100%;
}
.pcPointTxt li{
  font-size: 1.5rem;
}
.specialpcBtn{
  max-width: 100%;
}
  

/*-----point-----*/
.pointList{
  padding: 0 10px;
  display: block;
}
.pointItem{
  width: 100%;
  padding: 15px 0;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pointItem:nth-of-type(n+2){
  border-top: 2px solid #2097be;
}
.pointItemImg{
  width: 35%;
}
.pointItemTxt{
  margin-top: 0;
  width: 62%;
}

/*-----lineup-----*/
.lineup .lineup_heading {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.lineup02_itemBox + .lineup02_itemBox{
  margin-top: 10px;
}
.lineup02_item {
  width: 49%;
}
.lineup02_item:nth-of-type(n+2) {
  margin-left: 0;
}
.lineup02_item:nth-of-type(2n) {
  margin-left: 2%;
}
.lineup02_item:nth-of-type(n+3) {
  margin-top: 10px;
}
.lineup02_imageBox {
  height: 150px;
}
.lineup02_image {
  margin: 0;
}
.lineup02_DH1 .lineup02_image {
  margin-right: 0;
}

.lineup02_label {
  display: flex;
  width: 94%;
}
.lineup02_labelItem {
  font-size: 1rem;
}
.lineup02_labelItem + .lineup02_labelItem {
  margin: 0 0 0 3px;
}

.productLineupTable_noteBottom {
  margin-top: 15px;
}


/*-----limitedCampaign-----*/
.limitedCampaign{
  width: 100%;
  text-align: left;
}
.limitedCampaignTtl{
  font-size: 2rem;
  letter-spacing: 0;
}
.limitedCampaignTxt {
    padding: 20px 10px;
}
.limitedCampaignDeta{
  width: 100%;
}
.limitedCampaignCut {
  font-size: 1.2rem;
}


.specialCoupon{
  width: 100%;
  font-size: 1.5rem;
  padding: 10px;
}
.specialCouponTtl {
  font-size: 1.6rem;
}
}