@charset "UTF-8";
/*====================================================================================
■01.RESET HTML
====================================================================================*/
/* ========== end △ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
}

/* ▽ PC-TAB layout ========== */
html {
  overflow-y: auto;
  line-height: normal;
}

body {
  font-family: 'Noto Serif JP', 'Noto Serif', "游明朝", "Yu Mincho", "游明朝体", YuMincho, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #555555;
  line-height: 2.2;
  font-size: 14px;
  font-weight: 500;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
  max-width: 100%;
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a {
  color: #555555;
  text-decoration: underline;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  word-break: break-all;
}

a:hover {
  text-decoration: none;
}

/* ========== end △ */
/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.hidden {
  display: none;
}

/*====================================================================================
■03.USE MEDIA
====================================================================================*/
.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media,
.media-body {
  overflow: hidden;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

.sec_blog *,
.cont_news * {
  word-break: break-all;
}

/*====================================================================================
■04.LAYOUT
====================================================================================*/
.container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 1110px;
  margin: 0 auto;
}

.font_Cormorant_Garamond {
  font-family: 'Cormorant Garamond', serif;
}

/* ▽ TAB layout ========== */
@media print,
screen and (max-width: 1200px) {
  .container {
    width: 100% !important;
    padding: 0 2%;
  }
}

/* ▽ PC-TAB layout ========== */
@media screen and (min-width: 767px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (max-width: 766px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (min-width: 481px) {
  .layout_480 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .layout_480 {
    display: block;
  }
}

/* ▽ SP layout ========== */
@media screen and (max-width: 320px) {
  body {
    width: 320px;
  }
}

.a_phone {
  text-decoration: none !important;
  color: #555555;
  position: relative;
}

@media screen and (min-width: 767px) {
  .a_phone {
    pointer-events: none;
  }
}

/*====================================================================================
■05.FLEX
====================================================================================*/
.dis_flex {
  display: flex;
  display: -webkit-flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

.flex_between {
  display: flex;
  justify-content: space-between;
}

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

.flex_center_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*justify-content*/
.flex_jus_start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex_jus_end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex_jus_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex_jus_between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex_jus_around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex_jus_ini {
  justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
}

/*align-items*/
.flex_align_item_start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
}

.flex_align_item_end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_align_item_stretch {
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}

.flex_align_item_baseline {
  align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex_align_item_center {
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex_align_item_ini {
  align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
}

.flex-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_bg {
  width: 100%;
  margin-right: -100%;
}

.flex_content {
  width: 100%;
  position: relative;
}

/*====================================================================================
■06.HEADER
====================================================================================*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  z-index: 999;
}

#header .SEO {
  display: none;
}

.h_main {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 18px 2%;
  /* padding: 11px 2%; */
}

.h_main .h_left {
  width: 132px;
}

.h_main .h_left .logo {
  width: 132px;
}

.h_main .h_right {
  /* width: 690px; */
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}

.h_main .h_right .logo_social {
  width: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.cart_bascket {
  margin-right: 1em;
}

.cart_bascket a,
.h_main .h_right .logo_social li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;

  position: relative;
}

.cart_bascket a span#cart_quantity,
.f_cont .sp_logo_social li a span#cart_quantity,
.h_main .sp_logo_social li a span#cart_quantity,
.h_main .h_right .logo_social li a span#cart_quantity {
  position: absolute;
  top: 0;
  right: -2px;
  padding: 1px 4px;
  border-radius: 10px;
  /* background-color: #b1ae48;
  color: #000; */
  background-color: #cd7a29;
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
}

#header .h_sec.h_fixed {
  animation: scrolltop 0.8s;
  animation-iteration-count: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #420017;
  border-color: rgba(58, 58, 58, 0.08);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.09);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media (max-width: 767px) {
  .cart_bascket {
    margin-right: 1.4em;
  }
}

/*====================================================================================
■07.GOLABLE NAVIGATION
====================================================================================*/
#gnav {
  position: relative;
  /* width: 750px; */
  text-align: center !important;
}

#gnav a {
  text-decoration: none !important;
}

#gnav .gnav__items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  /* margin-right: 2%; */
  gap: 25px;
}

#gnav .gnav__item {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  line-height: 1.8;
  padding: 7px;
  /* border: #ffffff solid 1px; */
  box-sizing: border-box;
  /* width: 130px; */
  /* flex: 1; */
  flex-shrink: 0;

}


html body div#wrapper header#header div.h_sec.h_fixed div.h_main div.h_right nav#gnav div.nav_inner ul.gnav__items li.gnav__item.navTrigger.gnav-shop{
padding: 6px;

}


@media (min-width: 768px) {
  #gnav .gnav__item.gnav-shop {
    border: #ffffff solid 1px;
    background-color: rgba(255,255,255,.3);
    & p {
      white-space: nowrap;
    }
    &:hover {
      background-color: rgba(0,0,0,.3);
      border-color: #d8b961;
      & a {
        color: #d8b961;
      }
    }
  }
}



/* 👇右のボーダーを重ねて1pxに見せる */
#gnav .gnav__item+.gnav__item {
  border-left: none;
  /* 左の境界線を消す */
}


html body div#wrapper header#header div.h_sec div.h_main div.h_right nav#gnav div.nav_inner ul.gnav__items li.gnav__item.navTrigger {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 766px) {
  html body div#wrapper header#header div.h_sec div.h_main div.h_right nav#gnav div.nav_inner ul.gnav__items li.gnav__item.navTrigger {
    text-align: left;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
  }
}


#gnav .gnav__item:hover {
  color: #d8b961;
}

#gnav .gnav__item p {
  line-height: 1.8;
}

#gnav .gnav__item b {
  width: 100%;
  font-size: 20px;
  display: block;
  font-weight: bold;
  text-align: center;
}

#gnav .gnav__item>p>a,
#gnav .gnav__item>a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}

#gnav .sub_menu__lnk {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1em;
  padding-right: 1em;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #fff;

}

#gnav .gnav__item.navTrigger .gnav__item {
  height: auto;
}

#gnav .gnav__item.navTrigger.opened a:after {
  opacity: 1;
}

#gnav .sub_menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: none;
  z-index: 99;
}

#gnav .sub_menu__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  line-height: 1;
  padding-bottom: 0.5px;
}

#gnav .sub_menu__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #656153;
  z-index: 5;
}

#gnav .ca_menu__items {
  display: none;
  width: 100%;
  padding: 0.5em 1em;
  background-color: #fff;
  color: #555;
}

#gnav .sub_menu__item:after,
#gnav .ca_menu__head:after {
  background: none;
}

#gnav .sub_menu__lnk {
  background-color: #2b2b2b;
  padding: 8px 1em;
  font-weight: normal;
  line-height: 1.8;

  display: flex;
  font-size: 11px;
}

#gnav .sub_menu__lnk:hover {
  background-color: #b09a58;
  color: #fff !important;
}

#gnav .ca_menu__lnk {
  font-weight: normal;
  display: flex;
  padding: 0.25em 0;
  font-size: 11px;
  line-height: 1.8;
  color: #2b2b2b;
}

#gnav .ca_menu__lnk::before {
  content: "・";
  display: block;
  width: 1em;
  flex-shrink: 0;
}

#gnav .ca_menu__lnk:hover {
  color: #b09a58;
}

#gnav .gnav__item .noLink {
  pointer-events: none;
}

@media print,
screen and (max-width: 766px) {
  #gnav .gnav__item .noLink {
    display: flex;
    align-items: center;
    padding-right: 40px;
  }

  #gnav .gnav__item .noLink b {
    flex-shrink: 0;
  }

  #gnav .gnav__item .noLink span {
    line-height: 1;
  }
}

@media print,
screen and (min-width: 767px) {
  .cart_bascket {
    display: none;
  }

  #gnav .sub_menu {
    opacity: 0;
    visibility: hidden;
  }

  #gnav .gnav__item:hover {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }

  #gnav .gnav__item .noLink {
    pointer-events: auto;
  }

  #gnav .gnav__item:hover a:hover {
    color: #d8b961;
  }

  #gnav .gnav__item span {
    display: block;
    font-size: 11px;
    text-align: center;
  }

  #gnav .gnav__item.navTrigger:hover .sub_menu {
    display: block;
    width: 230px;
    opacity: 1;
    visibility: visible;
  }

  #gnav .gnav__item.navTrigger:hover .sub_menu__item>a {
    color: #fff !important;
  }

  #gnav .gnav__item.sp {
    display: none !important;
  }

  #gnav .sub_menu__item.ca_menu .ca_lnk_trig {
    pointer-events: none;
  }

  #gnav .sub_menu__item.ca_menu>.js-caTrig:hover .ca_lnk_trig,
  #gnav .sub_menu__item.ca_menu>.js-caTrig.is-active .ca_lnk_trig {
    background-color: #b09a58;
    color: #fff !important;
  }
}

@media print,
screen and (min-width: 767px) and (max-width: 992px) {
  #gnav {
    /* width: 360px; */
  }

  .h_main .h_right {
    /* width: 560px; */
    gap: 20px;
  }

  #gnav .gnav__items {
    gap: 15px;
  }

  #gnav .gnav__item b {
    font-size: 16px;
  }

  #gnav .gnav__item span {
    font-size: 10px;
  }
}

/*====================================================================================
■08.FOOTER
====================================================================================*/
#footer {
  margin-top: 80px;
}

#footer .a_phone {
  color: #fff;
}

.page_up {
  bottom: 50px;
  right: 2%;
  z-index: 990;
  margin-top: 20px;
  position: fixed;
  width: 50px;
}

.f_cont {
  background: #420017;
  padding: 40px 0;
  color: #fff;
}

.f_cont .container {
  display: flex;
  justify-content: space-between;
}

.f_cont .f_left {
  /* width: 290px; */
}

/*    .f_cont .f_left .f_logo {
      text-align: center; }*/
.f_cont .f_left .a_phone.lam,
#gnav .sp_h_infor p .a_phone.lam {
  padding-left: 18px;
  font-size: 18px;
}

.f_cont .f_left .a_phone.lam:before,
#gnav .sp_h_infor p .a_phone.lam:before {
  position: absolute;
  content: "\f095";
  font-family: FontAwesome;
  top: 61%;
  transform: translateY(-50%);
  left: 0;
}

.f_logo a {
  color: #d7b960 !important;
  text-decoration: none !important;
  font-size: 18px;
}

.f_logo img {
  width: 303px;
}

.f_cont .f_left .f_logo p {
  font-size: 18px;
  margin-top: 5px;
}

.f_cont .f_left .f_text {
  line-height: 2;
}

.f_cont .f_right {
  /* width: 250px;
  display: flex;
  justify-content: space-between; */
}

.f_cont .f_right .f_link h2 {
  font-size: 20px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

.f_cont .f_right .f_link ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding-left: 12px;
}

.f_cont .f_right .f_link ul li a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.f_cont .f_right .f_link ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: auto;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.f_cont .f_right .f_link ul li a:hover:before {
  width: 100%;
}

.f_text.ex {
  border-top: solid 1px #fff;
  padding-top: 9px;
  margin-top: 15px;
}

.fbnr {
  margin-top: 15px;
}

.fbnr a {
  transition: 0.3s;
  color: #fff;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 766px) {
  .f_text.ex {
    width: 90vw;
    margin: 1em auto 0;
    padding-top: 1em;
    text-align: center;
  }

  .f_text.bb_dotline {
    width: 90vw;
    margin-right: auto;
    margin-left: auto;
  }
}

.f_last .f_gnav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 1px solid #420017;
}

.f_last .f_gnav li a {
  position: relative;
  font-size: 13px;
  color: #420017;
  text-decoration: none;
  margin: 0 30px;
  font-weight: bold;
}

.f_last .f_gnav li a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: auto;
  width: 0;
  height: 1px;
  background: #420017;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.f_last .f_gnav li a:hover:before {
  width: 100%;
}

.f_last .copy_right {
  text-align: center;
  padding: 10px;
  font-size: 11px;
}

.btn_footer {
  border-top: 1px solid #fff;
  padding-top: 15px;
}

.btn_footer .style_btn01 {
  width: auto;
  margin-top: 20px;
  padding: 5px 50px 5px 15px;
  border: 1px solid #fff;
  background: #cca562 url("../common_img/arrow_btn.png") no-repeat center right 15px;
  font-size: 16px;
}

.btn_footer .style_btn01:hover {
  background: #420017 url("../common_img/arrow_btn.png") no-repeat center right 7px;
}

.btn_footer {
  margin-top: 15px;
}

.f_left .access {
  color: #fff !important;
}

.f_left .sp_logo_social {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.f_left .sp_logo_social li {
  margin-right: 20px;
}

.f_left .sp_logo_social li:last-child {
  margin-right: 0;
}

.f_left .sp_logo_social li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;

  position: relative;
}

.myBtn {
  /*background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 10px;*/
  text-decoration: none;
  cursor: pointer;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Sit on top */
  padding-top: 30%;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  border: 1px solid #888;
  width: 500px;
}

.bg_content {
  position: relative;
  width: 500px;
  background: #420017;
  padding: 20px;
  z-index: 4;
}

.bg_content form input[type="text"] {
  margin: 0 20px;
  width: 150px;
}

/* The Close Button */
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #d7b960;
  text-decoration: none;
  cursor: pointer;
}

.f_ex {
  font-size: .7em;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: -25px;
  display: block;
}

main .style_btn04 a {
  width: auto;
  color: #420017;
  border: 1px solid #420017;
  margin: 50px auto 0;
}

main .style_btn04 a:hover {
  color: #fff;
}

main .style_btn04 a:after {
  background: #000;
}

/*====================================================================================
■09.LAYOUT
====================================================================================*/
.style_btn04 {
  display: block;
  width: 100%;
  text-align: center;
}

.style_btn04 a {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none !important;
  padding: 10px 35px;
  border: 1px solid #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  margin: 20px auto 0;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: 3;
}

.style_btn04 a:before {
  content: '+';
  display: inline-block;
  margin: 0 10px 0 0;
  color: #908c13;
}

.style_btn04 a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  transition: .5s all;
  z-index: -1;
}

.style_btn04 a:hover {
  color: #420017;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.style_btn04 a:hover:after {
  width: 100%;
}

.style_btn05 {
  display: block;
  width: 100%;
  text-align: center;
}

.style_btn05 a {
  background: #2b2b2b;
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none !important;
  padding: 10px 35px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  margin: 20px auto 0;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: 3;
}

.style_btn05 a:before {
  content: '+';
  display: inline-block;
  margin: 0 10px 0 0;
  color: #908c13;
}

.style_btn05 a:hover {
  background: #d8b961;
}

.style_btn05 a:hover:after {
  width: 100%;
}

.style_ttl01 {
  color: #9a727f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-left: -36px;
  margin-bottom: 20px;
}

.product_page .style_ttl01 {
  font-size: 18px;
  color: #420017;
}

.style_ttl01 span {
  position: relative;
  color: #420017;
  font-size: 35px;
  font-weight: bold;
  padding-right: 25px;
}

.style_ttl01 span:after {
  position: absolute;
  content: "";
  background: #420017;
  top: 18px;
  right: 12px;
  width: 1px;
  height: 15px;
  transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
}

.style_ttl01 .__ja {
  font-size: 18px;
  font-weight: inherit;
}

.style_list01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.style_list01 li {
  position: relative;
  width: 22%;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.style_list01 li a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.style_list01 li .img {
  position: relative;
  margin-bottom: 45px;
}

.style_list01 li .img img {
  width: 100%;
}

/*.style_list01 li .img:after {
        position: absolute;
        content: "";
        background: #420017;
        width: 1px;
        height: 55px;
        bottom: -35px;
        left: 0;
        right: 0;
        margin: auto; }*/
.style_list01 li h3 {
  font-size: 16px;
  color: #420017;
  font-weight: 500;
}

.style_list01 li p {
  font-size: 13px;
  font-weight: 500;
}

.style_list01 li p .price {
  display: block;
  width: 100%;
  font-size: 14px;
}

.style_list01 li:hover {
  opacity: 0.7;
}

.style_list02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.style_list02 li {
  position: relative;
  width: 25.3%;
  margin: 0 4% 43px;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.style_list02 li a {
  display: block;
  text-decoration: none !important;
  /* position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 3; */
}

.style_list02 li figure {
  width: 80%;
  margin: 0 auto 15px;
  overflow: hidden;
}

.style_list02 li figure img {
  width: 100%;
}

.style_list02 li h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #420017;
}

.style_list02 li:hover {
  opacity: 0.7;
}

.back__list {
  margin-top: -30px;
  margin-left: -2%;
  margin-right: -2%;
  margin-bottom: 30px;
}

.style_btn01 {
  display: inline-block;
  margin-top: 40px;
  /* background-color: #420017;
  color: #fff; */
  /*  background-color: #f4f4f4;*/
  background-color: #cca562;
  color: #242424;
  /* color: #f4f4f4; */
  /* color: #555; */
  /*  background-image: url("../common_img/arrow_btn.png");*/
  background-image: url("../common_img/arrow_btn_gray.png");
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.5px%22%20height%3D%228.5px%22%20viewbox%3D%220%200%2020.5%208.5%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20stroke%3D%22rgb(36%2C%2036%2C%2036)%22%20stroke-width%3D%221px%22%20stroke-linecap%3D%22butt%22%20stroke-linejoin%3D%22miter%22%20fill%3D%22none%22%20d%3D%22M0.500%2C6.499%20L16.500%2C6.499%20L12.500%2C1.499%20%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center right 7px;
  width: 145px;
  padding: 5px 30px 5px 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.5s;
}

.style_btn01:hover {
  /*  background-position: center right 15px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;*/
  opacity: .7;
  transition: .7s;
}

.style_btn__back {
  display: inline-block;
  position: relative;
  background-color: #f4f4f4;
  color: #242424;
  font-size: 14px;
  padding: 5px 15px 5px 30px;
  text-decoration: none !important;
}

.style_btn__back i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
  width: 1em;
  height: 1.2em;
  font-size: 22px;
  line-height: 1.2;
  vertical-align: middle;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.style_btn__back:hover i {
  left: 0.4em;
}

.back__list .style_btn__back {
  background-color: #cca562;
  color: #242424;
  font-weight: 600;
}

/* ▽ TAB layout ========== */
@media only screen and (max-width: 1110px) {
  .style_ttl01 {
    margin-left: 0;
  }
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 960px) {
  .f_cont .f_right {
    width: 450px;
  }
}

@media only screen and (max-width: 766px) {
  /* LAYOUT */

  .style_btn04 a {
    width: 300px;
    font-size: 13px;
    padding: 10px 5px;
  }

  .style_btn05 a {
    width: 300px;
    font-size: 13px;
    padding: 10px 5px;
  }

  /* HEADER */
  .h_main {
    padding: 10px 15px 10px 10px;
    height: 60px;
  }

  .h_main .h_left {
    width: 35%;
  }

  .h_main .h_left .logo {
    width: 100%;
  }

  .h_main .h_right {
    /*    width: 8%;*/
    width: 22%;
    gap: 0;
  }

  .h_main .h_right .h_btn {
    width: 30px;
  }

  .h_main .h_right .h_btn .h_menu {
    width: 100%;
    padding-top: 11px;
  }

  .h_main .h_right .logo_social {
    display: none;
  }

  .h_main .h_left .logo img {
    width: 90px;
  }

  .btn_close {
    display: none;
  }

  .btn_gnav.opened img {
    display: none;
  }

  .btn_gnav.opened .btn_close {
    display: inline;
    height: 26px;
  }

  #gnav {
    position: absolute;
    display: none;
    background-color: #420017;
    width: 100%;
    height: 100vh;
    left: 0;
    right: 0;
    top: 60px;
    z-index: 999;
    overflow-y: auto;
  }

  #gnav .nav_inner {
    overflow: auto;
    -webkit-overflow-scrolling: auto;
    padding-bottom: 170px;
  }

  #gnav .gnav__items {
    display: block;
  }

  #gnav .gnav__item {
    width: 100%;
    display: block !important;
    border-bottom: 1px solid #74384d;
    padding: 10px 0;
    height: auto;
    font-size: 14px;
  }

  #gnav .gnav__item p {
    position: relative;
  }

  #gnav .gnav__item>p:before,
  #gnav .sub_menu__lnk:before {
    position: absolute;
    content: "";
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    width: 8px;
    height: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    z-index: 999;
  }

  #gnav .gnav__item>p:before {
    left: 5px;
  }

  #gnav .sub_menu__lnk:before {
    left: 25px;
  }

  #gnav .is-active .sub_menu__lnk:before {
    transform: rotate(45deg);
  }

  #gnav .gnav__item b {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0 22px 0 25px;
  }

  #gnav .gnav__item b:after {
    position: absolute;
    content: "";
    background: #fff;
    top: 10px;
    right: 10px;
    width: 1px;
    height: 15px;
    transform: rotate(30deg);
  }

  #gnav .gnav__item span {
    display: inline-block;
  }

  #gnav .gnav__item>a {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: block !important;
    text-align: left;
  }

  #gnav .gnav__item.pc {
    display: none !important;
  }

  #gnav .gnav__items .navTrigger p:after {
    position: absolute;
    content: "";
    background: url("../common_img/icon_plus.png") no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    z-index: 999;
  }

  #gnav .gnav__items .navTrigger p.opened:after {
    background: url("../common_img/icon_minus.png") no-repeat;
    background-size: 20px;
    top: 26px;
  }

  #gnav .sub_menu {
    position: relative;
    top: 10px;
    left: 0;
    transform: translateX(0);
  }

  #gnav .sub_menu__item {
    position: relative;
    padding-bottom: 1px;
    font-size: 14px;
  }

  #gnav .sub_menu__item::before {
    height: 1px;
  }

  #gnav .sub_menu__item.ca_menu .ca_lnk_trig {
    pointer-events: none;
  }

  #gnav .ca_menu__item {
    padding-left: 25px;
  }

  #gnav .ca_menu__lnk {
    font-size: 14px;
  }

  #gnav .sub_menu__lnk {
    text-align: left;
    font-size: 14px;
    padding: 1em 0 1em 40px;
  }

  #gnav .sp_h_infor {
    text-align: center;
    background-color: #420017;
    color: #fff;
    padding: 4% 4%;
  }

  #gnav .sp_h_infor--logo {
    text-align: center;
    margin-top: 15px;
  }

  #gnav .sp_h_infor--logo a {
    display: inline-block;
    width: 290px;
    color: #d7b960 !important;
    text-decoration: none !important;
    font-size: 16px;
  }

  #gnav .sp_h_infor p {
    font-size: 14px;
    color: #fff !important;
  }

  #gnav .sp_h_infor p a:not(.btn_biz__lnk) {
    color: #fff !important;
  }

  #gnav .sp_h_infor p .address {
    font-size: 16px;
  }

  #gnav .sp_h_infor .sp_logo_social {
    display: flex;
    justify-content: center;
  }

  #gnav .sp_h_infor .sp_logo_social li {
    border-bottom: none;
    width: 29px;
    margin: 10px 10px 0;
  }

  #gnav .sp_h_infor .sp_logo_social li:before {
    border: none;
  }

  #gnav .sp_h_infor .sp_logo_social li a {
    display: flex !important;
    position: relative;
  }

  #gnav .sp_h_infor p.btn_biz {
    margin-top: 1.5em;
    padding-top: 15px;
    border-top: 1px solid #fff;
    text-align: center;
  }

  #gnav .sp_h_infor .btn_biz__lnk {
    margin-inline: auto;
  }

  .style_ttl01 {
    margin-bottom: 15px;
  }

  .style_list01 li {
    position: relative;
    width: 48%;
    margin-bottom: 20px;
  }

  .style_list01 li .img {
    position: relative;
    margin-bottom: 25px;
  }

  .style_list01 li .img:after {
    height: 35px;
    bottom: -20px;
  }

  .style_list02 li {
    width: 44%;
    margin: 0 3% 20px;
  }

  #footer {
    margin-top: 30px;
  }

  .f_cont {
    padding: 4% 0 7%;
  }

  .f_cont .container {
    justify-content: center;
    display: block;
  }

  .f_cont .f_left {
    width: auto;
    text-align: center;
    margin: auto;
  }

  .f_cont .f_left .f_text {
    margin-top: 10px;
    font-size: 16px;
  }

  .f_cont .f_left .sp_logo_social {
    display: flex;
    justify-content: center;
    margin: 10px auto 0px;
  }

  .f_cont .f_left .sp_logo_social li {
    margin: 10px 10px 0;
  }

  .f_cont .f_middle {
    width: auto;
    text-align: center;
    margin: auto;
  }

  .f_cont .f_right {
    display: none;
  }

  .f_last .f_gnav {
    display: none;
  }

  .f_last .copy_right {
    font-size: 14px;
  }

  .btn_footer .style_btn01 {
    margin-top: 20px;
  }

  /* Modal Content */
  .close {
    position: absolute;
    line-height: 1;
    top: 5px;
    right: 10px;
  }

  .modal-content {
    width: 95%;
  }

  .bg_content {
    width: 100%;
    padding: 40px 2% 20px;
  }

  .bg_content form input[type="text"] {
    margin: 0 2%;
    width: 40%;
  }
}

@media only screen and (max-width: 480px) {
  .style_ttl01 {
    font-size: 12px;
  }

  .style_ttl01 span {
    font-size: 24px;
    padding-right: 18px;
  }

  .style_ttl01 span:after {
    top: 10px;
    right: 7px;
    width: 1px;
    height: 14px;
  }

  .style_list02 li {
    width: 46%;
    margin: 0 2% 20px;
  }

  .style_list02 li figure {
    width: 100%;
    margin: 0 auto 10px;
  }

  .style_list02 li h3 {
    font-size: 18px;
    line-height: 1.0;
  }

  .style_list02 li p {
    line-height: 1.7;
  }

  .f_cont .f_left {
    width: 100%;
  }

  .f_cont .f_left .f_text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 320px) {
  .myBtn {
    padding: 0 5px;
  }

  .bg_content form input[type="text"] {
    width: 37%;
  }
}

/* tab */
.disp_tab {
  display: none;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .disp_tab {
    display: block;
  }

  .f_cont .f_middle {
    width: 33%;
    min-width: 260px;
  }

  .f_cont .f_left {
    padding-right: 20px;
  }

  .f_cont .f_right {
    padding-left: 20px;
  }

  /* .btn_footer .btn_site {
    width: auto;
  }
  .btn_footer .btn_site--txt {
    font-size: 10px;
  } */
  .f_left .sp_logo_social {
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .f_left .sp_logo_social li:first-child {
    width: 100%;
  }
}




.btn_biz__lnk {
  display: flex;
  width: 224px;
  border: 1px solid #65665D;
  background-color: #fff;
  text-decoration: none !important;
  color: #555 !important;
}

.btn_biz__lnk::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 30%;
  aspect-ratio: 5 / 4;
  background-image: url(../common_img/bnr_corporation_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.btn_biz__side {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none transparent !important;
  font-size: 11px;
  font-style: normal;
  line-height: 1;
  padding: 0.333em;
}

.btn_biz__side::after {
  content: "";
  display: block;
  width: 80%;
  margin-top: 4px;
  aspect-ratio: 334 / 67;
  background-size: cover;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20334%2067%22%20width%3D%22334%22%20height%3D%2267%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23908C13%3B%7D%20.st1%7Bfill%3A%2365665D%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M54%2C52.7c-0.2-0.1-0.3%2C0-0.3%2C0.2l-4.7%2C7.6c-0.8%2C1.1-1.5%2C1.5-2.6%2C1.8c-3.3%2C1-13.2%2C1.1-15.7%2C1.2c-0.6%2C0-1.1-0.2-1.1-0.9c0-2.3%2C0.5-21%2C0.5-25.3c0%2C0%2C0.1%2C0%2C0.1%2C0.1c1.4%2C0.9%2C4.2%2C1.4%2C6.2%2C0.1c1.6-1.1%2C2.7-3.5%2C1.5-5.5c-1-1.6-2.7-2.1-3.8-2c1.5%2C1.5%2C0.4%2C3.7-1.8%2C3.5c-2.1-0.2-3.3-2.3-3.1-4.6c0.2-2.6%2C1.1-4.8%2C3.8-6c1.8-0.8%2C4.1-0.7%2C5.8%2C0.5c2.7%2C1.9%2C2.1%2C5.3%2C1.2%2C6.9c2.6-0.7%2C4.6-1.9%2C6.1-3.4c2.3-2.4%2C3-5.7%2C1.6-8.8c-1.4-3.1-4.6-5.2-9-5.1c-3.6%2C0-6.7%2C1.9-8.9%2C4.2c-3.2%2C3.5-3.7%2C8.2-3.7%2C10.7C26%2C32%2C26.8%2C34.8%2C29.8%2C37c-1.6-0.9-5.1-3.3-5.5-10.9c0.3-5.9%2C2.2-9.9%2C5-13.2c0.6-0.7%2C0.7-1.2%2C0.2-2.3C28.8%2C9%2C26.1%2C3.4%2C24.3%2C0.1c0-0.1-0.1-0.1-0.1-0.1v0c0%2C0%2C0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0v0c-0.1%2C0-0.1%2C0-0.1%2C0.1c-1.8%2C3.2-4.5%2C8.8-5.1%2C10.4c-0.5%2C1.1-0.4%2C1.5%2C0.2%2C2.3c2.9%2C3.4%2C4.8%2C7.4%2C5%2C13.4c-0.4%2C7.3-3.6%2C9.7-5.6%2C10.8c3.1-2.2%2C3.8-5%2C3.8-9.3c-0.1-2.5-0.6-7.2-3.7-10.7c-2.2-2.3-5.3-4.2-8.9-4.2c-4.4-0.1-7.6%2C2-9%2C5.1C-0.7%2C21%2C0%2C24.3%2C2.4%2C26.8c1.4%2C1.4%2C3.5%2C2.6%2C6.1%2C3.4c-0.9-1.6-1.5-5%2C1.2-6.9c1.6-1.2%2C4-1.3%2C5.8-0.5c2.7%2C1.2%2C3.6%2C3.4%2C3.8%2C6c0.2%2C2.3-1%2C4.3-3.1%2C4.6c-2.2%2C0.2-3.3-1.9-1.8-3.5c-1-0.1-2.8%2C0.3-3.8%2C2c-1.2%2C2-0.1%2C4.4%2C1.5%2C5.5c1.7%2C1.1%2C4.2%2C0.8%2C5.7%2C0.1c0%2C3.6%2C0.3%2C22.1%2C0.2%2C24.9c0%2C0.9-0.4%2C1.2-0.9%2C1.3l-3.7%2C0.8c-0.4%2C0.1-0.5%2C0.6-0.5%2C1c0%2C0%2C0%2C0%2C0%2C0h0c0%2C0.2%2C0.1%2C0.5%2C0.4%2C0.5h38.2l0.4%2C0c0.5-0.1%2C0.6-0.3%2C0.8-0.7l2.3-11.6C55%2C53.4%2C54.3%2C52.8%2C54%2C52.7z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M83.7%2C57.1c0%2C0.7%2C0.1%2C2%2C0.1%2C2.4c0%2C1.9%2C0.2%2C5.3%2C0.3%2C6c0%2C0.3%2C0.1%2C0.4%2C0.4%2C0.4h14c0.4%2C0%2C0.4-0.5%2C0.4-0.6c0-0.3-0.2-0.7-0.5-0.9l-3.6-0.9c-0.7-0.2-0.9-0.4-0.9-1c0-1.4%2C0.2-5.1%2C0.3-9c0.2-2.9%2C0.3-7.8%2C0.3-9.4c0-8.6-1.8-18.3-13.3-18.3c-8.9%2C0-15.2%2C3.8-19.9%2C8.6c-0.4%2C0.4-0.1%2C0.9%2C0.2%2C1.4c0.1%2C0.2%2C0.3%2C0.2%2C0.5%2C0c4.5-3.9%2C8.6-5.7%2C12.2-5.7c4.3%2C0%2C6.7%2C3.3%2C7.7%2C7.2c0.3%2C1.5%2C0.7%2C3.5%2C0.8%2C5.1c0%2C0.3-0.3%2C0.4-0.4%2C0.1c-0.5-0.4-1.1-1-1.6-1.3c-1.3-1-4-2.2-7.4-2.2c-11%2C0-16%2C8-16%2C15.7c0%2C7.8%2C5.8%2C11.5%2C11.4%2C11.5c7.2%2C0%2C11.5-3.9%2C13.6-7.1c0.4-0.7%2C0.9-1.5%2C1.2-2.1C83.6%2C56.8%2C83.7%2C56.9%2C83.7%2C57.1z%20M83.2%2C53.8c-1.6%2C4.7-4.7%2C8-8%2C8h-0.1c-3.4%2C0-5.9-3.2-5.9-9.2c0-5.8%2C2-11.3%2C6.4-11.3c3.7%2C0%2C6.3%2C3.3%2C7.4%2C6.2c0.5%2C1.2%2C0.8%2C2.3%2C0.8%2C3.3C83.7%2C51.8%2C83.6%2C52.9%2C83.2%2C53.8z%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M245%2C59.9c-1.6%2C0.7-3.3%2C1.5-5.4%2C2c-1.4%2C0.3-3.1%2C0.5-4.3%2C0.5c-6.1%2C0-11.3-4.4-11.3-14.3c0-4.8%2C0.9-9.1%2C2.5-12.4c2.3-4.9%2C5-7.3%2C8.1-7.3c1.1%2C0%2C2.2%2C0.2%2C2.9%2C0.8c0.8%2C0.5%2C1.2%2C1.1%2C1.5%2C1.8c1.2%2C2%2C2.5%2C4.7%2C3.8%2C7.1c0.1%2C0.2%2C0.2%2C0.2%2C0.3%2C0.2c0.3%2C0%2C1-0.4%2C1-0.7l-0.5-9.1c0-0.4-0.2-0.7-0.4-0.8c-1.3-0.6-3.7-1-7.2-1c-6.5%2C0-11.8%2C1.8-16.1%2C5.3c-5.2%2C4-8.5%2C10.4-8.5%2C17.4v0.1c0%2C12.3%2C8.1%2C16.9%2C18.2%2C16.9c3.6%2C0%2C6.5-0.8%2C8-1.3c3.6-1.1%2C6.4-2.5%2C7.6-3.4c0.2-0.2%2C0.3-0.4%2C0.3-0.7C245.5%2C60.3%2C245.3%2C59.8%2C245%2C59.9z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M331.5%2C45.8c1-0.3%2C1.7-1.3%2C1.7-2.3v-0.1c0-7-4.7-16.7-15.9-16.7c-11.9%2C0-20.1%2C10.9-20.1%2C22.2c0%2C12.3%2C7.8%2C17.3%2C18.4%2C17.3c3.4%2C0%2C6.2-0.6%2C8.3-1.2c3.9-1.1%2C6.6-2.5%2C8.5-3.7c0.3-0.2%2C0.5-0.4%2C0.5-0.7c0-0.6-0.2-1.3-0.4-1.2c-1.8%2C1-4%2C1.7-6.2%2C2.2c-1.7%2C0.4-3.3%2C0.6-5.5%2C0.5c-4.9-0.1-9.6-3.8-11-10.1c-0.3-1.2-0.5-3.8-0.4-5.7C313.2%2C46.8%2C328.4%2C46.8%2C331.5%2C45.8z%20M315.8%2C28.4L315.8%2C28.4c4.5%2C0%2C5.5%2C8.8%2C5.5%2C13.3c0%2C1.8-0.4%2C2.3-1.2%2C2.7c-0.8%2C0.4-6.1%2C0.8-10.8%2C0.5C309.1%2C33.2%2C312.5%2C28.4%2C315.8%2C28.4z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M163.8%2C64.4l-3.8-0.9c-0.6-0.2-0.9-0.5-1.3-1.2c-3.4-6.9-8.5-16.4-12.3-21.9c4.6-2.2%2C10.2-6.5%2C10.2-13.1v-0.1c0-8.6-6.5-13.7-21.4-13.7c-8.1%2C0-16.2%2C0.7-20.4%2C1c-0.3%2C0-0.3%2C0.2-0.3%2C0.3c0%2C0.5%2C0.3%2C1%2C0.5%2C1.1l3.4%2C0.5c0.5%2C0.1%2C0.7%2C0.5%2C0.8%2C1.4c0.2%2C3.1%2C0.3%2C19%2C0.4%2C22.3c0%2C4%2C0.2%2C19.1%2C0.2%2C22.4c0%2C0.7-0.3%2C1-0.8%2C1.2l-3.6%2C0.7c-0.4%2C0.1-0.5%2C0.5-0.5%2C1c0%2C0%2C0%2C0%2C0%2C0h0c0%2C0.3%2C0.1%2C0.5%2C0.4%2C0.5h20c0.4%2C0%2C0.4-0.3%2C0.4-0.5c0-0.4-0.2-0.9-0.5-1l-3.7-0.9c-0.6-0.2-0.8-0.4-0.8-1.3c0-3.4%2C0.3-14.9%2C0.3-18.5c0.7%2C0%2C2.3%2C0.1%2C2.8%2C0.1c0.3%2C0%2C0.6%2C0.2%2C0.8%2C0.4c4.9%2C5.5%2C9.9%2C12.4%2C13.8%2C18.2c0.5%2C0.8%2C0.1%2C1.1-0.7%2C1.3l-3.4%2C0.7c-0.3%2C0.1-0.4%2C0.6-0.5%2C1c-0.1%2C0.3%2C0.1%2C0.5%2C0.4%2C0.5h19.8c0.3%2C0%2C0.5-0.1%2C0.5-0.5C164.4%2C65%2C164.2%2C64.5%2C163.8%2C64.4z%20M132.9%2C42.2L132.9%2C42.2c-1.7%2C0-2.1-0.3-2.1-1.3c0-1.5%2C0.6-18.1%2C1-24.4c0-1%2C0.7-1.3%2C2.3-1.3c5.7%2C0%2C9.7%2C5.5%2C9.7%2C12.7C143.8%2C36.2%2C139%2C42.2%2C132.9%2C42.2z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M209.1%2C64.4l-3.1-0.8c-0.8-0.2-0.9-0.6-1-1.3c-0.2-2.2-0.4-11.6-0.4-15.5c0-3.4-0.1-16.2%2C0-19.3c0-0.5-0.2-0.7-0.7-0.7L189%2C28.9c-0.3%2C0.1-0.3%2C0.3-0.3%2C0.4c0%2C0.3%2C0.3%2C0.8%2C0.5%2C0.8l3.8%2C0.3c0.6%2C0.1%2C0.8%2C0.6%2C0.8%2C1.7c0%2C1.6-0.2%2C6.2-0.4%2C8.4c-1.3%2C11.3-5.5%2C20-10.5%2C20c-3.9%2C0-5.5-5-5.5-16.5c0-4%2C0.4-13.8%2C0.5-16.4c0-0.6-0.2-0.8-0.7-0.8L162.4%2C29c-0.2%2C0-0.4%2C0.1-0.4%2C0.3c0%2C0.4%2C0.3%2C1.1%2C0.7%2C1.1h3.5c0.8%2C0%2C1%2C0.4%2C0.9%2C1.4c-0.5%2C3.9-1.2%2C11.2-1.2%2C17.1c0%2C12.3%2C4.9%2C17.3%2C11%2C17.3c7%2C0%2C12-4.8%2C15.4-13c0.3-0.5%2C0.4-1.3%2C0.8-2.2c0.1-0.4%2C0.4-0.3%2C0.4%2C0v2.6c-0.1%2C3.2%2C0%2C10.9%2C0%2C11.9c0%2C0.2%2C0.1%2C0.5%2C0.4%2C0.5h15.3c0.3%2C0%2C0.4-0.2%2C0.4-0.5C209.6%2C65.2%2C209.5%2C64.6%2C209.1%2C64.4z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M295.3%2C64.5l-4-0.8c-0.6-0.2-0.8-0.5-0.7-1.8c0.3-2.9%2C0.9-10.1%2C0.9-17.4c0-10.9-3.3-17.7-10.1-17.7c-8.6%2C0-15%2C11.2-17.4%2C17.7c-0.2%2C0.5-0.5%2C1.5-0.8%2C2.5c-0.1%2C0.4-0.5%2C0.3-0.4%2C0c0-1%2C0.2-1.9%2C0.2-2.8c0.3-6.6%2C1.2-34.1%2C1.2-34.8c0-0.5-0.2-0.8-0.7-0.8l-17.9%2C1.6c-0.3%2C0-0.3%2C0.2-0.3%2C0.3c0%2C0.5%2C0.3%2C1%2C0.6%2C1l5%2C0.2c0.7%2C0%2C0.9%2C0.4%2C0.9%2C1.2c0.1%2C3.1%2C0.3%2C21.5%2C0.3%2C25.2c0%2C4.8%2C0.2%2C22.3%2C0.1%2C24.6c-0.1%2C0.7-0.2%2C0.9-0.8%2C1l-3.9%2C0.9c-0.3%2C0.1-0.4%2C0.6-0.4%2C0.9c0%2C0.4%2C0.1%2C0.5%2C0.4%2C0.5h20.3c0.2%2C0%2C0.3-0.1%2C0.3-0.5c0-0.5-0.3-0.9-0.5-1l-4-0.8c-0.6-0.1-0.9-0.3-0.9-1c0-2.5%2C0.3-7.6%2C0.8-9.8c2-10.1%2C6.8-18.4%2C11.5-18.4c4.4%2C0%2C5.5%2C7.9%2C5.5%2C15.9c0%2C5.2-0.2%2C10.1-0.4%2C12.2c-0.1%2C0.8-0.3%2C1.1-0.9%2C1.2l-4%2C0.7c-0.4%2C0.1-0.5%2C0.6-0.5%2C1c0%2C0.2%2C0%2C0.5%2C0.4%2C0.5h20.3c0.2%2C0%2C0.3-0.1%2C0.3-0.4C295.7%2C65%2C295.6%2C64.6%2C295.3%2C64.5z%22%2F%3E%20%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

:where(.btn_footer) .btn_biz__lnk {
  width: 100%;
  max-width: 303px;
  aspect-ratio: 303 / 55;
  margin-inline: auto;
}

:where(.btn_footer) .btn_biz__lnk::before {
  width: calc(30% - 10px);
  height: 100%;
  aspect-ratio: unset;
  background-size: auto 120%;
  background-position: 0 -5px;
}

:where(.btn_footer) .btn_biz__side {
  font-size: 12px;
}

:where(.btn_footer) .btn_biz__side::after {
  width: auto;
  height: 2.25em;
}

@media (hover: hover) and (min-width: 768px) {
  .btn_biz__lnk:hover {
    background-color: #908C13;
    color: #fff !important;
  }

  .btn_biz__side::after {
    will-change: auto;
    transition: .3s;
  }

  .btn_biz__lnk:hover .btn_biz__side::after {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20334%2067%22%20width%3D%22334%22%20height%3D%2267%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23ffffff%3B%7D%20.st1%7Bfill%3A%23ffffff%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M54%2C52.7c-0.2-0.1-0.3%2C0-0.3%2C0.2l-4.7%2C7.6c-0.8%2C1.1-1.5%2C1.5-2.6%2C1.8c-3.3%2C1-13.2%2C1.1-15.7%2C1.2c-0.6%2C0-1.1-0.2-1.1-0.9c0-2.3%2C0.5-21%2C0.5-25.3c0%2C0%2C0.1%2C0%2C0.1%2C0.1c1.4%2C0.9%2C4.2%2C1.4%2C6.2%2C0.1c1.6-1.1%2C2.7-3.5%2C1.5-5.5c-1-1.6-2.7-2.1-3.8-2c1.5%2C1.5%2C0.4%2C3.7-1.8%2C3.5c-2.1-0.2-3.3-2.3-3.1-4.6c0.2-2.6%2C1.1-4.8%2C3.8-6c1.8-0.8%2C4.1-0.7%2C5.8%2C0.5c2.7%2C1.9%2C2.1%2C5.3%2C1.2%2C6.9c2.6-0.7%2C4.6-1.9%2C6.1-3.4c2.3-2.4%2C3-5.7%2C1.6-8.8c-1.4-3.1-4.6-5.2-9-5.1c-3.6%2C0-6.7%2C1.9-8.9%2C4.2c-3.2%2C3.5-3.7%2C8.2-3.7%2C10.7C26%2C32%2C26.8%2C34.8%2C29.8%2C37c-1.6-0.9-5.1-3.3-5.5-10.9c0.3-5.9%2C2.2-9.9%2C5-13.2c0.6-0.7%2C0.7-1.2%2C0.2-2.3C28.8%2C9%2C26.1%2C3.4%2C24.3%2C0.1c0-0.1-0.1-0.1-0.1-0.1v0c0%2C0%2C0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0v0c-0.1%2C0-0.1%2C0-0.1%2C0.1c-1.8%2C3.2-4.5%2C8.8-5.1%2C10.4c-0.5%2C1.1-0.4%2C1.5%2C0.2%2C2.3c2.9%2C3.4%2C4.8%2C7.4%2C5%2C13.4c-0.4%2C7.3-3.6%2C9.7-5.6%2C10.8c3.1-2.2%2C3.8-5%2C3.8-9.3c-0.1-2.5-0.6-7.2-3.7-10.7c-2.2-2.3-5.3-4.2-8.9-4.2c-4.4-0.1-7.6%2C2-9%2C5.1C-0.7%2C21%2C0%2C24.3%2C2.4%2C26.8c1.4%2C1.4%2C3.5%2C2.6%2C6.1%2C3.4c-0.9-1.6-1.5-5%2C1.2-6.9c1.6-1.2%2C4-1.3%2C5.8-0.5c2.7%2C1.2%2C3.6%2C3.4%2C3.8%2C6c0.2%2C2.3-1%2C4.3-3.1%2C4.6c-2.2%2C0.2-3.3-1.9-1.8-3.5c-1-0.1-2.8%2C0.3-3.8%2C2c-1.2%2C2-0.1%2C4.4%2C1.5%2C5.5c1.7%2C1.1%2C4.2%2C0.8%2C5.7%2C0.1c0%2C3.6%2C0.3%2C22.1%2C0.2%2C24.9c0%2C0.9-0.4%2C1.2-0.9%2C1.3l-3.7%2C0.8c-0.4%2C0.1-0.5%2C0.6-0.5%2C1c0%2C0%2C0%2C0%2C0%2C0h0c0%2C0.2%2C0.1%2C0.5%2C0.4%2C0.5h38.2l0.4%2C0c0.5-0.1%2C0.6-0.3%2C0.8-0.7l2.3-11.6C55%2C53.4%2C54.3%2C52.8%2C54%2C52.7z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M83.7%2C57.1c0%2C0.7%2C0.1%2C2%2C0.1%2C2.4c0%2C1.9%2C0.2%2C5.3%2C0.3%2C6c0%2C0.3%2C0.1%2C0.4%2C0.4%2C0.4h14c0.4%2C0%2C0.4-0.5%2C0.4-0.6c0-0.3-0.2-0.7-0.5-0.9l-3.6-0.9c-0.7-0.2-0.9-0.4-0.9-1c0-1.4%2C0.2-5.1%2C0.3-9c0.2-2.9%2C0.3-7.8%2C0.3-9.4c0-8.6-1.8-18.3-13.3-18.3c-8.9%2C0-15.2%2C3.8-19.9%2C8.6c-0.4%2C0.4-0.1%2C0.9%2C0.2%2C1.4c0.1%2C0.2%2C0.3%2C0.2%2C0.5%2C0c4.5-3.9%2C8.6-5.7%2C12.2-5.7c4.3%2C0%2C6.7%2C3.3%2C7.7%2C7.2c0.3%2C1.5%2C0.7%2C3.5%2C0.8%2C5.1c0%2C0.3-0.3%2C0.4-0.4%2C0.1c-0.5-0.4-1.1-1-1.6-1.3c-1.3-1-4-2.2-7.4-2.2c-11%2C0-16%2C8-16%2C15.7c0%2C7.8%2C5.8%2C11.5%2C11.4%2C11.5c7.2%2C0%2C11.5-3.9%2C13.6-7.1c0.4-0.7%2C0.9-1.5%2C1.2-2.1C83.6%2C56.8%2C83.7%2C56.9%2C83.7%2C57.1z%20M83.2%2C53.8c-1.6%2C4.7-4.7%2C8-8%2C8h-0.1c-3.4%2C0-5.9-3.2-5.9-9.2c0-5.8%2C2-11.3%2C6.4-11.3c3.7%2C0%2C6.3%2C3.3%2C7.4%2C6.2c0.5%2C1.2%2C0.8%2C2.3%2C0.8%2C3.3C83.7%2C51.8%2C83.6%2C52.9%2C83.2%2C53.8z%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M245%2C59.9c-1.6%2C0.7-3.3%2C1.5-5.4%2C2c-1.4%2C0.3-3.1%2C0.5-4.3%2C0.5c-6.1%2C0-11.3-4.4-11.3-14.3c0-4.8%2C0.9-9.1%2C2.5-12.4c2.3-4.9%2C5-7.3%2C8.1-7.3c1.1%2C0%2C2.2%2C0.2%2C2.9%2C0.8c0.8%2C0.5%2C1.2%2C1.1%2C1.5%2C1.8c1.2%2C2%2C2.5%2C4.7%2C3.8%2C7.1c0.1%2C0.2%2C0.2%2C0.2%2C0.3%2C0.2c0.3%2C0%2C1-0.4%2C1-0.7l-0.5-9.1c0-0.4-0.2-0.7-0.4-0.8c-1.3-0.6-3.7-1-7.2-1c-6.5%2C0-11.8%2C1.8-16.1%2C5.3c-5.2%2C4-8.5%2C10.4-8.5%2C17.4v0.1c0%2C12.3%2C8.1%2C16.9%2C18.2%2C16.9c3.6%2C0%2C6.5-0.8%2C8-1.3c3.6-1.1%2C6.4-2.5%2C7.6-3.4c0.2-0.2%2C0.3-0.4%2C0.3-0.7C245.5%2C60.3%2C245.3%2C59.8%2C245%2C59.9z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M331.5%2C45.8c1-0.3%2C1.7-1.3%2C1.7-2.3v-0.1c0-7-4.7-16.7-15.9-16.7c-11.9%2C0-20.1%2C10.9-20.1%2C22.2c0%2C12.3%2C7.8%2C17.3%2C18.4%2C17.3c3.4%2C0%2C6.2-0.6%2C8.3-1.2c3.9-1.1%2C6.6-2.5%2C8.5-3.7c0.3-0.2%2C0.5-0.4%2C0.5-0.7c0-0.6-0.2-1.3-0.4-1.2c-1.8%2C1-4%2C1.7-6.2%2C2.2c-1.7%2C0.4-3.3%2C0.6-5.5%2C0.5c-4.9-0.1-9.6-3.8-11-10.1c-0.3-1.2-0.5-3.8-0.4-5.7C313.2%2C46.8%2C328.4%2C46.8%2C331.5%2C45.8z%20M315.8%2C28.4L315.8%2C28.4c4.5%2C0%2C5.5%2C8.8%2C5.5%2C13.3c0%2C1.8-0.4%2C2.3-1.2%2C2.7c-0.8%2C0.4-6.1%2C0.8-10.8%2C0.5C309.1%2C33.2%2C312.5%2C28.4%2C315.8%2C28.4z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M163.8%2C64.4l-3.8-0.9c-0.6-0.2-0.9-0.5-1.3-1.2c-3.4-6.9-8.5-16.4-12.3-21.9c4.6-2.2%2C10.2-6.5%2C10.2-13.1v-0.1c0-8.6-6.5-13.7-21.4-13.7c-8.1%2C0-16.2%2C0.7-20.4%2C1c-0.3%2C0-0.3%2C0.2-0.3%2C0.3c0%2C0.5%2C0.3%2C1%2C0.5%2C1.1l3.4%2C0.5c0.5%2C0.1%2C0.7%2C0.5%2C0.8%2C1.4c0.2%2C3.1%2C0.3%2C19%2C0.4%2C22.3c0%2C4%2C0.2%2C19.1%2C0.2%2C22.4c0%2C0.7-0.3%2C1-0.8%2C1.2l-3.6%2C0.7c-0.4%2C0.1-0.5%2C0.5-0.5%2C1c0%2C0%2C0%2C0%2C0%2C0h0c0%2C0.3%2C0.1%2C0.5%2C0.4%2C0.5h20c0.4%2C0%2C0.4-0.3%2C0.4-0.5c0-0.4-0.2-0.9-0.5-1l-3.7-0.9c-0.6-0.2-0.8-0.4-0.8-1.3c0-3.4%2C0.3-14.9%2C0.3-18.5c0.7%2C0%2C2.3%2C0.1%2C2.8%2C0.1c0.3%2C0%2C0.6%2C0.2%2C0.8%2C0.4c4.9%2C5.5%2C9.9%2C12.4%2C13.8%2C18.2c0.5%2C0.8%2C0.1%2C1.1-0.7%2C1.3l-3.4%2C0.7c-0.3%2C0.1-0.4%2C0.6-0.5%2C1c-0.1%2C0.3%2C0.1%2C0.5%2C0.4%2C0.5h19.8c0.3%2C0%2C0.5-0.1%2C0.5-0.5C164.4%2C65%2C164.2%2C64.5%2C163.8%2C64.4z%20M132.9%2C42.2L132.9%2C42.2c-1.7%2C0-2.1-0.3-2.1-1.3c0-1.5%2C0.6-18.1%2C1-24.4c0-1%2C0.7-1.3%2C2.3-1.3c5.7%2C0%2C9.7%2C5.5%2C9.7%2C12.7C143.8%2C36.2%2C139%2C42.2%2C132.9%2C42.2z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M209.1%2C64.4l-3.1-0.8c-0.8-0.2-0.9-0.6-1-1.3c-0.2-2.2-0.4-11.6-0.4-15.5c0-3.4-0.1-16.2%2C0-19.3c0-0.5-0.2-0.7-0.7-0.7L189%2C28.9c-0.3%2C0.1-0.3%2C0.3-0.3%2C0.4c0%2C0.3%2C0.3%2C0.8%2C0.5%2C0.8l3.8%2C0.3c0.6%2C0.1%2C0.8%2C0.6%2C0.8%2C1.7c0%2C1.6-0.2%2C6.2-0.4%2C8.4c-1.3%2C11.3-5.5%2C20-10.5%2C20c-3.9%2C0-5.5-5-5.5-16.5c0-4%2C0.4-13.8%2C0.5-16.4c0-0.6-0.2-0.8-0.7-0.8L162.4%2C29c-0.2%2C0-0.4%2C0.1-0.4%2C0.3c0%2C0.4%2C0.3%2C1.1%2C0.7%2C1.1h3.5c0.8%2C0%2C1%2C0.4%2C0.9%2C1.4c-0.5%2C3.9-1.2%2C11.2-1.2%2C17.1c0%2C12.3%2C4.9%2C17.3%2C11%2C17.3c7%2C0%2C12-4.8%2C15.4-13c0.3-0.5%2C0.4-1.3%2C0.8-2.2c0.1-0.4%2C0.4-0.3%2C0.4%2C0v2.6c-0.1%2C3.2%2C0%2C10.9%2C0%2C11.9c0%2C0.2%2C0.1%2C0.5%2C0.4%2C0.5h15.3c0.3%2C0%2C0.4-0.2%2C0.4-0.5C209.6%2C65.2%2C209.5%2C64.6%2C209.1%2C64.4z%22%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22M295.3%2C64.5l-4-0.8c-0.6-0.2-0.8-0.5-0.7-1.8c0.3-2.9%2C0.9-10.1%2C0.9-17.4c0-10.9-3.3-17.7-10.1-17.7c-8.6%2C0-15%2C11.2-17.4%2C17.7c-0.2%2C0.5-0.5%2C1.5-0.8%2C2.5c-0.1%2C0.4-0.5%2C0.3-0.4%2C0c0-1%2C0.2-1.9%2C0.2-2.8c0.3-6.6%2C1.2-34.1%2C1.2-34.8c0-0.5-0.2-0.8-0.7-0.8l-17.9%2C1.6c-0.3%2C0-0.3%2C0.2-0.3%2C0.3c0%2C0.5%2C0.3%2C1%2C0.6%2C1l5%2C0.2c0.7%2C0%2C0.9%2C0.4%2C0.9%2C1.2c0.1%2C3.1%2C0.3%2C21.5%2C0.3%2C25.2c0%2C4.8%2C0.2%2C22.3%2C0.1%2C24.6c-0.1%2C0.7-0.2%2C0.9-0.8%2C1l-3.9%2C0.9c-0.3%2C0.1-0.4%2C0.6-0.4%2C0.9c0%2C0.4%2C0.1%2C0.5%2C0.4%2C0.5h20.3c0.2%2C0%2C0.3-0.1%2C0.3-0.5c0-0.5-0.3-0.9-0.5-1l-4-0.8c-0.6-0.1-0.9-0.3-0.9-1c0-2.5%2C0.3-7.6%2C0.8-9.8c2-10.1%2C6.8-18.4%2C11.5-18.4c4.4%2C0%2C5.5%2C7.9%2C5.5%2C15.9c0%2C5.2-0.2%2C10.1-0.4%2C12.2c-0.1%2C0.8-0.3%2C1.1-0.9%2C1.2l-4%2C0.7c-0.4%2C0.1-0.5%2C0.6-0.5%2C1c0%2C0.2%2C0%2C0.5%2C0.4%2C0.5h20.3c0.2%2C0%2C0.3-0.1%2C0.3-0.4C295.7%2C65%2C295.6%2C64.6%2C295.3%2C64.5z%22%2F%3E%20%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  }
}

@media (max-width: 480px) {

  :where(.sec_nouvelles) .btn_biz__lnk,
  :where(#gnav .sp_h_infor) .btn_biz__lnk {
    width: 176px;
    margin-inline: auto;
  }

  :where(.sec_nouvelles) .btn_biz__side,
  :where(#gnav .sp_h_infor) .btn_biz__side {
    font-size: 9px;
  }
}

@media (min-width: 768px) {
  .btn_footer {
    margin-top: 18px;
    padding-top: 20px;
  }
}
