/* -----------------------------------------------------------
  Common
----------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
button,
.btn {
  cursor: pointer;
  transition: all 0.4s ease;
}

.page-wrapper {
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
@media only screen and (min-width: 1700px) {
  .container {
    max-width: 1670px;
  }
}

.over {
  transition: all 0.4s ease;
}
.over:hover {
  opacity: 0.7;
}

.text-line-through {
  text-decoration: line-through !important;
}

.w-full {
  width: 100% !important;
}

.font-helvetica {
  font-family: Helvetica, sans-serif !important;
}

.text-primary {
  color: #e60012 !important;
}

.text-hover-primary {
  transition: all 0.4s ease;
}
.text-hover-primary:hover {
  color: #e60012 !important;
}

.checkbox-style .check-input {
  display: none;
}
.checkbox-style .check-input:checked + .check-btn .ic-check {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%23f02719' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  border-color: #f02719;
}
.checkbox-style .check-input[disabled] + .check-btn {
  cursor: not-allowed;
}
.checkbox-style .check-input[disabled] + .check-btn .txt-check {
  color: #b3b3b3;
}
.checkbox-style .check-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-style .ic-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  border: 2px solid #747474;
  border-radius: 4px;
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .checkbox-style .ic-check {
    width: 3.3647058824vw;
    height: 3.3647058824vw;
    border-radius: 0.2vw;
    margin-right: 2.0705882353vw;
  }
}
.checkbox-style .txt-check {
  font-weight: 400;
  font-size: 16px;
  color: #f02719;
}
@media only screen and (max-width: 767px) {
  .checkbox-style .txt-check {
    font-size: 3.2vw;
  }
}

/* -----------------------------------------------------------
  .slider-common
----------------------------------------------------------- */
.slider-common .slick-arrow {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 0 none;
  box-shadow: none;
  cursor: pointer;
  outline: 0;
  text-indent: -9999px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  z-index: 10;
}
@media only screen and (max-width: 1199px) {
  .slider-common .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .slider-common .slick-arrow {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-common .slick-arrow {
    width: 20px;
    height: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-common .slick-arrow {
    width: 3.3vw;
    height: 4vw;
  }
}
.slider-common .slick-arrow:active {
  opacity: 0.8;
}
.slider-common .slick-prev {
  left: 30px;
  right: auto;
}
@media only screen and (max-width: 991px) {
  .slider-common .slick-prev {
    left: 20px;
  }
}
.slider-common .slick-prev:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  transform-origin: left bottom;
  transform: skew(-46deg);
  width: 18px;
  height: 150%;
  background: #fff;
}
.slider-common .slick-prev:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform-origin: left top;
  transform: skew(46deg);
  width: 18px;
  height: 150%;
  background: #fff;
}
.slider-common .slick-next {
  right: 30px;
  left: auto;
}
@media only screen and (max-width: 991px) {
  .slider-common .slick-next {
    right: 20px;
  }
}
.slider-common .slick-next:before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 50%;
  transform-origin: right bottom;
  transform: skew(46deg);
  width: 18px;
  height: 25px;
  background: #fff;
}
.slider-common .slick-next:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: right top;
  transform: skew(-46deg);
  width: 18px;
  height: 25px;
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .slider-common .slick-prev:before, .slider-common .slick-prev:after,
  .slider-common .slick-next:before,
  .slider-common .slick-next:after {
    width: 14px;
    height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .slider-common .slick-prev:before, .slider-common .slick-prev:after,
  .slider-common .slick-next:before,
  .slider-common .slick-next:after {
    width: 11px;
    height: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-common .slick-prev:before, .slider-common .slick-prev:after,
  .slider-common .slick-next:before,
  .slider-common .slick-next:after {
    width: 8px;
    height: 11px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-common .slick-prev:before, .slider-common .slick-prev:after,
  .slider-common .slick-next:before,
  .slider-common .slick-next:after {
    width: 1.2vw;
    height: 2vw;
  }
}
.slider-common .slick-dots {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: auto;
  top: auto;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.slider-common .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  padding: 0;
  margin: 0 5px;
}
.slider-common .slick-dots li button {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  text-indent: -9999px;
  color: transparent;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.slider-common .slick-dots li.slick-active button {
  background: #e60012;
}

.note-common ul li {
  position: relative;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4375;
  color: #000;
  padding-left: 17px;
}
@media only screen and (max-width: 767px) {
  .note-common ul li {
    font-size: 2.3294117647vw;
    line-height: 1.3333333333;
    padding-left: 2.2vw;
  }
}
.note-common ul li .ic {
  position: absolute;
  left: 0;
  top: 2px;
}
@media only screen and (max-width: 767px) {
  .note-common ul li .ic {
    top: 0.2vw;
  }
}
.note-common ul li .only-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .note-common ul li .only-sp {
    display: block;
  }
}

.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection {
  display: flex;
  align-items: center;
  height: 10.2235294118vw;
  background: transparent url(../images/ic-angle-down.png) no-repeat right 3.2352941176vw center;
  border: 0.2588235294vw solid #e60012;
  padding-left: 3.6235294118vw;
  padding-right: 7.1176470588vw;
}
.select2-container .select2-selection__rendered {
  line-height: normal !important;
  padding: 0 !important;
}
.select2-container .select2-selection__rendered .ic-check {
  display: none;
}
.select2-container .select2-selection__rendered .txt {
  font-weight: 400;
  font-size: 3.4941176471vw;
  color: #000;
}
.select2-container .select2-selection__placeholder {
  font-weight: 400;
  font-size: 3.4941176471vw;
  color: #000 !important;
}
.select2-container .select2-selection__arrow {
  display: none !important;
}

.select2-dropdown {
  position: relative;
  top: 2.5882352941vw;
  overflow: hidden;
  border: 0 !important;
  border-radius: 1.2941176471vw !important;
  background: #f7f8f8 !important;
  box-shadow: 0 0 0.7764705882vw 0.1294117647vw rgba(0, 0, 0, 0.1) !important;
}
.select2-dropdown .select2-results__option {
  background: none !important;
  padding: 3.6235294118vw 3.2352941176vw;
}
.select2-dropdown .select2-results__option[aria-selected=true] .ic-check img {
  display: block;
}
.select2-dropdown .select2-results__option .custom-option {
  display: flex;
  align-items: center;
  color: inherit;
}
.select2-dropdown .select2-results__option .ic-check {
  width: 7.7647058824vw;
}
.select2-dropdown .select2-results__option .ic-check img {
  display: none;
  width: 5.4352941176vw;
}
.select2-dropdown .select2-results__option .txt {
  font-weight: 300;
  font-size: 4.2705882353vw;
  color: #000;
}

.pagination-style {
  text-align: center;
}
.pagination-style.blue ul li.active .item-pagination {
  background: #00a0e9;
}
.pagination-style ul {
  display: inline-flex;
  align-items: center;
  gap: 0 19px;
}
@media only screen and (max-width: 767px) {
  .pagination-style ul {
    gap: 0 2.058824vw;
  }
}
.pagination-style ul li .item-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  height: 50px;
  font-weight: 400;
  font-size: 23px;
  color: #fff;
  border-radius: 6px;
  background: #e5e5e5;
  white-space: nowrap;
  padding: 0 0.6470588235vw;
}
@media only screen and (max-width: 767px) {
  .pagination-style ul li .item-pagination {
    width: 6.4705882353vw;
    height: 6.4705882353vw;
    font-size: 3.2352941176vw;
    border-radius: 0.7764705882vw;
  }
}
.pagination-style ul li .item-pagination:hover {
  background: rgb(206.1, 206.1, 206.1);
}
.pagination-style ul li.active .item-pagination {
  background: #e60012;
}
.pagination-style ul li.item-prev .item-pagination, .pagination-style ul li.item-next .item-pagination {
  width: auto;
  font-size: 18px;
  color: #808080;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0 24px;
}
@media only screen and (max-width: 767px) {
  .pagination-style ul li.item-prev .item-pagination, .pagination-style ul li.item-next .item-pagination {
    font-size: 2.3294117647vw;
    padding: 0 3.6235294118vw;
  }
}
.pagination-style ul li.item-prev .item-pagination:hover, .pagination-style ul li.item-next .item-pagination:hover {
  background: rgb(242.25, 242.25, 242.25);
}
.pagination-style ul li a {
  text-decoration: none;
  color: #fff;
}

/*
 * simplyScroll 2 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 *
 * Copyright (c) 2009-2012 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT and GPL licenses.
 *
 * Last revised: 31/01/2012
 *
 */
/* Default/Master classes

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/
.simply-scroll-container {
  /* Container DIV - automatically generated */
  position: relative;
}

.simply-scroll-clip {
  /* Clip DIV - automatically generated */
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  /* UL/OL/DIV - the element that simplyScroll is inited on */
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simply-scroll-list li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.simply-scroll-list li img {
  border: none;
  display: block;
}

.simply-scroll-btn {
  position: absolute;
  background-image: url(buttons.png);
  width: 42px;
  height: 44px;
  z-index: 3;
  cursor: pointer;
}

.simply-scroll-btn-left {
  left: 6px;
  bottom: 6px;
  background-position: 0 -44px;
}

.simply-scroll-btn-left.disabled {
  background-position: 0 0 !important;
}

.simply-scroll-btn-left:hover,
.simply-scroll-btn-left:focus {
  background-position: 0 -88px;
}

.simply-scroll-btn-right {
  right: 6px;
  bottom: 6px;
  background-position: -84px -44px;
}

.simply-scroll-btn-right.disabled {
  background-position: -84px 0 !important;
}

.simply-scroll-btn-right:hover,
.simply-scroll-btn-right:focus {
  background-position: -84px -88px;
}

.simply-scroll-btn-up {
  right: 6px;
  top: 6px;
  background-position: -126px -44px;
}

.simply-scroll-btn-up.disabled {
  background-position: -126px 0 !important;
}

.simply-scroll-btn-up:hover,
.simply-scroll-btn-up:focus {
  background-position: -126px -88px;
}

.simply-scroll-btn-down {
  right: 6px;
  bottom: 6px;
  background-position: -42px -44px;
}

.simply-scroll-btn-down.disabled {
  background-position: -42px 0 !important;
}

.simply-scroll-btn-down:hover,
.simply-scroll-btn-down:focus {
  background-position: -42px -88px;
}

.simply-scroll-btn-pause {
  right: 6px;
  bottom: 6px;
  background-position: -168px -44px;
}

.simply-scroll-btn-pause:hover,
.simply-scroll-btn-pause:focus {
  background-position: -168px -88px;
}

.simply-scroll-btn-pause.active {
  background-position: -84px -44px;
}

.simply-scroll-btn-pause.active:hover,
.simply-scroll-btn-pause.active:focus {
  background-position: -84px -88px;
}

/* Custom class modifications - override classees

.simply-scroll is default

*/
.simply-scroll {
  /* Customisable base class for style override DIV */
  width: 576px;
  height: 200px;
  margin-bottom: 1em;
}

.simply-scroll .simply-scroll-clip {
  width: 576px;
  height: 200px;
}

.simply-scroll .simply-scroll-list li {
  float: left;
  width: 290px;
  height: 200px;
}

/* Vertical scroller example */
.vert {
  /* wider than clip to position buttons to side */
  width: 340px;
  height: 400px;
  margin-bottom: 1.5em;
}

.vert .simply-scroll-clip {
  width: 290px;
  height: 400px;
}

.vert .simply-scroll-list li {
  width: 290px;
  height: 200px;
}

.vert .simply-scroll-btn-up {
  /* modified btn pos */
  right: 0;
  top: 0;
}

.vert .simply-scroll-btn-down {
  /* modified btn pos */
  right: 0;
  top: 52px;
}

/* NOTE left-right classes wouldn't be needed on vertical scroller */
.heading-sim-step {
  display: flex;
  max-width: 1238px;
  padding: 0 20px;
  margin: 0 auto 98px;
}
@media only screen and (max-width: 991px) {
  .heading-sim-step {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .heading-sim-step {
    align-items: flex-start;
    max-width: 100%;
    padding: 0 1vw 0 3.5vw;
    margin: 0 auto 5.052941vw;
  }
}
.heading-sim-step .num span {
  position: relative;
  top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 70px;
  line-height: 1;
  color: #fff200;
  background: #e60012;
}
@media only screen and (max-width: 767px) {
  .heading-sim-step .num span {
    top: -1vw;
    width: 10.3529411765vw;
    height: 10.3529411765vw;
    font-size: 8.8vw;
    border-radius: 2.3294117647vw;
  }
}
.heading-sim-step .lg {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.5714285714;
  color: #000;
  letter-spacing: -0.01em;
  padding-left: 34px;
}
@media only screen and (max-width: 1399px) {
  .heading-sim-step .lg {
    font-size: 54px;
  }
}
@media only screen and (max-width: 991px) {
  .heading-sim-step .lg {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .heading-sim-step .lg {
    font-size: 6.8588235294vw;
    line-height: 1.4;
    padding-left: 3.8823529412vw;
  }
}
.heading-sim-step .lg .sm {
  display: block;
  font-weight: 400;
  font-size: 26px;
  color: #e60012;
  letter-spacing: normal;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .heading-sim-step .lg .sm {
    font-size: 2.7176470588vw;
    margin-top: 1.2941176471vw;
  }
}

.heading-page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 192px;
  background: #e60012;
}
@media only screen and (max-width: 767px) {
  .heading-page-title {
    height: 24.9082353vw;
  }
}
.heading-page-title.bg-blue {
  background: #00a0e9;
}
.heading-page-title .txt-title {
  text-align: center;
  margin: -5px auto 0;
}
@media only screen and (max-width: 767px) {
  .heading-page-title .txt-title {
    margin: 0 auto 0;
  }
}
.heading-page-title .txt-title .ic {
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .heading-page-title .txt-title .ic {
    margin-top: -1.71765vw;
    margin-bottom: 2.03529vw;
  }
}
.heading-page-title .txt-title .ic img {
  height: 58px;
}
@media only screen and (max-width: 767px) {
  .heading-page-title .txt-title .ic img {
    height: 8vw;
  }
}
.heading-page-title .txt-title .txt {
  font-weight: 500;
  font-size: 30px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .heading-page-title .txt-title .txt {
    font-size: 2.8470588235vw;
  }
}
.heading-page-title .txt-title .txt-coupon img {
  width: 254px;
}
@media only screen and (max-width: 767px) {
  .heading-page-title .txt-title .txt-coupon img {
    width: 40vw;
  }
}

.heading-shop {
  font-weight: 700;
  font-size: 30px;
  color: #e60012;
  text-align: center;
  border-bottom: 1px solid #e60012;
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .heading-shop {
    font-size: 4.9176470588vw;
    border-bottom-width: 0.4vw;
    padding-bottom: 3.5vw;
  }
}

.heading-esim {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .heading-esim {
    font-size: 7.3764705882vw;
  }
}
.heading-esim.white {
  color: #fff;
}
.heading-esim .ic {
  position: relative;
  top: -4px;
  width: 41px;
  margin-right: 9px;
}
@media only screen and (max-width: 767px) {
  .heading-esim .ic {
    top: -0.5vw;
    width: 6.4705882353vw;
    margin-right: 1.1647058824vw;
  }
}

.heading-everyday-shopping {
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .heading-everyday-shopping {
    margin-bottom: 8.9vw;
  }
}
.heading-everyday-shopping.c-black .lg-1 {
  color: #000;
}
.heading-everyday-shopping.c-black .lg-1 span {
  border-bottom-color: #000;
}
.heading-everyday-shopping.c-black .lg-1 span:before {
  border-top-color: #000;
}
.heading-everyday-shopping.c-black .lg-1 span:after {
  border-top-color: #fff;
}
.heading-everyday-shopping.c-black .lg-2 {
  color: #000;
}
.heading-everyday-shopping .lg-1 {
  display: block;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #0097e5;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .heading-everyday-shopping .lg-1 {
    font-size: 5.3058823529vw;
    margin-bottom: 3vw;
  }
}
.heading-everyday-shopping .lg-1 span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 2px solid #0097e5;
  padding: 0 5px 6px;
}
@media (max-width: 767px) {
  .heading-everyday-shopping .lg-1 span {
    border-bottom-width: 0.3882352941vw;
    padding: 0 0.5vw 0.6vw;
  }
}
.heading-everyday-shopping .lg-1 span:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #0097e5;
}
@media (max-width: 767px) {
  .heading-everyday-shopping .lg-1 span:before {
    border-left-width: 2.3294117647vw;
    border-right-width: 2.3294117647vw;
    border-top-width: 3.3647058824vw;
  }
}
.heading-everyday-shopping .lg-1 span:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #fff;
}
@media (max-width: 767px) {
  .heading-everyday-shopping .lg-1 span:after {
    bottom: 0.5176470588vw;
    border-left-width: 2.3294117647vw;
    border-right-width: 2.3294117647vw;
    border-top-width: 3.3647058824vw;
  }
}
.heading-everyday-shopping .lg-2 {
  display: block;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #0097e5;
}
@media (max-width: 767px) {
  .heading-everyday-shopping .lg-2 {
    font-size: 6.3282352941vw;
  }
}

/* -----------------------------------------------------------
  Button
----------------------------------------------------------- */
.btn-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 77px;
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  background: #e60012;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-red {
    height: 10.3529411765vw;
    font-size: 4.7882352941vw;
    border-radius: 1.2941176471vw;
    padding: 0 2.5882352941vw;
  }
}
.btn-red:hover {
  color: #fff;
  background: rgb(207, 0, 16.2);
}
.btn-red:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-red:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-red .sm {
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-red .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-red .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-red .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-red-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  overflow: visible;
  height: 65px;
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  background: #e60012;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 50px;
  box-shadow: none;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-red-2 {
    height: 13vw;
    font-size: 4.2705882353vw;
    border-radius: 6.4705882353vw;
    padding: 0 2.5882352941vw;
  }
}
.btn-red-2:hover {
  color: #fff;
  background: rgb(207, 0, 16.2);
}
.btn-red-2:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-red-2:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-red-2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -3px;
  width: 100%;
  height: auto;
  border-bottom: 3px solid #e4e9e9;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .btn-red-2:after {
    bottom: -0.7vw;
    border-bottom-width: 0.7vw;
    border-radius: 6.4705882353vw;
  }
}
.btn-red-2 .sm {
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-red-2 .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-red-2 .ic-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 42px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-red-2 .ic-arrow {
    right: 2.941176vw;
    font-size: 8.623529vw;
  }
}

.btn-blue {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 77px;
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  background: #3fa8f4;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-blue {
    height: 10.3529411765vw;
    font-size: 4.7882352941vw;
    border-radius: 1.2941176471vw;
    padding: 0 2.5882352941vw;
  }
}
.btn-blue:hover {
  color: #fff;
  background: rgb(33.963546798, 154.8428571429, 242.336453202);
}
.btn-blue:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-blue:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-blue .img-text {
  height: 27px;
}
@media only screen and (max-width: 767px) {
  .btn-blue .img-text {
    height: 5vw;
  }
}
.btn-blue .sm {
  font-weight: 500;
  font-size: 18px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-blue .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-blue .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-blue .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-yellow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 60px;
  font-weight: 700;
  font-size: 20px;
  color: #e60012;
  background: yellow;
  border: 0;
  text-decoration: none;
  outline: 0;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-yellow {
    height: 10.3529411765vw;
    font-size: 2.5882352941vw;
    padding: 0 2.5882352941vw;
  }
}
.btn-yellow:hover {
  color: #e60012;
  background: rgb(255, 255, 63.75);
}
.btn-yellow:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-yellow:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-yellow .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-yellow .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-outline-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 77px;
  font-weight: 700;
  font-size: 23px;
  color: #e60012;
  background: #fff;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 4px #e60012;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-outline-red {
    height: 10.3529411765vw;
    font-size: 4.7882352941vw;
    border-radius: 1.2941176471vw;
    box-shadow: inset 0 0 0 0.6470588235vw #e60012;
    padding: 0 2.5882352941vw;
  }
}
.btn-outline-red:hover {
  color: #e60012;
  background: rgb(255, 227, 229.1913043478);
}
.btn-outline-red:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-outline-red:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-outline-red .sm {
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-outline-red .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-outline-red .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-outline-red .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-outline-blue {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 77px;
  font-weight: 700;
  font-size: 23px;
  color: #00a0e9;
  background: #fff;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 4px #00a0e9;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-outline-blue {
    height: 10.3529411765vw;
    font-size: 4.7882352941vw;
    border-radius: 1.2941176471vw;
    box-shadow: inset 0 0 0 0.6470588235vw #00a0e9;
    padding: 0 2.5882352941vw;
  }
}
.btn-outline-blue:hover {
  color: #00a0e9;
  background: rgb(227.3, 246.3214592275, 255);
}
.btn-outline-blue:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-outline-blue:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-outline-blue .sm {
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-outline-blue .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-outline-blue .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-outline-blue .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-bold-outline-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  overflow: visible;
  height: 65px;
  font-weight: 700;
  font-size: 24px;
  color: #e60012;
  background-color: #fff;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 50px;
  box-shadow: inset 0 0 0 8px #e60012;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-bold-outline-red {
    height: 13vw;
    font-size: 4.2705882353vw;
    border-radius: 6.4705882353vw;
    box-shadow: inset 0 0 0 1.347059vw #e60012;
    padding: 0 2.5882352941vw;
  }
}
.btn-bold-outline-red:hover {
  color: #e60012;
  background-color: rgb(255, 227, 229.1913043478);
}
.btn-bold-outline-red:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .btn-bold-outline-red:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-bold-outline-red:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -3px;
  width: 100%;
  height: auto;
  border-bottom: 3px solid #e4e9e9;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .btn-bold-outline-red:after {
    bottom: -0.7vw;
    border-bottom-width: 0.7vw;
    border-radius: 6.4705882353vw;
  }
}
.btn-bold-outline-red.has-caro {
  background-image: url(../images/bg-caro-2.png);
  background-repeat: repeat;
  background-position: left top;
}
.btn-bold-outline-red.has-caro .md {
  line-height: 1;
  background: #fff;
  padding-bottom: 1px;
}
.btn-bold-outline-red .sm {
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .btn-bold-outline-red .sm {
    font-size: 2.8470588235vw;
    margin-left: 1.0352941176vw;
  }
}
.btn-bold-outline-red .ic-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 28px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .btn-bold-outline-red .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.con-breadcrumbs .box-breadcrumbs {
  max-width: 1210px;
  padding: 8.5px 20px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .con-breadcrumbs .box-breadcrumbs {
    padding: 1.26vw 4vw 0.68vw;
  }
}
.con-breadcrumbs ul {
  display: inline-flex;
  align-items: center;
}
.con-breadcrumbs ul li,
.con-breadcrumbs ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #e60012;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .con-breadcrumbs ul li,
  .con-breadcrumbs ul li a {
    font-size: 2.0705882353vw;
  }
}
.con-breadcrumbs ul li .divider {
  margin: 0 9px;
}
@media only screen and (max-width: 767px) {
  .con-breadcrumbs ul li .divider {
    margin: 0 1.1647058824vw;
  }
}

.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  overflow: hidden;
  z-index: 2;
  width: 62px;
  height: 62px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
@media (max-width: 1199px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 8.5vw;
    height: 8.5vw;
  }
}
.slick-arrow:hover {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.7) !important;
}
.slick-arrow svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
@media (max-width: 1199px) {
  .slick-arrow svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .slick-arrow svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .slick-arrow svg {
    width: 8.5vw;
    height: 8.5vw;
  }
}

.slick-prev {
  left: 24px;
}
@media (max-width: 767px) {
  .slick-prev {
    left: 5vw;
  }
}

.slick-next {
  right: 24px;
}
@media (max-width: 767px) {
  .slick-next {
    right: 5vw;
  }
}

.slick-dots {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    gap: 0 2.1vw;
    margin-top: 2.8vw;
  }
}
.slick-dots li.slick-active button {
  background: #eb0000;
}
.slick-dots li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  outline: 0;
  background: #cbcbcb;
  text-indent: -9990px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .slick-dots li button {
    width: 2.2vw;
    height: 2.2vw;
  }
}

/* -----------------------------------------------------------
  .main-header
----------------------------------------------------------- */
.main-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1030;
  transition: all 0.4s ease;
}
.main-header.fixed {
  position: fixed;
  box-shadow: 0 0 0.7764705882vw 0.1294117647vw rgba(0, 0, 0, 0.1);
}
.main-header .box-container {
  max-width: 1570px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .main-header .box-container {
    padding: 0 4.5vw;
  }
}
.main-header .header-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #0097e5;
}
@media only screen and (max-width: 767px) {
  .main-header .header-banner {
    height: 8.259vw;
  }
}
.main-header .header-banner .title-banner {
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  text-align: center;
}
@media (max-width: 1199px) {
  .main-header .header-banner .title-banner {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .main-header .header-banner .title-banner {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .main-header .header-banner .title-banner {
    font-size: 3.2352941176vw;
  }
}
.main-header .header-banner .title-banner span {
  position: relative;
  top: 2px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .main-header .header-banner .title-banner span {
    top: 0.1vw;
    letter-spacing: normal;
  }
}
.main-header .header-top {
  background: #fce0e6;
}
.main-header .header-top .box-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-top .box-container {
    height: 16.9529411765vw;
  }
}
.main-header .header-top .txt-highlight {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .main-header .header-top .txt-highlight {
    font-size: 2.8470588235vw;
    letter-spacing: 0.1em;
  }
}
.main-header .header-top .btn-user {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.main-header .header-top .btn-user .text {
  font-weight: 400;
  font-size: 14px;
  color: #666;
  margin-right: 14px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-top .btn-user .text {
    font-size: 1.9411764706vw;
    margin-right: 2.5882352941vw;
  }
}
.main-header .header-top .btn-user .ic-user {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center top;
}
@media only screen and (max-width: 767px) {
  .main-header .header-top .btn-user .ic-user {
    width: 7.7647058824vw;
    height: 7.7647058824vw;
  }
}
.main-header .header-btns {
  position: relative;
}
.main-header .header-btns .box-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 86px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-container {
    height: 16.9529411765vw;
  }
}
.main-header .header-btns .box-logo {
  display: flex;
  align-items: center;
}
.main-header .header-btns .box-logo .logo img {
  width: 158px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-logo .logo img {
    width: 28.105882vw;
  }
}
.main-header .header-btns .box-logo .ic-docomo {
  display: none;
  margin-left: 74px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-logo .ic-docomo {
    display: none !important;
  }
}
.main-header .header-btns .box-logo .ic-docomo img {
  width: 48px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-logo .ic-docomo img {
    width: 12.910588vw;
  }
}
.page-sim .main-header .header-btns .box-logo .ic-docomo {
  display: block;
}
.main-header .header-btns .box-logo .img-brands {
  display: none;
  margin-left: 63px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-logo .img-brands {
    display: none !important;
  }
}
.main-header .header-btns .box-logo .img-brands img {
  width: 138px;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-logo .img-brands img {
    width: 20.910588vw;
  }
}
.page-wifi .main-header .header-btns .box-logo .img-brands {
  display: block;
}
.main-header .header-btns .box-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
@media only screen and (max-width: 991px) {
  .main-header .header-btns .box-btns {
    gap: 0 1.8vw;
    position: absolute;
    right: 105px;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-btns {
    right: 15vw;
  }
}
.main-header .header-btns .box-btns .button.btn-apply {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  min-width: 163px;
  height: 50px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: #e60012;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 40px;
  box-shadow: none;
  text-align: center;
  padding: 0 16px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-btns .button.btn-apply {
    height: 9vw;
    min-width: 29vw;
    font-size: 2.5882352941vw;
    border-radius: 6.4705882353vw;
    padding: 0 2.88235vw;
  }
}
.main-header .header-btns .box-btns .button.btn-apply:hover {
  color: #fff;
  background: rgb(207, 0, 16.2);
}
.main-header .header-btns .box-btns .button.btn-apply:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-btns .button.btn-apply:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.main-header .header-btns .box-btns .button.btn-apply .ic-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 16px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-btns .button.btn-apply .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.2352941176vw;
  }
}
.main-header .header-btns .box-btns .button.btn-login {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 50px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  color: #4d4d4d;
  background: #e4e4e4;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 40px;
  box-shadow: none;
  text-align: center;
  padding: 0 16px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .main-header .header-btns .box-btns .button.btn-login {
    height: 9vw;
    font-size: 2.5882352941vw;
    border-radius: 6.4705882353vw;
    padding: 0 2.88235vw;
  }
}
.main-header .header-btns .box-btns .button.btn-login:hover {
  color: #4d4d4d;
  background: rgb(205.2, 205.2, 205.2);
}
.main-header .header-nav {
  background: #f7f8f8;
}
@media only screen and (max-width: 991px) {
  .main-header .header-nav {
    display: none;
  }
}
.main-header .header-nav .box-nav {
  max-width: 1320px;
  padding: 0 20px;
  margin: auto;
}
@media only screen and (max-width: 1699px) {
  .main-header .header-nav .box-nav {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-header .header-nav .box-nav {
    padding: 0 10px;
  }
}
.main-header .header-nav .main-nav {
  position: relative;
}
.main-header .header-nav .main-nav > * {
  display: inline-block;
  vertical-align: top;
}
.main-header .header-nav .main-nav a:hover, .main-header .header-nav .main-nav a.active {
  color: #e60012;
}
.main-header .header-nav .main-nav .ic-arrow {
  color: #e60012;
  margin-left: 10px;
}
.main-header .header-nav .main-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}
.main-header .header-nav .main-nav > ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}
.main-header .header-nav .main-nav > ul li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  transition: all 0.1s ease;
  z-index: 10;
  padding: 17px 0;
}
.main-header .header-nav .main-nav > ul li .sub-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 1000vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.86);
}
.main-header .header-nav .main-nav > ul li .sub-menu li {
  position: relative;
}
.main-header .header-nav .main-nav > ul li .sub-menu li a .sm {
  position: relative;
  top: -2px;
  font-size: 0.72em;
  color: #e60012;
  margin-left: 6px;
}
.main-header .header-nav .main-nav > ul > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 30px;
}
@media only screen and (max-width: 1699px) {
  .main-header .header-nav .main-nav > ul > li {
    margin-right: 5px;
  }
}
.main-header .header-nav .main-nav > ul > li:last-child {
  margin-right: 0 !important;
}
.main-header .header-nav .main-nav > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 42px;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease;
}
@media (max-width: 1199px) {
  .main-header .header-nav .main-nav > ul > li > a {
    font-size: 14px;
  }
}
.main-header .header-nav .main-nav > ul > li > a > .ic {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
}
.main-header .header-nav .main-nav > ul > li > a > .ic > * {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 100%;
}
.main-header .header-nav .main-nav > ul > li > a > .ic > * path {
  fill: #fff;
  transition: all 0.4s ease;
}
.main-header .header-nav .main-nav > ul > li > a .ic-caret {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.7em;
  margin-left: 6px;
  transition: none;
}
.main-header .header-nav .main-nav > ul > li li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 0;
}
.main-header .header-nav .main-nav > ul > li li.active > a,
.main-header .header-nav .main-nav > ul > li li > a:hover {
  color: #e60012;
}
.main-header .btn-menu {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 65px;
  height: 43px;
  text-align: center;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .main-header .btn-menu {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .main-header .btn-menu {
    width: 5.211765vw;
    height: 3.564706vw;
  }
}

/* -----------------------------------------------------------
  off canvas menu
----------------------------------------------------------- */
.has-offcanvas .my-offcanvas .btn-close-offcanvas {
  display: block;
}
.has-offcanvas .my-offcanvas .box-offcanvas-wrapper {
  opacity: 1;
  visibility: visible;
  width: 100%;
  max-width: 654px;
}
@media only screen and (max-width: 767px) {
  .has-offcanvas .my-offcanvas .box-offcanvas-wrapper {
    max-width: 84.6352941176vw;
  }
}
.has-offcanvas.offcanvas-shown .my-offcanvas .btn-close-offcanvas {
  opacity: 1;
  visibility: visible;
  transform: translate(calc(0% - 24px), 0);
}
@media only screen and (max-width: 767px) {
  .has-offcanvas.offcanvas-shown .my-offcanvas .btn-close-offcanvas {
    transform: translate(calc(0% - 2vw), 0);
  }
}
.has-offcanvas.offcanvas-shown .my-offcanvas .box-offcanvas-wrapper {
  transform: translate(0, 0);
}
.has-offcanvas.offcanvas-shown .my-offcanvas .box-offcanvas-wrapper:after {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  transition: width 0.1s 0.2s, height 0.1s 0.2s;
}

.my-offcanvas {
  display: none;
}
@media only screen and (max-width: 991px) {
  .my-offcanvas {
    display: block;
  }
}
.my-offcanvas .box-offcanvas-wrapper {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  transform: translate(100%, 0);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 0;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: transform 0.4s ease;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .my-offcanvas .box-offcanvas-wrapper {
    display: block;
  }
}
.my-offcanvas .box-offcanvas-wrapper:after {
  content: "";
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.my-offcanvas .btn-close-offcanvas {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 654px;
  top: 36px;
  transform: translate(300%, 0);
  line-height: 1;
  color: #fff;
  background: none transparent;
  border: 0 none;
  outline: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1048;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas {
    right: 84.6352941176vw;
    top: 4.6588235294vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic {
  display: block;
  position: relative;
  width: 61px;
  height: 61px;
  margin: 0 auto 23px;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas .ic {
    width: 7.8941176471vw;
    height: 7.8941176471vw;
    margin-bottom: 2.9764705882vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic:before, .my-offcanvas .btn-close-offcanvas .ic:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 86px;
  width: 2px;
  background: #fff;
  transform-origin: center center;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas .ic:before, .my-offcanvas .btn-close-offcanvas .ic:after {
    height: 11.1294117647vw;
    width: 0.2588235294vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.my-offcanvas .btn-close-offcanvas .ic:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.my-offcanvas .btn-close-offcanvas .txt {
  display: block;
  font-weight: 500;
  font-size: 25px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas .txt {
    font-size: 3.2352941176vw;
  }
}
.my-offcanvas .oc-body {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .oc-body {
    padding: 8.76471vw 0;
  }
}
.my-offcanvas .box-btns {
  padding: 0 40px;
  margin-bottom: 31px;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .box-btns {
    padding: 0 5.1764705882vw;
    margin-bottom: 4.0117647059vw;
  }
}
.my-offcanvas .box-btns .button {
  width: 100%;
  height: 83px;
  margin-bottom: 39px;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .box-btns .button {
    height: 10.7411764706vw;
    font-size: 3.78824vw;
    margin-bottom: 5.0470588235vw;
  }
}
.my-offcanvas .box-btns .button.btn-red-2:after {
  display: none;
}
.my-offcanvas .main-nav {
  border-top: 1px solid #e60012;
}
.my-offcanvas .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.my-offcanvas .main-nav ul a {
  cursor: pointer;
}
.my-offcanvas .main-nav ul > li {
  width: 100%;
  background: none transparent;
  border-bottom: 1px solid #e60012;
}
.my-offcanvas .main-nav ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  position: relative;
  background: transparent;
  border: 0 none;
  text-transform: capitalize;
  text-decoration: none;
  outline: 0;
  padding: 26px 48px;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .main-nav ul > li > a {
    padding: 3.7647vw 5.1764705882vw;
  }
}
.my-offcanvas .main-nav ul > li > a:hover .txt, .my-offcanvas .main-nav ul > li > a.active .txt {
  color: #e60012;
}
.my-offcanvas .main-nav ul > li > a .txt {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  padding-right: 10px;
  transition: color 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .main-nav ul > li > a .txt {
    font-size: 3.8823529412vw;
    padding-right: 1.2941176471vw;
  }
}
.my-offcanvas .main-nav ul > li > a .ic-arrow {
  font-size: 28px;
  line-height: 1;
  color: #e60012;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .main-nav ul > li > a .ic-arrow {
    font-size: 5.1764705882vw;
  }
}
.my-offcanvas .main-nav ul > li > a .ic-arrow.ic-left {
  display: none;
}
.my-offcanvas .main-nav ul > li > a .ic-arrow.ic-right {
  display: block;
}
.my-offcanvas .main-nav ul > li > .sub-menu {
  display: none;
  border-top: 1px solid #e60012;
}
.my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-bottom: 0;
  padding-bottom: 40px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu {
    padding-bottom: 5.1764705882vw;
  }
}
.my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu > a .txt {
  text-align: center;
  padding-left: 10px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu > a .txt {
    padding-left: 1.2941176471vw;
  }
}
.my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu > a .ic-arrow.ic-left {
  display: block;
}
.my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu > a .ic-arrow.ic-right {
  display: none;
}
.my-offcanvas .main-nav ul > li.has-sub-menu.show-sub-menu > .sub-menu {
  display: block;
}

.my-offcanvas-overlay {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  left: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  z-index: -9999;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}
.has-offcanvas .my-offcanvas-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 1040;
}

/* -----------------------------------------------------------
  .app-link-btns
----------------------------------------------------------- */
.app-link-btns {
  display: none;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .app-link-btns {
    display: block;
  }
}
.app-link-btns img {
  width: 100%;
  height: 24.9764705882vw;
}
.app-link-btns .txt-title {
  position: absolute;
  left: 36.5vw;
  top: 6.5vw;
  z-index: 2;
  font-weight: 500;
  font-size: 3.7529411765vw;
  color: #000;
}
.app-link-btns .btn-app-store {
  display: block;
  position: absolute;
  left: 37vw;
  top: 13.5vw;
  z-index: 2;
  width: 22vw;
  height: 7.5vw;
}
.app-link-btns .btn-google-play {
  display: block;
  position: absolute;
  left: 60.5vw;
  top: 13.5vw;
  z-index: 2;
  width: 25vw;
  height: 7.5vw;
}
.app-link-btns .btn-close {
  display: block;
  position: absolute;
  left: 1.5vw;
  top: 9.5vw;
  z-index: 2;
  width: 7vw;
  height: 7vw;
  border-radius: 50%;
  outline: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

/* -----------------------------------------------------------
  .main-footer
----------------------------------------------------------- */
.main-footer {
  background: #efefef;
  padding: 110px 0 130px;
}
@media only screen and (max-width: 767px) {
  .main-footer {
    padding: 11.90588vw 0 34.541176vw;
  }
}
.main-footer .box-container {
  max-width: 1730px;
  padding: 0 20px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-container {
    max-width: 86vw;
    padding: 0 3vw;
  }
}
.main-footer .box-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: 0 auto 91px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav-wrapper {
    margin-bottom: 6.941176vw;
  }
}
.main-footer .box-logo {
  flex: 1 1 50%;
  padding-left: 7vw;
}
@media only screen and (max-width: 991px) {
  .main-footer .box-logo {
    flex: 1 1 35%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 9vw;
  }
}
.main-footer .box-logo a {
  text-decoration: none;
}
.main-footer .box-logo img {
  max-width: 240px;
}
@media only screen and (max-width: 991px) {
  .main-footer .box-logo img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-logo img {
    max-width: 44vw;
  }
}
.main-footer .box-nav {
  flex: 1 1 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 14px;
}
@media only screen and (max-width: 991px) {
  .main-footer .box-nav {
    flex: 1 1 65%;
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav {
    flex: 1 1 100%;
    max-width: 68vw;
    margin: auto;
  }
}
.main-footer .box-nav ul {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav ul {
    width: 100%;
  }
}
.main-footer .box-nav ul li {
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .main-footer .box-nav ul li {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav ul li {
    width: 50%;
    padding: 0 3vw;
    margin-bottom: 5.345882vw;
  }
}
.main-footer .box-nav ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #231815;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .main-footer .box-nav ul li a {
    font-size: 21px;
  }
}
@media only screen and (max-width: 991px) {
  .main-footer .box-nav ul li a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav ul li a {
    font-size: 2.7176470588vw;
  }
}
.main-footer .box-nav ul li a:hover {
  color: #e60012;
}
.main-footer .box-nav ul li a:hover .ic {
  left: 5px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav ul li a:hover .ic {
    left: 0.6470588235vw;
  }
}
.main-footer .box-nav ul li a .ic {
  position: relative;
  left: 0;
  top: 4px;
  font-size: 26px;
  color: #e60012;
  transition: all 0.4s ease;
  margin-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .main-footer .box-nav ul li a .ic {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-nav ul li a .ic {
    display: none;
  }
}
.main-footer .box-sub-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-sub-nav-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-sub-nav {
    margin-bottom: 5.4352941176vw;
  }
}
.main-footer .box-sub-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1399px) {
  .main-footer .box-sub-nav ul {
    justify-content: center;
  }
}
.main-footer .box-sub-nav ul li {
  margin-right: 51px;
}
@media only screen and (max-width: 1699px) {
  .main-footer .box-sub-nav ul li {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1399px) {
  .main-footer .box-sub-nav ul li {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-footer .box-sub-nav ul li {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-sub-nav ul li {
    margin-right: 5.1764705882vw;
  }
}
.main-footer .box-sub-nav ul li:last-child {
  margin-right: 0 !important;
}
.main-footer .box-sub-nav ul li a {
  font-weight: 300;
  font-size: 14px;
  color: #231815;
  text-decoration: none;
}
@media only screen and (max-width: 1399px) {
  .main-footer .box-sub-nav ul li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-sub-nav ul li a {
    font-size: 2.3294117647vw;
  }
}
.main-footer .box-sub-nav ul li a:hover {
  color: #e60012;
}
.main-footer .box-ppih-wrapper {
  border-bottom: 2px solid #8c8c8c;
  padding-bottom: 58px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-ppih-wrapper {
    padding-bottom: 8.5vw;
    margin-bottom: 8.3vw;
  }
}
.main-footer .box-ppih-wrapper .box-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1012px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-ppih-wrapper .box-inner {
    flex-direction: column;
    max-width: 100%;
  }
}
.main-footer .box-ppih-wrapper .box-sub-nav {
  margin-right: 70px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-ppih-wrapper .box-sub-nav {
    order: 2;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-ppih-wrapper .box-ppih {
    order: 1;
    margin-bottom: 5vw;
  }
}
.main-footer .box-ppih-wrapper .box-ppih img {
  max-width: 190px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-ppih-wrapper .box-ppih img {
    max-width: 28vw;
  }
}
.main-footer .box-x-mobile-wrapper {
  margin-bottom: 101px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-x-mobile-wrapper {
    margin-bottom: 22vw;
  }
}
.main-footer .box-x-mobile-wrapper .box-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1012px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-x-mobile-wrapper .box-inner {
    flex-direction: column;
    max-width: 100%;
  }
}
.main-footer .box-x-mobile-wrapper .box-sub-nav {
  margin-right: 70px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-x-mobile-wrapper .box-sub-nav {
    order: 2;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-x-mobile-wrapper .box-x-mobile {
    order: 1;
    margin-bottom: 5vw;
  }
}
.main-footer .box-x-mobile-wrapper .box-x-mobile img {
  max-width: 191px;
}
@media only screen and (max-width: 767px) {
  .main-footer .box-x-mobile-wrapper .box-x-mobile img {
    max-width: 28vw;
  }
}
.main-footer .box-copyright .txt-copyright {
  font-weight: 400;
  font-size: 8px;
  color: #989898;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0 0 8px;
}
@media only screen and (max-width: 991px) {
  .main-footer .box-copyright .txt-copyright {
    font-size: 12px;
    padding: 0 5px 8px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .box-copyright .txt-copyright {
    font-size: 1.5529411765vw;
    letter-spacing: 0.165882vw;
    padding: 0 0.6470588235vw 1.0352941176vw;
  }
}

.con-btns {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .con-btns {
    padding: 0 4vw;
  }
}
.con-btns .box-btns {
  max-width: 848px;
  margin: 0 auto -25px;
}
@media only screen and (max-width: 767px) {
  .con-btns .box-btns {
    max-width: 100%;
  }
}
.con-btns .box-btns .row {
  margin: 0 -4px;
}
@media (max-width: 767px) {
  .con-btns .box-btns .row {
    margin: 0 -0.8vw;
  }
}
.con-btns .box-btns .item {
  padding: 0 4px;
}
@media (max-width: 767px) {
  .con-btns .box-btns .item {
    padding: 0 0.8vw;
  }
}
.con-btns .box-btns .button {
  width: 100%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .con-btns .box-btns .button {
    margin-bottom: 4vw;
  }
}

.con-fixed-btns {
  opacity: 0;
  transform: translate(0, 200%);
  visibility: hidden;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0.7764705882vw 0.1294117647vw rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 1030;
}
.con-fixed-btns.fixed {
  opacity: 1;
  transform: translate(0);
  visibility: visible;
}
.con-fixed-btns .box-btns {
  max-width: 1298px;
  padding: 20px 20px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .con-fixed-btns .box-btns {
    flex-wrap: wrap;
    gap: 0 2vw;
    max-width: 100%;
    padding: 4vw 3vw;
  }
}
.con-fixed-btns .box-btns .row {
  margin: 0 -20px;
}
@media (max-width: 1199px) {
  .con-fixed-btns .box-btns .row {
    margin: 0 -10px;
  }
}
@media (max-width: 991px) {
  .con-fixed-btns .box-btns .row {
    margin: 0 -4px;
  }
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .row {
    margin: 0 -0.8vw;
  }
}
.con-fixed-btns .box-btns .item {
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .con-fixed-btns .box-btns .item {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .con-fixed-btns .box-btns .item {
    padding: 0 4px;
  }
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .item {
    padding: 0 0.8vw;
    margin-bottom: 3vw;
  }
}
.con-fixed-btns .box-btns .item:last-of-type {
  margin-bottom: 0 !important;
}
.con-fixed-btns .box-btns .button {
  width: 100%;
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .button {
    height: 10vw !important;
    font-size: 3.3647058824vw !important;
  }
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .btn-bold-outline-red {
    box-shadow: inset 0 0 0 1vw #e60012;
  }
}

/* -----------------------------------------------------------
  .con-btns-bottom
----------------------------------------------------------- */
.con-btns-bottom {
  overflow: hidden;
  padding: 39px 0 119px;
}
@media (max-width: 767px) {
  .con-btns-bottom {
    padding: 11vw 0 12vw;
  }
}
.con-btns-bottom .img-yeah-3 {
  text-align: center;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .con-btns-bottom .img-yeah-3 {
    margin-bottom: 3.69vw;
  }
}
.con-btns-bottom .img-yeah-3 img {
  position: relative;
  left: 20px;
  max-width: 299px;
}
@media (max-width: 767px) {
  .con-btns-bottom .img-yeah-3 img {
    left: 1vw;
    max-width: 53.294118vw;
  }
}

/* -----------------------------------------------------------
  .con-everyday-shopping
----------------------------------------------------------- */
.con-everyday-shopping {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
}
@media (max-width: 767px) {
  .con-everyday-shopping {
    padding: 16vw 0 0;
  }
}
.con-everyday-shopping.for-about {
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .con-everyday-shopping.for-about {
    padding: 11vw 0 0;
  }
}
@media (max-width: 767px) {
  .con-everyday-shopping.for-about .heading-everyday-shopping .lg-1 {
    font-size: 5.9529411765vw;
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .con-everyday-shopping.for-about .heading-everyday-shopping .lg-2 {
    font-size: 7.3764705882vw;
  }
}
.con-everyday-shopping #anchor-everyday-shopping {
  position: absolute;
  left: 0;
  top: -130px;
}
@media (max-width: 767px) {
  .con-everyday-shopping #anchor-everyday-shopping {
    top: -20vw;
  }
}
.con-everyday-shopping .box-slider {
  background: #d5effb;
  padding: 65px 0 53px;
}
@media (max-width: 767px) {
  .con-everyday-shopping .box-slider {
    padding: 10vw 0 9vw;
  }
}
.con-everyday-shopping .box-slider .slider-wrapper {
  overflow: visible;
  max-width: 1050px;
  margin: auto;
}
@media (max-width: 1699px) {
  .con-everyday-shopping .box-slider .slider-wrapper {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .con-everyday-shopping .box-slider .slider-wrapper {
    max-width: 74.5vw;
  }
}
.con-everyday-shopping .box-slider .slick-list {
  overflow: visible;
  margin: 0 -11px;
}
@media (max-width: 767px) {
  .con-everyday-shopping .box-slider .slick-list {
    margin: 0 -3vw;
  }
}
.con-everyday-shopping .box-slider .slide-item {
  position: relative;
  padding: 0 11px;
}
@media (max-width: 767px) {
  .con-everyday-shopping .box-slider .slide-item {
    padding: 0 3vw;
  }
}
.con-everyday-shopping .box-slider .box-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffb8b8;
}
@media (max-width: 767px) {
  .con-everyday-shopping .box-slider .box-item {
    border-radius: 2.5vw;
  }
}