/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
/* ==============================
  index
  ---------------------------
  intro
    >_photo
    >_campaign

  point
    >_summary_list
    >_item 1 / 2 / 3

  plan
    >_list
      >img / title / price
      >data
        >title / text
      >shop
        >name / checked
    >_caution

  flow
    >_list
    >_caution
    >_reservation

  access
    >_shop

  qa
    >_list
    >modal -> modal.sass

  fixed_bottom

============================== */
img, svg {
  display: block;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .main_wrapper {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer {
  padding-bottom: 100px;
}

.intro {
  overflow: hidden;
  background: #eee;
}

.intro_photo {
  position: relative;
}

.intro_photo__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75vw;
  height: 75vw;
}

@media screen and (min-width: 750px) {
  .intro_photo__title {
    width: 450px;
    height: 450px;
  }
}

.intro_photo__title--text {
  font-size: 0;
}

.intro_photo__title--svg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
}

.intro_photo__title--text {
  font-size: 0;
}

.intro_text {
  margin: auto;
  padding: 2.5% 0;
  width: 65%;
}

.intro_campaign {
  padding: 10% 5%;
  background: url(../img/common/bg_border.png) repeat;
  background-size: 4px;
}

.intro_campaign__title {
  margin-bottom: 10%;
}

.intro_campaign__title h3 {
  font-size: 0;
}

.intro_campaign__title svg {
  margin: 0 auto;
  width: 40%;
}

.intro_campaign__discount {
  padding: 5% 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: -webkit-gradient(linear, left top, right top, from(#ccb7ae), to(#c9c2bc));
  background-image: -webkit-linear-gradient(left, #ccb7ae, #c9c2bc);
  background-image: linear-gradient(90deg, #ccb7ae, #c9c2bc);
}

.intro_campaign__discount::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px #fff solid;
}

.intro_campaign__discount--img_name {
  height: 16px;
  width: auto;
  margin-right: 5px;
}

.intro_campaign__discount--img_be {
  height: 36px;
  width: auto;
  margin-right: 5px;
}

.intro_campaign__discount--img_af {
  height: 16px;
  width: auto;
}

.intro_campaign__discount--num {
  margin-bottom: -5px;
  margin-right: 5px;
  line-height: 1;
  color: #fff;
  font-size: 5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.point_inner {
  padding: 15% 5%;
}

.point_title {
  margin-bottom: 10%;
}

.point_title--logo {
  width: 35%;
  margin: 0 auto 15%;
}

.point_title h2 {
  font-size: 0;
}

.point_title svg {
  margin: 0 auto;
  width: 90%;
}

.point_summary_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 5%;
}

.point_summary_list__item {
  width: 33.33%;
  width: calc(100% / 3);
}

.point_summary_list__item--icon {
  position: relative;
  margin: 0 auto 10%;
  width: 100px;
  height: 100px;
  background: url(../img/index/point/ci_point.svg) no-repeat center center;
  background-size: 100px;
}

@media screen and (min-width: 750px) {
  .point_summary_list__item--icon {
    width: 200px;
    height: 200px;
    background-size: 200px;
  }
}

.point_summary_list__item--icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.point_summary_list__item--icon_img1 {
  width: 60%;
}

.point_summary_list__item--icon_img2 {
  width: 60%;
}

.point_summary_list__item--icon_img3 {
  width: 50%;
}

@media screen and (min-width: 750px) {
  .point_summary_list__item--icon_img1 {
    width: 80px;
  }
  .point_summary_list__item--icon_img2 {
    width: 93px;
  }
  .point_summary_list__item--icon_img3 {
    width: 80px;
  }
}

.point_summary_list__item--text {
  font-size: 1.2rem;
  font-weight: bold;
}

@media screen and (min-width: 750px) {
  .point_summary_list__item--text {
    font-size: 1.6rem;
  }
}

.point_item--num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.point_item--num_icon {
  margin-right: 5px;
  position: relative;
  width: 60px;
  height: 60px;
  background: url(../img/index/point/i_point.svg) no-repeat center center;
  background-size: 60px;
}

.point_item--num_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.point_item--num_icon_img1 {
  width: 60%;
}

.point_item--num_icon_img2 {
  width: 60%;
}

.point_item--num_icon_img3 {
  width: 50%;
}

.point_item--num_svg {
  height: 30px;
}

.point_item--num_svg svg {
  width: auto;
  height: 100%;
}

.point_item--img {
  margin: -30px 5% 0;
  border-radius: 5px;
  overflow: hidden;
}

.point_item--title {
  font-weight: bold;
  font-size: 2rem;
}

.point_item--title br {
  display: none;
}

.point_item--title span {
  color: #c9c2be;
}

.point_item--text {
  padding: 0 10% 5%;
}

.plan {
  background: url(../img/common/bg_border.png) repeat;
  background-size: 4px;
}

.plan_inner {
  padding: 15% 0%;
}

.plan_title {
  margin: 0 5% 10%;
}

.plan_title h2 {
  font-size: 0;
}

.plan_title svg {
  margin: 0 auto;
  width: 40%;
}

.plan_list__summary {
  margin: 0 5%;
  padding: 5%;
  background: #fff;
  border-radius: 5px;
}

.plan_list__summary--img {
  margin-bottom: 5%;
  overflow: hidden;
  line-height: 1;
  letter-spacing: 0;
  font-size: 0;
}

.plan_list__summary--img img {
  display: inline-block;
  width: 50%;
}

.plan_list__summary--title {
  font-weight: bold;
  font-size: 1.8rem;
}

.plan_list__summary--price {
  font-size: 3rem;
  color: #cbb6ae;
  margin-bottom: 2.5%;
}

.plan_list__summary--data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.plan_list__summary--data .plan_data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 49%;
  border-radius: 3px;
  border: #c9c2be 1px solid;
  font-size: 1.2rem;
  font-weight: bold;
}

.plan_list__summary--data .plan_data__item .plan_data__item--title {
  padding: 5px 0;
  background: #c9c2be;
  color: #fff;
  width: 30%;
}

.plan_list__summary--data .plan_data__item .plan_data__item--text {
  padding: 5px 0;
  width: 70%;
}

.plan_list__summary--shop {
  padding: 5% 0;
  color: #c9c2bf;
  font-weight: bold;
}

.plan_list__summary--shop .plan_shop--title {
  text-align: left;
  margin-bottom: 2.5%;
}

.plan_list__summary--shop .plan_shop_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px #c9c2bf solid;
  font-size: 1.2rem;
}

.plan_list__summary--shop .plan_shop_list__item {
  width: 33.33%;
  width: calc(100% / 3);
  border-right: 1px #c9c2bf solid;
}

.plan_list__summary--shop .plan_shop_list__item:nth-child(3) {
  border: none;
}

.plan_list__summary--shop .plan_shop_list__item--name {
  padding: 2.5px 0;
}

.plan_list__summary--shop .plan_shop_list__item--checked {
  border-top: 1px #c9c2bf solid;
  padding: 50% 0 0;
  font-size: 0;
}

.plan_list__summary--shop .plan_shop_list__item--checked.checked_on {
  background: url(../img/index/plan/i_maru.svg) no-repeat center center;
  background-size: 30px;
}

.plan_list__summary--shop .plan_shop_list__item--checked.checked_off {
  background: url(../img/index/plan/i_batu.svg) no-repeat center center;
  background-size: 30px;
}

.plan_caution {
  padding: 5% 10% 0;
  text-align: left;
}

.plan .slick-prev, .plan .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: #c9c2bf;
  border-radius: 100%;
  z-index: 10;
  font-size: 0;
}

.plan .slick-prev::before, .plan .slick-next::before {
  position: absolute;
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.plan .slick-prev {
  left: 10px;
}

.plan .slick-prev::before {
  right: 8px;
  -webkit-transform: translate(0, -50%) rotate(-135deg);
  transform: translate(0, -50%) rotate(-135deg);
}

.plan .slick-next {
  right: 10px;
}

.plan .slick-next::before {
  left: 8px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.flow_inner {
  padding: 15% 5%;
}

.flow_title {
  position: relative;
  margin-bottom: 10%;
}

.flow_title h2 {
  font-size: 0;
}

.flow_title svg {
  margin: 0 auto;
  width: 70%;
}

.flow_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5%;
}

.flow_list__item:last-child .flow_list__img::before {
  display: none;
}

.flow_list__img {
  position: relative;
  width: 37.5%;
  padding: 0 5px 0 0;
}

.flow_list__img::before {
  display: block;
  position: absolute;
  top: 50%;
  left: auto;
  bottom: auto;
  right: -1px;
  width: 2px;
  height: 110%;
  content: "";
  background: #c9c2be;
  z-index: 1;
}

.flow_list__img--icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 50px;
  height: 50px;
  background: url(../img/index/point/i_point.svg) no-repeat center center;
  background-size: 50px;
  z-index: 1;
}

.flow_list__img--icon::before {
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  bottom: auto;
  right: auto;
  width: 2px;
  height: 10px;
  content: "";
  background: #fff;
  -webkit-transform: translate(-1px, 0);
  transform: translate(-1px, 0);
  z-index: 1;
}

.flow_list__img--icon::after {
  display: block;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: -10px;
  right: auto;
  width: 2px;
  height: 10px;
  content: "";
  background: #fff;
  -webkit-transform: translate(-1px, 0);
  transform: translate(-1px, 0);
  z-index: 1;
}

.flow_list__img--icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.flow_list__img--icon_img1 {
  width: 50%;
}

.flow_list__img--icon_img2 {
  width: 55%;
}

.flow_list__img--icon_img3 {
  width: 50%;
}

.flow_list__img--icon_img4 {
  width: 55%;
}

.flow_list__img--icon_img5 {
  width: 47%;
}

.flow_list__text {
  width: 55%;
  text-align: left;
}

.flow_list__text--title {
  font-size: 1.6rem;
}

.flow_list__text--text {
  font-size: 1.2rem;
}

@media screen and (min-width: 750px) {
  .flow_list__text--text {
    font-size: 1.4rem;
  }
}

.flow_caution {
  margin: 5% 5% 10%;
  padding: 5%;
  background: #f3f1ef;
  text-align: left;
}

.flow_reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flow_reservation_btn {
  position: relative;
  width: 47.5%;
  display: block;
  padding: 5% 0;
  background: #cbb6ae;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}

.flow_reservation_btn--first {
  padding-left: 15px;
}

.flow_reservation_btn--first::before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: auto;
  right: auto;
  width: 25px;
  height: 100%;
  content: "";
  background: url(../img/index/flow/btn_first.png) no-repeat center center;
  background-size: 20px;
}

.access_inner {
  padding: 5%;
}

.access_title {
  margin-bottom: 10%;
}

.access_title h2 {
  font-size: 0;
}

.access_title svg {
  margin: 0 auto;
  width: 45%;
}

.access .slick-dots {
  margin-top: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.access .slick-dots > li {
  width: 24.5%;
}

.access_shop {
  margin-bottom: 10%;
}

.access_shop_img-list {
  margin-bottom: 2.5%;
}

.access_shop_name {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}

.access_shop_text {
  text-align: left;
  font-size: 1.2rem;
}

.access_shop_text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 5px;
}

.access_shop_text__item span {
  display: block;
}

.access_shop_text__item span:nth-child(1) {
  width: 70px;
}

.access_shop_text__item span:nth-child(2) {
  width: calc(100% - 70px);
}

.qa_inner {
  padding: 5%;
}

.qa_title {
  margin-bottom: 10%;
}

.qa_title h2 {
  font-size: 0;
}

.qa_title svg {
  margin: 0 auto;
  width: 45%;
}

.qa_list {
  padding: 0 5%;
}

.qa_list__item {
  position: relative;
  padding: 5% 0;
  margin-bottom: 5%;
  border: 1px #c9c2bc solid;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.qa_list__item::before, .qa_list__item::after {
  display: block;
  position: absolute;
  top: 50%;
  left: auto;
  bottom: auto;
  right: 15px;
  width: 15px;
  height: 2px;
  content: "";
  background: #c9c2bc;
}

.qa_list__item::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fixed_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #cbb6ae;
  z-index: 100;
}

.fixed_bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.5% 5%;
}

@media screen and (min-width: 750px) {
  .fixed_bottom_inner {
    padding: 15px 5%;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fixed_bottom_btn {
  position: relative;
  width: 47.5%;
  display: block;
  padding: 5% 0;
  background: #fff;
  border-radius: 5px;
  color: #434343;
  font-weight: bold;
}

@media screen and (min-width: 750px) {
  .fixed_bottom_btn {
    padding: 7.5px 0;
    font-size: 2rem;
  }
}

.fixed_bottom_btn--first {
  padding-left: 15px;
}

.fixed_bottom_btn--first::before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: auto;
  right: auto;
  width: 25px;
  height: 100%;
  content: "";
  background: url(../img/index/fixed/btn_first.png) no-repeat center center;
  background-size: 20px;
}

.fixed_bottom_btn--tel {
  padding-left: 15px;
}

.fixed_bottom_btn--tel::before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: auto;
  right: auto;
  width: 25px;
  height: 100%;
  content: "";
  background: url(../img/index/fixed/btn_tel.svg) no-repeat center center;
  background-size: 30px;
}
