/* -----------------------------------------------------------
  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;
  padding-top: 86px;
}
@media (max-width: 767px) {
  .page-wrapper {
    padding-top: 16.9529411765vw;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
@media (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 (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 (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 (max-width: 1199px) {
  .slider-common .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .slider-common .slick-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .slider-common .slick-arrow {
    width: 20px;
    height: 28px;
  }
}
@media (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 (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 (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 (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 (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 (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 (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 (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 (max-width: 767px) {
  .note-common ul li .ic {
    top: 0.2vw;
  }
}
.note-common ul li .only-sp {
  display: none;
}
@media (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 (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 (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 (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;
}

.btn-go-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 130px;
  z-index: 1020;
  transform: translate(0, 200px);
  width: auto;
  height: auto;
  font-weight: bold;
  background: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-go-top {
    right: 2vw;
    bottom: 0;
    transform: translate(0, 100%);
    font-size: 3.1058823529vw;
  }
}
.btn-go-top.fixed {
  transform: translate(0, 0) !important;
}
@media (max-width: 767px) {
  .btn-go-top.fixed {
    bottom: 36vw;
    transform: translate(0, 0);
  }
}
.btn-go-top .ic {
  width: 45px;
  height: 45px;
  background: transparent;
  border-top: solid 3px #000;
  border-left: solid 3px #000;
  transform: rotate(45deg);
  margin-bottom: -25px;
}
@media (max-width: 767px) {
  .btn-go-top .ic {
    width: 6.4705882353vw;
    height: 6.4705882353vw;
    border-top-width: 0.59vw;
    border-left-width: 0.59vw;
    margin-bottom: -7.7647058824vw;
  }
}
.btn-go-top .txt {
  position: relative;
  z-index: 2;
  font-size: 30px;
  color: #000;
}
@media (max-width: 767px) {
  .btn-go-top .txt {
    top: 4vw;
    font-size: 4.2705882353vw;
  }
}

/*
 * 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 (max-width: 991px) {
  .heading-sim-step {
    margin-bottom: 70px;
  }
}
@media (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 (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 (max-width: 1399px) {
  .heading-sim-step .lg {
    font-size: 54px;
  }
}
@media (max-width: 991px) {
  .heading-sim-step .lg {
    font-size: 45px;
  }
}
@media (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 (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 (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 (max-width: 767px) {
  .heading-page-title .txt-title {
    margin: 0 auto 0;
  }
}
.heading-page-title .txt-title .ic {
  margin-bottom: 22px;
}
@media (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 (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 (max-width: 767px) {
  .heading-page-title .txt-title .txt {
    font-size: 2.8470588235vw;
  }
}
.heading-page-title .txt-title .txt-coupon img {
  width: 254px;
}
@media (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (max-width: 767px) {
  .btn-blue:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-blue .img-text {
  height: 27px;
}
@media (max-width: 767px) {
  .btn-blue .img-text {
    height: 5vw;
  }
}
.btn-blue .sm {
  font-weight: 500;
  font-size: 18px;
  margin-left: 8px;
}
@media (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 (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: 124px;
  font-weight: 700;
  font-size: 33px;
  color: #009f00;
  background: #ffff00;
  border: 0;
  border-radius: 80px;
  text-decoration: none;
  outline: 0;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-yellow {
    height: 13.3941vw;
    font-size: 4.2705882353vw;
    letter-spacing: 0.13em;
    padding: 0 2.5882352941vw;
  }
}
.btn-yellow:hover {
  color: #009f00;
  background: rgb(229.5, 229.5, 0);
}
.btn-yellow:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media (max-width: 767px) {
  .btn-yellow:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-yellow .ic-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translate(0, -50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  background: #009f00;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-yellow .ic-arrow {
    right: 5vw;
    width: 5.5vw;
    height: 5.5vw;
  }
}
.btn-yellow .ic-arrow svg {
  width: 73%;
  height: 73%;
}
@media (max-width: 767px) {
  .btn-yellow .ic-arrow svg {
    width: 100%;
    height: 100%;
  }
}

.btn-green {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  height: 124px;
  font-weight: 700;
  font-size: 33px;
  color: #fff;
  background: #009f00;
  border: 0;
  border-radius: 80px;
  text-decoration: none;
  outline: 0;
  text-align: center;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-green {
    height: 13.42941vw;
    font-size: 4.2705882353vw;
    letter-spacing: 0.1em;
    padding: 0 2.5882352941vw;
  }
}
.btn-green:hover {
  color: #fff;
  background: rgb(0, 143.1, 0);
}
.btn-green:hover .ic-arrow {
  transform: translate(5px, -50%);
}
@media (max-width: 767px) {
  .btn-green:hover .ic-arrow {
    transform: translate(0.6470588235vw, -50%);
  }
}
.btn-green .ic-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translate(0, -50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #009f00;
  background: #fff;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-green .ic-arrow {
    right: 6vw;
    width: 5.5vw;
    height: 5.5vw;
  }
}
.btn-green .ic-arrow svg {
  width: 73%;
  height: 73%;
}
@media (max-width: 767px) {
  .btn-green .ic-arrow svg {
    width: 100%;
    height: 100%;
  }
}

.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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (max-width: 767px) {
  .btn-bold-outline-red .ic-arrow {
    right: 1.9411764706vw;
    font-size: 3.6235294118vw;
  }
}

.btn-outline-white {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  vertical-align: middle;
  position: relative;
  overflow: visible;
  height: 124px;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.13em;
  color: #fff;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 80px;
  box-shadow: inset 0 0 0 2px #fff;
  text-align: left;
  padding: 0 20px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-outline-white {
    height: 12.3941vw;
    font-size: 2.8470588235vw;
    letter-spacing: 0.16em;
    border-radius: 15vw;
    box-shadow: inset 0 0 0 0.3vw #fff;
    padding: 0 2.5882352941vw;
  }
}
.btn-outline-white:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.btn-outline-white .ic-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 47px;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #009f00;
  background: #fff;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-outline-white .ic-arrow {
    right: 5vw;
    width: 5.5vw;
    height: 5.5vw;
  }
}
.btn-outline-white .ic-arrow svg {
  width: 73%;
  height: 73%;
}
@media (max-width: 767px) {
  .btn-outline-white .ic-arrow svg {
    width: 60%;
    height: 60%;
  }
}

.con-breadcrumbs .box-breadcrumbs {
  max-width: 1210px;
  padding: 8.5px 20px;
  margin: auto;
}
@media (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 (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 (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 (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 (max-width: 767px) {
  .slick-dots li button {
    width: 2.2vw;
    height: 2.2vw;
  }
}

/* -----------------------------------------------------------
  .main-header
----------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1030;
  transition: all 0.4s ease;
}
.main-header.fixed {
  box-shadow: 0 0 0.7764705882vw 0.1294117647vw rgba(0, 0, 0, 0.1);
}
.main-header .box-container {
  max-width: 1296px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .main-header .box-container {
    padding: 0 3.5vw;
  }
}
.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 (max-width: 767px) {
  .main-header .header-btns .box-container {
    height: 16.9529411765vw;
  }
}
.main-header .header-btns .box-logo {
  display: flex;
  align-items: center;
  padding-left: 38px;
}
@media (max-width: 767px) {
  .main-header .header-btns .box-logo {
    padding-left: 0;
  }
}
.main-header .header-btns .box-logo .logo {
  position: relative;
  top: 6px;
}
@media (max-width: 767px) {
  .main-header .header-btns .box-logo .logo {
    top: 0;
  }
}
.main-header .header-btns .box-logo .logo img {
  width: 202px;
}
@media (max-width: 767px) {
  .main-header .header-btns .box-logo .logo img {
    width: 28.105882vw;
  }
}
.main-header .header-btns .box-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
@media (max-width: 767px) {
  .main-header .header-btns .box-btns {
    right: 15vw;
  }
}
.main-header .header-btns .box-btns .button.btn-green {
  min-width: 240px;
  height: 44px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 767px) {
  .main-header .header-btns .box-btns .button.btn-green {
    min-width: 31vw;
    height: 9vw;
    font-size: 2.8470588235vw;
  }
}

/* -----------------------------------------------------------
  .main-footer
----------------------------------------------------------- */
.main-footer .box-main-nav {
  display: flex;
  background-color: rgb(34, 34, 34);
  justify-content: center;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .main-footer .box-main-nav {
    padding: 10.3529411765vw 0;
  }
}
.main-footer .box-main-nav .footer-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.main-footer .box-main-nav .footer_title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .main-footer .box-main-nav .footer_title {
    margin-bottom: 7.7647058824vw;
  }
}
.main-footer .box-main-nav .footer_title .txt-title {
  display: flex;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 50px;
}
@media (max-width: 991px) {
  .main-footer .box-main-nav .footer_title .txt-title {
    margin: 10px 20px;
  }
}
@media (max-width: 767px) {
  .main-footer .box-main-nav .footer_title .txt-title {
    font-size: 4.5294117647vw;
    margin: 1.9411764706vw 3.8823529412vw;
  }
}
.main-footer .box-main-nav .footer-nav-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .main-footer .box-main-nav .footer-nav-row {
    display: flex;
    flex-direction: column;
  }
}
.main-footer .box-main-nav .footer-nav-col {
  display: flex;
  flex-direction: column;
}
.main-footer .box-main-nav .footer-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  margin: 5px 50px;
}
@media (max-width: 991px) {
  .main-footer .box-main-nav .footer-item {
    font-size: 15px;
    margin: 5px 20px;
  }
}
@media (max-width: 767px) {
  .main-footer .box-main-nav .footer-item {
    font-size: 3.6235294118vw;
    margin: 1.2941176471vw 3.8823529412vw;
  }
}
.main-footer .box-main-nav .footer-item:hover {
  text-decoration: underline;
}
.main-footer .box-sub-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  width: 100%;
  height: 107px;
  text-decoration: none;
  gap: 7%;
}
@media (max-width: 991px) {
  .main-footer .box-sub-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
}
.main-footer .box-sub-nav a {
  font-size: 20px;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 991px) {
  .main-footer .box-sub-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid gray;
    padding: 30px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .main-footer .box-sub-nav a {
    font-size: 3.8823529412vw;
    padding: 5.1764705882vw;
  }
}
.main-footer .box-sub-nav a i {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .main-footer .box-sub-nav a i {
    padding-left: 2.5882352941vw;
  }
}
.main-footer .box-logo {
  text-align: center;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .main-footer .box-logo {
    margin: 10.3529411765vw 0;
  }
}
.main-footer .box-logo img {
  width: 270px;
}
@media (max-width: 767px) {
  .main-footer .box-logo img {
    width: 47.8823529412vw;
  }
}
.main-footer .box-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0 180px;
}
@media (max-width: 767px) {
  .main-footer .box-bottom-nav {
    padding: 0 0 45vw;
  }
}
.main-footer .box-bottom-nav a {
  font-size: 15px;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.3;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .main-footer .box-bottom-nav a {
    font-size: 3.2352941176vw;
    padding: 0 1.9411764706vw;
  }
}

.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 (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-logo-auto-scroll .simply-scroll {
  width: 100%;
  height: auto;
  margin: 0;
}
.con-logo-auto-scroll .simply-scroll .simply-scroll-clip {
  width: 100%;
  height: auto;
}
.con-logo-auto-scroll .simply-scroll .simply-scroll-list {
  white-space: nowrap;
}
.con-logo-auto-scroll .simply-scroll .simply-scroll-list li {
  display: inline-block;
  vertical-align: middle;
  float: none;
  width: auto;
  height: auto;
  white-space: nowrap;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .con-logo-auto-scroll .simply-scroll .simply-scroll-list li {
    margin: 0 2vw;
  }
}
.con-logo-auto-scroll .simply-scroll .simply-scroll-list li img {
  width: 333px;
}
@media (max-width: 991px) {
  .con-logo-auto-scroll .simply-scroll .simply-scroll-list li img {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .con-logo-auto-scroll .simply-scroll .simply-scroll-list li img {
    width: 40vw;
  }
}

.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: 1143px;
  padding: 20px 20px;
  margin: auto;
}
@media (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 -8px;
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .row {
    margin: 0 -0.8vw;
  }
}
.con-fixed-btns .box-btns .item {
  padding: 0 8px;
}
@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%;
  height: 85px;
}
@media (max-width: 1199px) {
  .con-fixed-btns .box-btns .button {
    font-size: 30px !important;
  }
}
@media (max-width: 991px) {
  .con-fixed-btns .box-btns .button {
    font-size: 24px !important;
  }
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .button {
    height: 10vw !important;
    font-size: 3.3647058824vw !important;
  }
}
.con-fixed-btns .box-btns .button .text {
  position: relative;
  left: 0;
}
@media (max-width: 991px) {
  .con-fixed-btns .box-btns .button .text {
    left: -10px;
  }
}
@media (max-width: 991px) {
  .con-fixed-btns .box-btns .button .ic-arrow {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .con-fixed-btns .box-btns .button .ic-arrow {
    right: 5vw;
  }
}