@charset "utf-8";
/* ==========================================================
Common
========================================================== */
body {
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #fff;
  color: #000;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}
.wrapper {
  min-width: 1040px;
}
@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 0;
  }
}
.inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0;
    margin: 0 5.33vw;
  }
}
picture {
  display: block;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
.btn {
  display: block;
  margin: 0 auto;
}
.btn img {
  width: 100%;
  height: auto;
}
/* text-style */
.txt_red {
  color: #D6142A;
}
.txt_red2 {
  color: #FF1815;
}
.bullet {
  text-indent: -1em;
  padding-left: 1em;
}
/* text-align */
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .sp-tal {
    text-align: left;
  }
  .sp-tac {
    text-align: center;
  }
  .sp-tar {
    text-align: right;
  }
}
/* 文字サイズ */
.fz10 {
  font-size: 10px !important;
}
.fz11 {
  font-size: 11px !important;
}
.fz12 {
  font-size: 12px !important;
}
.fz13 {
  font-size: 13px !important;
}
.fz14 {
  font-size: 14px !important;
}
.fz15 {
  font-size: 15px !important;
}
.fz16 {
  font-size: 16px !important;
}
.fz17 {
  font-size: 17px !important;
}
.fz18 {
  font-size: 18px !important;
}
.fz19 {
  font-size: 19px !important;
}
.fz20 {
  font-size: 20px !important;
}
.fz21 {
  font-size: 21px !important;
}
.fz22 {
  font-size: 22px !important;
}
.fz23 {
  font-size: 23px !important;
}
.fz24 {
  font-size: 24px !important;
}
.fz25 {
  font-size: 25px !important;
}
.fz26 {
  font-size: 26px !important;
}
.fz27 {
  font-size: 27px !important;
}
.fz28 {
  font-size: 28px !important;
}
.fz29 {
  font-size: 29px !important;
}
.fz30 {
  font-size: 30px !important;
}
.sp-fz10 {
  font-size: 10px !important;
}
.sp-fz11 {
  font-size: 11px !important;
}
.sp-fz12 {
  font-size: 12px !important;
}
.sp-fz13 {
  font-size: 13px !important;
}
.sp-fz14 {
  font-size: 14px !important;
}
.sp-fz15 {
  font-size: 15px !important;
}
.sp-fz16 {
  font-size: 16px !important;
}
.sp-fz17 {
  font-size: 17px !important;
}
.sp-fz18 {
  font-size: 18px !important;
}
.sp-fz19 {
  font-size: 19px !important;
}
.sp-fz20 {
  font-size: 20px !important;
}
.sp-fz21 {
  font-size: 21px !important;
}
.sp-fz22 {
  font-size: 22px !important;
}
.sp-fz23 {
  font-size: 23px !important;
}
.sp-fz24 {
  font-size: 24px !important;
}
.sp-fz25 {
  font-size: 25px !important;
}
.sp-fz26 {
  font-size: 26px !important;
}
.sp-fz27 {
  font-size: 27px !important;
}
.sp-fz28 {
  font-size: 28px !important;
}
.sp-fz29 {
  font-size: 29px !important;
}
.sp-fz30 {
  font-size: 30px !important;
}
/* Responsive
----------------------------------------------------*/
.pc_only {
  display: block !important;
}
.sp_only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/* Hover Animation
----------------------------------------------------*/
.over {
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .over {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .over:hover {
    opacity: 0.6;
  }
}
/* ==========================================================
header
========================================================== */
.page_header {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
}
.page_header .inner {
  width: 100%;
  max-width: unset;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_header .logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 30px 0 0 40px;
  width: 180px;
  /*
		@media @sp {
			width: 120px;
			margin: 10px 0 0 10px;
		}
		*/
}
.page_header .logo a,
.page_header .logo img {
  display: block;
}
@media screen and (max-width: 1600px) {
  .page_header .logo {
    width: 11.25vw;
    margin: 1.875vw 0 0 2.5vw;
  }
}
.page_header .btn_menu {
  cursor: pointer;
  transition: all 0.5s;
}
.page_header .btn_menu:hover {
  opacity: 0.7;
}
.page_header .btn_menu img {
  width: 100px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page_header .btn_menu img {
    width: 60px;
  }
}
.page_header .btn_close {
  cursor: pointer;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  right: 0;
}
.page_header .btn_close:hover {
  opacity: 0.7;
}
.page_header .btn_close img {
  width: 100px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page_header .btn_close img {
    width: 60px;
  }
}
.page_header .slide_menu {
  width: 350px;
  background: #c9514d;
  position: fixed;
  z-index: 999;
  height: 100%;
  top: 0;
  right: -350px;
  padding: 110px 20px 20px;
  box-sizing: border-box;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu {
    width: 280px;
    padding: 70px 15px 15px;
  }
}
.page_header .slide_menu.active {
  right: 0;
}
.page_header .slide_menu_inner {
  position: relative;
  height: 100%;
  overflow-y: scroll;
}
.page_header .slide_menu .menu_list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu .menu_list {
    margin-bottom: 20px;
  }
}
.page_header .slide_menu .menu_list a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu .menu_list a {
    font-size: 16px;
    padding: 10px 0;
  }
}
.page_header .slide_menu .slide_menu_footer {
  text-align: center;
}
.page_header .slide_menu .slide_menu_footer .sub_logo {
  margin-bottom: 20px;
}
.page_header .slide_menu .slide_menu_footer .sub_logo img {
  width: 170px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu .slide_menu_footer .sub_logo img {
    width: 120px;
  }
}
.page_header .slide_menu .slide_menu_footer .sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_header .slide_menu .slide_menu_footer .sns ul li {
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu .slide_menu_footer .sns ul li {
    margin: 0 20px;
  }
}
.page_header .slide_menu .slide_menu_footer .sns ul li a img {
  width: 40px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page_header .slide_menu .slide_menu_footer .sns ul li a img {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page_header {
    display: none;
  }
}
/* ==========================================================
Main Visual
========================================================== */
.main_visual {
  background-color: #c5d566;
  position: relative;
}
.main_visual .page_title img {
  width: 100%;
  height: auto;
}
.main_visual .btn__totop {
  width: 180px;
  width: calc(180/1280*100%);
  position: absolute;
  top: 63%;
  left: 70%;
}
@media screen and (max-width: 767px) {
  .main_visual .btn__totop {
    width: calc(180/640*100%);
    top: inherit;
    left: inherit;
    right: 2%;
    bottom: 2%;
  }
}
.main_visual .btn__totop a {
  display: block;
}
.main_visual .btn__totop img {
  width: 100%;
  height: auto;
}
/* ==========================================================
Contents
========================================================== */
.section {
  background: #fff;
  overflow: hidden;
}
.section .sect_header {
  padding: 20px 0;
  background-color: #d71429;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .section .sect_header {
    padding: 10px 0;
  }
}
.section .sect_header.sect_header2 {
  background: #000;
}
.section .sect_header.sect_header2 .title {
  color: #fff;
}
.section .sect_header .title {
  color: #ff0;
  font-size: 34px;
  font-weight: bold;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .section .sect_header .title {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
.section .sect_header .lead {
  margin-top: 5px;
  font-size: 16px;
  font-weight: bold;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section .sect_header .lead {
    font-size: 3.2vw;
  }
}
.section .sect_body {
  padding: 80px 0;
  background-color: #fdeabe;
}
@media screen and (max-width: 767px) {
  .section .sect_body {
    padding: 30px 0;
  }
}
.section .title02 {
  margin-bottom: 20px;
  padding: 6px 1em;
  background-color: #4E3C2B;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  font-weight: 900;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .section .title02 {
    font-size: 5vw;
  }
}
.section .image {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.section .image img {
  display: block;
}
@media screen and (max-width: 767px) {
  .section .image {
    display: block;
  }
  .section .image img {
    width: 100%;
    max-width: 100%;
  }
}
/* キャンペーンに参加いただける店舗様へ
---------------------------------------------------------- */
.section01 .sect_body {
  background: #fdeabe;
  padding: 55px 0 65px;
}
.section01 .sect_body .inner {
  max-width: 1022px;
}
@media screen and (max-width: 767px) {
  .section01 .sect_body {
    padding: 25px 0;
  }
}
.section01 .lead01 {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section01 .lead01 {
    margin-bottom: 20px;
  }
}
/* キャンペーン概要
---------------------------------------------------------- */
.section02 .sect_header .title {
  font-size: 37px;
}
@media screen and (max-width: 767px) {
  .section02 .sect_header .title {
    font-size: 5vw;
  }
}
.section02 .section02_01 {
  background-color: rgba(92, 181, 49, 0.2);
}
.section02 .section02_02 {
  background-color: #FDEFE5;
}
.section02 .section02_02 .inner {
  max-width: 1005px;
}
.section02 .section02_03 {
  background-color: #ffeece;
}
.section02 .section02_04 {
  position: relative;
  padding: 0;
}
.section02 .section02_04 > * {
  position: relative;
}
@media screen and (max-width: 767px) {
  .section02 .section02_04 {
    padding: 0;
  }
  .section02 .section02_04::before {
    display: none;
  }
  .section02 .section02_04 .inner {
    margin: 0;
  }
}
.section02 .section02_05 {
  padding: 30px 0;
  background-color: #C7E3E1;
}
.section02 .title02 {
  background-color: #EB6100;
}
.section02 .lead02 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section02 .lead02 {
    margin-bottom: 30px;
  }
}
.section02 .p02_01 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section02 .p02_01 {
    margin-bottom: 5px;
    font-size: 4.2vw;
    text-align: center;
  }
}
.section02 .lead03_outer {
  position: relative;
}
.section02 .lead03 {
  margin-bottom: 15px;
}
.section02 .ribbon_lead03 {
  width: 110px;
  position: absolute;
  top: 60px;
  left: -14px;
}
@media screen and (max-width: 767px) {
  .section02 .ribbon_lead03 {
    width: calc(80 / 380 * 100%);
    top: 8.2%;
    left: -3%;
  }
}
.section02 .p02_02 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .section02 .p02_02 {
    font-size: 3.5vw;
  }
}
.section02 .p02_03 {
  margin: 15px 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .section02 .p02_03 {
    font-size: 12px;
    line-height: 1.5;
  }
}
.section02 .p02_04 {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .section02 .p02_04 {
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.5;
  }
}
.section02 .p02_05 {
  margin: 15px 0 30px;
  font-size: 16px;
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  .section02 .p02_05 {
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.5;
  }
}
/* Parts
---------------------------------------------------------- */
.block_flow .title {
  margin: 0 0 25px;
  font-size: 32px;
  font-weight: bold;
  font-weight: 900;
  color: #4F3D2B;
  line-height: 1;
  overflow: hidden;
}
.block_flow .title span {
  position: relative;
  display: table;
  padding: 0 25px;
  margin: 0 auto;
}
.block_flow .title span::before,
.block_flow .title span::after {
  content: "";
  display: block;
  position: absolute;
  width: 50vw;
  height: 2px;
  top: 50%;
  background-color: #4F3D2B;
}
.block_flow .title span::before {
  left: 0;
  transform: translate(-100%, -50%);
}
.block_flow .title span::after {
  right: 0;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .block_flow .title {
    margin: 0 0 10px;
    font-size: 4.5vw;
  }
  .block_flow .title span {
    padding: 0 4vw;
  }
  .block_flow .title span::before,
  .block_flow .title span::after {
    height: 1px;
  }
}
.block_coupon_type {
  display: flex;
  justify-content: space-between;
}
.block_coupon_type .image {
  margin: 0 0 15px;
  width: 486px;
}
@media screen and (max-width: 767px) {
  .block_coupon_type {
    display: block;
    margin: 0;
  }
  .block_coupon_type .image {
    margin: 0 0 10px;
    width: auto;
  }
}
.block_campaign_period .block {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.block_campaign_period .block dt {
  margin-right: 10px;
  width: 94px;
  flex-shrink: 0;
}
.block_campaign_period .block dd {
  width: 100%;
}
.block_campaign_period .block hr {
  margin: 15px 0;
  height: 1px;
  border: 0;
  background-color: #D61518;
}
.block_campaign_period.style02 {
  margin: 30px 0;
}
.block_campaign_period.style02 .block dt {
  width: 108px;
}
@media screen and (max-width: 767px) {
  .block_campaign_period .block {
    padding: 10px 0;
  }
  .block_campaign_period .block + .block {
    border-top: 1px solid #D61518;
  }
  .block_campaign_period .block dt {
    width: 15.8% !important;
  }
  .block_campaign_period .block hr {
    margin: 6px 0;
  }
  .block_campaign_period.style01 .block dt {
    align-self: start;
    padding-top: 1.38%;
  }
  .block_campaign_period.style02 {
    margin: 5px 0;
  }
}
.block_store {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: #f2f2f2;
  font-size: 16px;
}
.block_store h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #4d4d4d;
  padding: 5px 1em;
}
@media screen and (max-width: 767px) {
  .block_store h3 {
    text-align: center;
    font-size: 18px;
    padding: 0.5em;
  }
}
.block_store h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .block_store h5 {
    font-size: 16px;
  }
}
.block_store_inner {
  padding: 16px 35px 40px;
}
@media screen and (max-width: 767px) {
  .block_store_inner {
    padding: 15px;
  }
}
.block_store_inner ul {
  margin-bottom: 25px;
}
.block_store_inner ul li {
  padding-left: 2em;
  text-indent: -2em;
}
.block_store_inner ul li span {
  margin-right: 1em;
}
.block_recruiting {
  max-width: 760px;
  margin: 0 auto 40px;
  padding-bottom: 190px;
  background: url(../img/img_shopping.png) center bottom no-repeat;
  background-size: 414px auto;
}
@media screen and (max-width: 767px) {
  .block_recruiting {
    margin: 15px 0;
    padding-bottom: 34vw;
    background-size: 70vw auto;
  }
}
.block_condition {
  display: table;
  width: 100%;
  margin: 25px 0;
  border: 1px solid #4F3D2B;
}
.block_condition dt {
  display: table-cell;
  vertical-align: middle;
  width: 246px;
  background-color: #4F3D2B;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.block_condition dd {
  display: table-cell;
  padding: 15px 45px;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
}
.block_condition dd p {
  position: relative;
  padding-left: 20px;
}
.block_condition dd p::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4F3D2B;
}
.block_condition a {
  color: #025088;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .block_condition {
    display: block;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #4F3D2B;
  }
  .block_condition dt {
    display: block;
    width: auto;
    font-size: 4.5vw;
  }
  .block_condition dd {
    display: block;
    padding: 10px 20px;
  }
  .block_condition dd p {
    padding-left: 16px;
  }
  .block_condition dd p::after {
    top: 10px;
    width: 6px;
    height: 6px;
  }
}
.block_question {
  padding: 50px 0 0;
}
.block_question a {
  transition: all 0.5s;
}
.block_question a:hover {
  opacity: 0.7;
}
.flex_btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flex_btn_container {
    padding: 40px 0;
  }
}
.flex_btn_container dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
  padding: 40px 1%;
}
.flex_btn_container dl dt {
  max-width: 430px;
  margin: 0 auto;
}
.flex_btn_container .block02 dt {
  position: relative;
}
.flex_btn_container .block02 dt span {
  width: 100%;
  color: #d71429;
  font-size: 14px;
  position: absolute;
  bottom: -2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flex_btn_container .block02 dt span {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 767px) {
  .flex_btn_container {
    display: block;
  }
  .flex_btn_container dl {
    width: 100%;
    padding: 0;
  }
  .flex_btn_container dl + dl {
    margin-top: 20px;
  }
  .flex_btn_container dl dt {
    width: 80vw;
    max-width: none;
    margin: 0 0 10px;
  }
}
.btn_style {
  position: relative;
  display: block;
  margin: 30px 0 0;
  padding: 15px;
  border-radius: 20px;
  background-color: #4E3C2B;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
}
.btn_style.arrow {
  padding: 15px 50px;
}
.btn_style.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  margin-right: 20px;
  transform: translateY(-50%);
  background: url(../img/ico_btn_arrow.png) center bottom no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .btn_style {
    margin: 15px 0 0;
    padding: 2vw;
    border-radius: 10px;
    font-size: 4.5vw;
  }
  .btn_style.arrow {
    padding: 2vw 9vw;
  }
  .btn_style.arrow::after {
    width: 4vw;
    height: 4vw;
    margin-right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .btn_docs {
    width: 66vw;
  }
}
.btn_entry.end {
  opacity: 0.3;
  pointer-events: none;
}
.btn_entry.soon {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .btn_entry {
    width: 70vw;
  }
}
/* ==========================================================
Footer
========================================================== */
.page_footer {
  padding: 60px 0 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page_footer {
    padding: 20px 0 6vw;
  }
  .page_footer .inner {
    margin: 0 10vw;
  }
}
.page_footer .footer_row {
  display: flex;
  align-items: flex-end;
  margin: 0 0 15px;
}
.page_footer .footer_row > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .page_footer .footer_row {
    display: block;
    margin: 0;
  }
}
.page_footer .footer_row.row02 {
  align-items: center;
}
.page_footer .txt_contact {
  width: 141px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .page_footer .txt_contact {
    width: auto;
    margin: 0 0 10px;
  }
}
.page_footer .txt_phone {
  width: 485px;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .page_footer .txt_phone {
    width: auto;
    margin: 0 0 8px;
  }
}
.page_footer .txt_hours {
  width: 342px;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .page_footer .txt_hours {
    width: auto;
    margin: 0 0 8px;
  }
}
.page_footer .txt_co {
  width: 610px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .page_footer .txt_co {
    width: auto;
    margin: 0 0 8px;
  }
}
.page_footer .txt_address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .page_footer .txt_address {
    font-size: 3.5vw;
    padding-left: 6em;
  }
}
.page_footer .copyright {
  margin-top: 25px;
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .page_footer .copyright {
    margin-top: 10px;
    font-size: 10px;
  }
}
.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 15px;
    right: 15px;
    width: 10vw;
    height: 10vw;
    opacity: 0.7;
  }
}
/*# sourceMappingURL=style.css.map */