@charset "UTF-8";

/*----------------------------------------
ヘッダーcss
-----------------------------------------*/
.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body {
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  background: #fff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
}

.header .inner {
  max-width: var(--innerWide-maxWidth);
}

.header .logo a {
  display: block;
  padding: 18px 0px;
}

.header .logo img {
  display: inline-block;
  max-width: 253px;
  height: auto;
}

.header .header_pickup_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .header_pickup_link .pickup_link_box {
  display: flex;
  justify-content: space-between;
  margin-right: 5px;
}

.header .header_pickup_link .contact_btn {
  position: relative;
  display: block;
  font-size: 14px;
  text-align: center;
  border-radius: 2em;
  background: linear-gradient(90deg, var(--grade-orange02));
  padding: 1.5px;
  color: #fff;
  font-weight: bold;
  min-width: 12em;
}

.header .header_pickup_link .contact_btn+.contact_btn {
  margin-left: 10px;
}

.header .header_pickup_link .contact_btn .contact_btn_inner {
  display: flex;
  justify-content: space-between;
}

.header .header_pickup_link .contact_btn .contact_btn_inner {
  background: linear-gradient(90deg, var(--grade-orange01));
  padding: 0.4em 2em;
  border-radius: 2em;
}

.header .header_pickup_link .contact_btn .icon {
  width: 1.45em;
  height: 1.45em;
  margin-top: -0.1em;
  margin-right: 0.5em;
}

.header .header_pickup_link .contact_btn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .header_pickup_link .contact_btn.shop_box {
  background: linear-gradient(90deg, var(--grade-blue01));
  color: var(--col-black);
  font-weight: 500;
}

.header .header_pickup_link .contact_btn.shop_box .contact_btn_inner {
  background: #fff;
}

.header .header_pickup_link .contact_btn.shop_box::after {
  background: url(../../img/common/icon/ico_shop_gray.svg) no-repeat center center;
  background-size: contain;
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--inner-padding-LR);
  padding-right: var(--inner-padding-LR);
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  padding: 10px;
  background-color: transparent;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 2.5px;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #494949;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #494949;
  transition: inherit;
  border-radius: 3px;
}

.hamburger__line:before {
  top: -10px;
}

.hamburger__line:after {
  top: 10px;
}

.header__nav-area {
  display: none;
  width: 100%;
  margin-top: -1px;
  min-height: fit-content;
  visibility: hidden;
  background-color: #f2fdff;
  transition: 0.4s;
  overflow: hidden;
  animation: fadeout 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
}

.header__nav-area.-active {
  position: relative;
  left: 0;
  visibility: visible;
  display: block;
  animation: fadein 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
  overflow: hidden;
}

.header__subnav-area {
  width: 100%;
  height: 100%;
  min-height: 450px;
  background: linear-gradient(90deg, rgba(242, 253, 255, 1) 55%, rgba(242, 253, 255, 0) 100%);
  padding-top: 50px;
  padding-bottom: 60px;
}

.header__nav-area::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 100vw;
  height: 450px;
  background: url(../../img/common/haeder_bg_img.webp) center right no-repeat;
  background-size: cover;
}

.header__nav-area .conntact {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 250px;
  margin-top: 1.95rem;
  padding: 0.5em 1.5em;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  background: var(--col-blue01);
}


@keyframes fadein {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible;
  }

  100% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }

  100% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
  }
}



/*----------------------------------------
ヘッダーグロナビ・フッターサイトマップ共通css
-----------------------------------------*/
header .global_wrap .global_nav .flex,
footer .sitemap_wrap .sitemap_nav .flex {
  flex-wrap: wrap;
  font-size: 21px;
}

header .global_wrap .global_nav .flex {
  width: 80%;
  /* margin-left: auto; */
}

header .global_wrap .global_nav .flex>* {
  width: 20%;
}

footer .sitemap_wrap .sitemap_nav .flex>* {
  width: 39%;
}

header .global_wrap .global_nav .subNavi_list,
footer .sitemap_wrap .sitemap_nav .subNavi_list {
  margin-top: 0.5em;
  flex-wrap: wrap;
  font-size: 90%;
  color: var(--col-gray02);
}

header .global_wrap .global_nav .subNavi_list li,
footer .sitemap_wrap .sitemap_nav .subNavi_list li {
  margin-bottom: 0.35em;
  letter-spacing: 0.1em;
}

header .global_wrap .global_nav .subNavi_list li:last-child,
footer .sitemap_wrap .sitemap_nav .subNavi_list li:last-child {
  margin-bottom: 1.5em;
}

header .global_wrap .global_nav .main_category,
header .global_wrap .global_nav .main_category>a,
footer .sitemap_wrap .sitemap_nav .main_category,
footer .sitemap_wrap .sitemap_nav .main_category>a {
  font-size: 21px;
  font-weight: bold;
  color: var(--col-gray01);
}

header .global_wrap .global_nav .other_link .main_category,
footer .sitemap_wrap .sitemap_nav .other_link .main_category {
  margin-bottom: 0.75em;
}

header .global_wrap .global_nav .window a,
footer .sitemap_wrap .sitemap_nav .window a {
  position: relative;
  padding-right: 1.25em;
}

header .global_wrap .global_nav .window a::after,
footer .sitemap_wrap .sitemap_nav .window a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0em;
  transform: translate(0, -50%);
  width: 1.05em;
  height: 1.05em;
  background: url(../../img/common/icon/ico_window_gray.svg) no-repeat center center;
  background-size: contain;
}

header .global_wrap .global_nav .btn_bgBlue,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue {
  background: linear-gradient(90deg, var(--grade-blue01));
  border-radius: 2em;
}

header .global_wrap .global_nav .btn_bgBlue a,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 0.5em;
}

header .global_wrap .global_nav .btn_bgBlue.window a,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue.window a {
  padding-right: 2em;
}

header .global_wrap .global_nav .btn_bgBlue.window a::after,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue.window a::after {
  right: 0.95em;
  background: url(../../img/common/icon/ico_window_wh.svg) no-repeat center center;
  background-size: contain;
}

header .global_wrap .global_nav .btn_bgBlue.shop_box a,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue.shop_box a {
  padding-left: 2em;
}

header .global_wrap .global_nav .btn_bgBlue.shop_box a::before,
footer .sitemap_wrap .sitemap_nav .btn_bgBlue.shop_box a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.65em;
  transform: translate(0, -50%);
  width: 1.45em;
  height: 1.45em;
  background: url(../../img/common/icon/ico_shop_wh.svg) no-repeat center center;
  background-size: contain;
}



/* ページトップボタン */
html {
  scroll-behavior: smooth;
}

.st-Totop {
  position: fixed;
  right: 40px;
  bottom: 55px;
  z-index: 10;
  width: 75px;
}

/*----------------------------------------
フッターcss
-----------------------------------------*/
footer .contact_wrap .inner,
footer .sitemap_wrap .inner,
footer .copyright_wrap .inner {
  display: flex;
  justify-content: space-between;
  font-feature-settings: "palt";
  word-break: keep-all;
}

footer .contact_wrap .inner>*,
footer .sitemap_wrap .inner>* {
  width: 50%;
}

footer .contact_wrap .inner {
  color: #fff;
  padding-top: 115px;
  padding-bottom: 100px;
}

footer .contact_wrap .h2_txt {
  max-width: 382px;
  width: 90%;
  margin-top: 5px;
  margin-bottom: 25px;
}

footer .contact_wrap .contact_read {
  font-size: 20px;
  letter-spacing: 0.135em;
  line-height: 1.7;
}


footer .contact_wrap .contact_btn:hover,
footer .contact_wrap .contact_btn:hover img {
  opacity: 1 !important;
}

footer .contact_wrap .contact_btn {
  position: relative;
  display: block;
}

footer .contact_wrap .contact_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

footer .contact_wrap .contact_btn .sub_txt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -49%);
  min-width: 370px;
  width: fit-content;
  font-size: 16px;
  border-radius: 1.5em;
  background: #fff;
  padding: 5px 1em;
  color: var(--col-black);
  vertical-align: middle;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.175em;
  z-index: 2;
}

footer .contact_wrap .contact_btn .sub_txt .txt120 {
  display: inline-block;
  font-size: 120%;
  /* margin-top: 0.05em; */
  transform: translate(0, 1.5%);
}

footer .contact_wrap .contact_btn .contact_inner {
  position: relative;
  display: block;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 40px 20px 30px;
  overflow: hidden;
}

footer .contact_wrap .contact_btn .contact_inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) translateZ(0);
  width: 4em;
  height: 4em;
  background: #bae4f8;
  border-radius: 50%;
  filter: blur(1.25em);
  mix-blend-mode: overlay;
}

footer .contact_wrap .contact_btn:hover .contact_inner::before {
  width: 5em;
  height: 5em;
  transition: .25s ease-in-out;
  filter: blur(1.35em);
}


footer .contact_wrap .contact_btn .main_txt {
  position: relative;
  font-size: 20px;
  text-align: center;
  padding: 0 2em;
}

footer .contact_wrap .contact_btn:hover .main_txt {
  opacity: 0.7;
  transition: .25s ease-in-out;
}

footer .contact_wrap .contact_btn .main_txt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translate(0, -50%);
  width: 2em;
  height: 2em;
  background: url(../../img/common/icon/ico_mail_wh.svg) no-repeat center center;
  background-size: contain;
}

footer .contact_wrap .contact_btn.shop_box .main_txt::before {
  background: url(../../img/common/icon/ico_shop_wh.svg) no-repeat center center;
  background-size: contain;
}

footer .contact_wrap .contact_btn .main_txt::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%);
  width: 1em;
  height: 1em;
  background: url(../../img/common/icon/ico_arowR_wh.svg) no-repeat center center;
  background-size: contain;
}

footer .contact_wrap .contact_btn:hover .main_txt::after {
  right: 0.15em;
  transition: .35s ease-in-out;
}

footer .contact_wrap .contact_btn+.contact_btn {
  margin-top: 50px;
}

footer .sitemap_wrap {
  background: #fff;
}

footer .sitemap_wrap .inner {
  padding-top: 70px;
  padding-bottom: 100px;
}

footer .sitemap_wrap .box_L {
  max-width: 350px;
  width: 35%;
}

footer .sitemap_wrap .logo {
  margin-top: 10px;
  margin-bottom: 40px;
}

footer .sitemap_wrap .address_wrap {
  align-items: center;
}

footer .sitemap_wrap .address_txt {
  font-size: 14px;
  letter-spacing: 0em;
  margin-right: 2em;
}

footer .sitemap_wrap .logo_kurumin {
  width: 6em;
  height: 6em;
}

footer .copyright_wrap {
  background: #e6e6e6;
}

footer .copyright_wrap .inner {
  padding: 10px var(--inner-padding-LR);
  align-items: center;
}

footer .copyright_wrap .privacy_btn {
  font-size: 15px;
  font-weight: bold;
}

footer .copyright_wrap .copyright_txt {
  font-size: 12px;
  letter-spacing: 0;
}



.modal-dialog {
  width: 95%;
  max-width: 950px;
}

.modal-content {
  padding: var(--inner-padding-LR) 70px;
  border-radius: 30px;
  border: unset;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 0;
}

.modal-header {
  border-bottom: 1.5px solid;
  border-image: linear-gradient(90deg, var(--grade-blue01)) 1;
  margin-bottom: 55px;
}

.modal-title {
  text-align: center;
  margin: 1em auto;
  font-size: 37px;
  font-weight: bold;
}

.modal-body p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--col-gray01);
}

.modal-contact {
  padding: 30px var(--inner-padding-LR);
  border-radius: 10px;
  margin-top: 55px;
  text-align: center;
}
.modal-contact_img{
  max-width: 600px;
  margin: auto;
}

#privacy_Modal .modal-footer {
  justify-content: center;
  border: 0;
  margin: 3em 0;
}

#privacy_Modal .btn_bgBlue {
  width: 30%;
  max-width: 190px;
  background: linear-gradient(90deg, var(--grade-blue01));
  border-radius: 2em;
  border: 0;
  font-size: 20px;
  font-weight: bold;
  padding: 0.45em 1.5em;
}


@media only screen and (max-width: 1400px) {
  header .global_wrap .global_nav .flex {
    width: 72%;
  }

  header .global_wrap .global_nav .flex>* {
    width: 24%;
  }
}

@media only screen and (max-width: 1163px) {

  /*----------------------------------------
  ヘッダーcss
  -----------------------------------------*/
  .header__subnav-area {
    background: linear-gradient(90deg, rgba(242, 253, 255, 1) 45%, rgba(242, 253, 255, 0) 88%);
  }

  .header__nav-area::before {
    width: 100vw;
    height: 510px;
    right: -2vw;
    transform: translate(0, -50%);
    background: url(../../img/common/haeder_bg_img.webp) center right no-repeat;
    background-size: cover;
  }

  header .global_wrap .global_nav .flex {
    width: 60%;
  }

  header .global_wrap .global_nav .flex>* {
    width: 40%;
  }



  /*----------------------------------------
  ヘッダーグロナビ・フッターサイトマップ共通css
  -----------------------------------------*/
  header .global_wrap .global_nav .flex,
  footer .sitemap_wrap .sitemap_nav .flex {
    font-size: 1.8vw;
  }

  header .global_wrap .global_nav .main_category,
  header .global_wrap .global_nav .main_category>a,
  footer .sitemap_wrap .sitemap_nav .main_category,
  footer .sitemap_wrap .sitemap_nav .main_category>a {
    font-size: 1.8vw;
  }

  header .global_wrap .global_nav .btn_bgBlue a,
  footer .sitemap_wrap .sitemap_nav .btn_bgBlue a {
    font-size: 1.75vw;
  }


  /*----------------------------------------
  フッターcss
  -----------------------------------------*/
  footer .contact_wrap .h2_txt {
    width: 30vw;
    margin-top: 5px;
    margin-bottom: 25px;
  }

  footer .contact_wrap .contact_read {
    font-size: 1.75vw;
  }

  footer .contact_wrap .contact_btn .sub_txt {
    font-size: 1.25vw;
  }

  footer .contact_wrap .contact_btn .main_txt {
    font-size: 1.75vw;
  }

  footer .sitemap_wrap .address_txt {
    font-size: 1.05vw;
  }

  footer .sitemap_wrap .logo_kurumin {
    width: 11vw;
    height: 11vw;
  }

  header .global_wrap .global_nav .privacy_btn,
  footer .copyright_wrap .privacy_btn {
    font-size: 1.5vw;
  }
}

@media only screen and (max-width: 959px) {

  /*----------------------------------------
  ヘッダーcss
  -----------------------------------------*/
  .header__subnav-area {
    background: linear-gradient(90deg, rgba(242, 253, 255, 1) 45%, rgba(242, 253, 255, 0) 88%);
  }

  .header__nav-area::before {
    width: 100vw;
    height: 510px;
    right: -2vw;
    transform: translate(0, -50%);
    background: url(../../img/common/haeder_bg_img.webp) center right no-repeat;
    background-size: cover;
  }

  header .global_wrap .global_nav .flex {
    width: 60%;
  }

  header .global_wrap .global_nav .flex>* {
    width: 40%;
  }



  /*----------------------------------------
  ヘッダーグロナビ・フッターサイトマップ共通css
  -----------------------------------------*/
  header .global_wrap .global_nav .flex,
  header .global_wrap .global_nav .main_category,
  header .global_wrap .global_nav .main_category>a {
    font-size: 2.15vw;
  }

  header .global_wrap .global_nav .btn_bgBlue a,
  footer .sitemap_wrap .sitemap_nav .btn_bgBlue a {
    font-size: 1.85vw;
  }


  /*----------------------------------------
  フッターcss
  -----------------------------------------*/
  footer .contact_wrap .h2_txt {
    width: 32vw;
  }

  footer .contact_wrap .contact_read {
    font-size: 1.95vw;
  }

  footer .contact_wrap .contact_read .pc {
    display: none !important;
  }

  footer .contact_wrap .contact_btn .sub_txt {
    font-size: 1.55vw;
  }

  footer .contact_wrap .contact_btn .main_txt {
    font-size: 2vw;
  }

  footer .sitemap_wrap .address_txt {
    font-size: 1.15vw;
  }

  footer .copyright_wrap .privacy_btn {
    font-size: 1.5vw;
  }
}

/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {


  /*----------------------------------------
  ヘッダーcss
  -----------------------------------------*/
  .header .logo a {
    padding: 2.5vw 0px;
    width: 50vw;
  }

  .header .logo img {
    max-width: 253px;
  }

  .hamburger {
    width: 10vw;
    height: 10vw;
    padding: 0;
  }

  .hamburger__line {
    width: 72%;
  }

  .header__nav-area {
    margin-top: 0px;
  }

  .header__subnav-area.inner {
    min-height: unset;
    height: calc(100vh - var(--header-height));
    padding-top: 10vw;
    padding-bottom: 10vw;
    background: linear-gradient(180deg, rgba(242, 253, 255, 1) 55%, rgba(242, 253, 255, 0) 80%);
  }

  .header__nav-area::before {
    content: none;
    /* height: 40vh;
    top: auto;
    right: 0;
    bottom: 0;
    transform: translate(0, 0%);
    background: url(../../img/common/haeder_bg_img.webp) bottom right no-repeat;
    background-size: cover; */
  }

  header .global_wrap .global_nav .flex {
    width: 100%;
  }


  header .global_wrap .global_nav .flex>* {
    width: 40%;
  }

  .header .header_pickup_link .pickup_link_box {
    flex-wrap: wrap;
    margin-top: 3vw;
  }

  .header .header_pickup_link .contact_btn+.contact_btn {
    margin-top: 3vw;
    margin-left: 0px;
  }

  .header .header_pickup_link .contact_btn {
    width: 100%;
    font-size: 5vw;
    letter-spacing: 0.2em;
  }

  .header .header_pickup_link .contact_btn .contact_btn_inner {
    background: linear-gradient(90deg, var(--grade-orange01));
    padding: 0.64em 2em;
    border-radius: 2em;
    justify-content: center;
  }

  .st-Totop {
    position: fixed;
    right: 2vw;
    bottom: 8vw;
    width: 16vw;
    z-index: 9;
  }


  /*----------------------------------------
  ヘッダーグロナビ・フッターサイトマップ共通css
  -----------------------------------------*/

  header .global_wrap .global_nav .flex>* {
    width: 100%;
  }

  header .global_wrap .global_nav .flex>* .subNavi_list,
  header .global_wrap .global_nav .other_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  header .global_wrap .global_nav .flex>* .subNavi_list>*,
  header .global_wrap .global_nav .other_link .main_category,
  footer .sitemap_wrap .sitemap_nav .flex>* {
    width: 49%;
  }

  header .global_wrap .global_nav .flex,
  header .global_wrap .global_nav .main_category,
  header .global_wrap .global_nav .main_category>a,
  footer .sitemap_wrap .sitemap_nav .flex,
  footer .sitemap_wrap .sitemap_nav .main_category,
  footer .sitemap_wrap .sitemap_nav .main_category>a {
    font-size: 4.75vw;
  }


  header .global_wrap .global_nav .btn_bgBlue a,
  footer .sitemap_wrap .sitemap_nav .btn_bgBlue a {
    font-size: 4vw;
  }



  /*----------------------------------------
  フッターcss
  -----------------------------------------*/
  footer .contact_wrap .inner,
  footer .sitemap_wrap .inner,
  footer .copyright_wrap .inner {
    flex-wrap: wrap;
  }

  footer .contact_wrap .inner>*,
  footer .sitemap_wrap .inner>* {
    width: 100%;
    max-width: unset;
  }

  footer .contact_wrap .inner {
    padding-top: 14vw;
    padding-bottom: 12vw;
  }

  footer .contact_wrap .h2_txt {
    width: 55vw;
    text-align: center;
    margin: 0 auto 4vw;
  }

  footer .contact_wrap .contact_read {
    font-size: 3.75vw;
    text-align: center;
    margin-bottom: 13vw;
  }

  footer .contact_wrap .contact_btn .sub_txt {
    font-size: 3.15vw;
    min-width: unset;
    width: 90%;
  }

  footer .contact_wrap .contact_btn .contact_inner {
    border-radius: 10px;
    padding: 8vw 4vw 5vw;
  }

  footer .contact_wrap .contact_btn .main_txt {
    font-size: 4vw;
  }

  footer .contact_wrap .contact_btn+.contact_btn {
    margin-top: 10vw;
  }

  footer .sitemap_wrap .inner {
    padding-top: 10vw;
    padding-bottom: 12vw;
  }

  footer .sitemap_wrap .logo {
    max-width: 300px;
    margin: 0 0 6vw;
  }

  footer .sitemap_wrap .address_txt {
    font-size: 3.85vw;
  }

  footer .sitemap_wrap .address_wrap {
    align-items: stretch;
    margin-bottom: 8vw;
  }

  footer .sitemap_wrap .logo_kurumin {
    width: 30vw;
    height: 30vw;
  }

  footer .copyright_wrap .privacy_btn {
    font-size: 4vw;
  }

  footer .copyright_wrap .copyright_txt {
    font-size: 3.15vw;
  }


  .modal{
    padding: 5vw !important;
  }
  .modal-dialog {
    width: 100%;
    top: 0vw;
    left: 50%;
    transform: translate(-50%, 0px);
  }

  .modal.show .modal-dialog {
    transform: translate(-50%, 0px);
    margin: 0;
  }

  .modal-content {
    padding: var(--inner-padding-LR);
    border-radius: 4vw;
    margin-top: 0vw;
  }

  .modal-contact {
    margin-top: 8vw;
  }

  .modal-header {
    margin-bottom: 6vw;
  }

  .modal-title {
    text-align: center;
    margin: 1em auto;
    font-size: 6.5vw;
    font-weight: bold;
  }

  .modal-body p {
    font-size: 4vw;
  }

  #privacy_Modal .modal-footer {
    padding: 0 0;
  }

  #privacy_Modal .btn_bgBlue {
    font-size: 4vw;
  }

}