@charset "UTF-8";
/* 共通CSS ------------------------------*/
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
 html {
   overflow-y: scroll;
   height: 100%; overflow-x: hidden;
   font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
 }
 body { width: 100%; overflow-x: hidden; }

 div, dl, dt, dd, ul, ul li, ol, ol li, h1, h2, h3, h4, h5, h6,
 pre, form, fieldset, p, blockquote, th, td,
 section, nav, article, aside, hgroup, header, address,
 figure, figcaption {
   margin: 0;
   padding: 0;
 }
 address, caption, cite, code, dfn, em, strong, th, var {
   font-style: normal;
   font-weight: normal;
 }
 table {
   border-collapse: collapse;
   border-spacing: 0;
   width: 100%;
 }
 caption, th {
   text-align: left;
 }
 q::before, q::after {
   content: '';
 }
 object, embed {
   vertical-align: top;
 }
 h1, h2, h3, h4, h5, h6 {
   font-size: 100%;
 }
 img, abbr, acronym, fieldset {
   border: 0;
 }
 img {
   -ms-interpolation-mode: bicubic;
   border: none;
   vertical-align: top;
   line-height: 0;
 }
 ul li, ol li {
   list-style-type: none;
 }
 select {
   background-color: #FFF;
   border: 1px solid #A9A9A9;
   box-sizing: border-box;
 }
 textarea {
   border: 1px solid #A9A9A9;
   box-sizing: border-box;
   padding: 2%;
 }
 a {
   outline: none;
   text-decoration: none;
 }
 a:link {
   text-decoration: none;
 }
 a:visited {
   text-decoration: none;
 }
 a:hover {
   color: #947e50;
   text-decoration: none;
 }
 a:hover img {
   opacity: .70;
   filter: alpha(opacity=70);
   -ms-filter: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
   -khtml-opacity: .70;
   -moz-opacity: .70;
   cursor: pointer;
   transition: opacity .3s;
 }
 a:active {
   text-decoration: none;
   color: #c00;
 }
 img {
   max-width: 100%;
   height: auto;
   width: auto;
 }

/* header CSS ------------------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #193910;
    height: 60px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0px 2px 5px rgba(148, 126, 80, 0.6);
    z-index:100;
}
header a {
    color: #ffffff;
}
.header-iCon-image-wrap { position: absolute; left:-45px; top: 17px; width: 480px; overflow: hidden; opacity: 0.3;}

.header_h1 {
    position: absolute;
    left: 10px;
    top: 19px;
    font-size: 0.8em;
    font-weight: bold;
    color: #fff;
}


@media (max-width: 470px) {
  .header_h1 { font-size: 0.6em; margin-top: 3px;}
  .header-iCon-image-wrap { display: none;}
}

@media (min-width: 568px) {

  #menu-text { display: none;}
  .gnav-mobile { display: none;}
  .gnav-desktop {
        display: block;
        text-align: right;
    }
    .gnav-desktop ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding-top: 20px;
    padding-right: 20px;
    list-style-type: none;
    font-size: 0.8em;
    }
    .gnav-desktop ul li {
        margin-left: 20px;
    }
    #hamburger-menu {
        display: none;
    }

}


@media (max-width: 567px) {

    #menu-text {
        position: absolute;
        top: 36px;
        right: 15px;/*2026/03*/
        color: #fff;
        font-size: 12px;
        text-align: center;
    }
    .gnav-desktop { display: none;}
    .gnav-mobile {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.gnav-mobile.active {
    display: block;
    opacity: 1;
    width: 100vw; /* 画面の幅の100% */
    height: 100vh; /* 画面の高さの100% */
    overflow-y: auto; /* 必要に応じてスクロール可能 */
    position: fixed;
    top: 60px; /* ヘッダーの高さに合わせる */
    left: 0; /* 画面の左端から開始 */
    background-color: #fff; /* 背景色 */
    z-index: 1000; /* 他の要素より前面に表示 */
}

.gnav-mobile ul {
    display: block;
    text-align: left;/*2026/03*/
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.gnav-mobile ul li {
    margin-left: 0;
    position: relative;
}

    .gnav-mobile ul li::after {/*2026/03*/
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 0.5px;
        background-color: #D9D9D9;
    }

    .gnav-mobile ul li a {
        color: #333;
        text-decoration: none;
        display: block;
        padding: 20px 40px 20px 40px;/*2026/03*/
        font-size: 18px;/*2026/03*/
         font-weight: 800;/*2026/03*/
    }

    .gnav-mobile ul li a:hover {
      background-color: #ffffff;/*2026/03*/
      color: #333;/*2026/03*/
    }

    .gnav-mobile ul li a {
      transition: background-color 0.3s, color 0.3s;
    }

    .gnav-mobile .menu-item {
    position: relative;
    }

    .gnav-mobile .sub-menu {
    display: none;
    list-style-type: none;
    padding-left: 0;
    position: absolute;
    background-color: #ffffff;/*2026/03*/
    width: 100%;
    height: auto; /* 初期状態の高さを自動に設定 */
    overflow-y: auto; /* 縦方向のスクロールを可能に */
    padding-bottom: 50px; /* コンテナの下部に余白を追加 */
    overflow-y: auto;
}
.gnav-mobile .sub-menu li:last-child {
    margin-bottom: 50px; /* 最後の項目の下に余白を追加 */
}

.gnav-mobile .sub-menu.open {
    display: block;
    z-index: 100; /* 他の要素よりも上に表示 */
}

    .gnav-mobile .sub-menu li a:hover {
        background-color: #ffffff;
        color: #333;
    }
    .gnav-mobile .submenu-trigger.open {
    background-color: #ffffff; /* サブメニューが開いている時の背景色 */
    }
    .gnav-mobile .sub-menu.open li a {
    color: #333; /* 2026/03 白→黒*/
}

    .gnav-mobile-btn { fill:#947e50; font-size:30px; vertical-align: -8px; padding-left: 10px;}

    .gnav-mobile .submenu-trigger:hover .gnav-mobile-btn {
    fill: #193910; /* ホバー時の色 */
}

.gnav-mobile .submenu-trigger.active .gnav-mobile-btn {
    fill: #193910; /* タップ時の色 */
    transform: rotate(180deg); /* 180度回転 */
    transition: transform 0.3s, fill 0.3s; /* スムーズな遷移 */
}

.gnav-mobile .gnav-mobile-btn {
    fill: #947e50;
    font-size: 30px;
    vertical-align: -8px;
    transform-origin: center;
    transition: transform 0.3s, fill 0.3s; /* スムーズな遷移のための設定 */
}

.gnav-mobile .submenu-trigger.active .gnav-mobile-btn {
    fill: #193910; /* タップ時の色 */
    transform: rotate(180deg); /* 180度回転 */
}



      #switchImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease-in-out;
      }

      #hamburger-menu {
       position: absolute;
       top: 14px;
       right: 15px;
       width: 30px;
       height: 20px;
       cursor: pointer;
       }

     #hamburger-menu span {
         position: absolute;
         left: 0;
         width: 100%;
         height: 1px;
         background-color: #fff;
         transition: all 0.3s;
     }

     #hamburger-menu span:nth-child(1) {
         top: 0;
     }

     #hamburger-menu span:nth-child(2) {
         top: 50%;
         transform: translateY(-50%);
     }

     #hamburger-menu span:nth-child(3) {
         bottom: 0;
     }

     #hamburger-menu.open span {
        background-color: #FFF;
    }

     #hamburger-menu.open span:nth-child(1) {
         transform: translateY(10px) rotate(45deg);
     }

     #hamburger-menu.open span:nth-child(2) {
         opacity: 0;
     }

     #hamburger-menu.open span:nth-child(3) {
         transform: translateY(-10px) rotate(-45deg);
     }

    /*2026/03*/
     .text-top {
      font-size: 18px !important;
      font-weight: 800;
    }
    .text-bottom {
      font-size: 14px !important;
      font-weight: 800;
    }
}



/* header CSS ------------------------------*/

.gnav-menu-title {
  color: #1a1a1a;
}
.new_shop_header_block {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
}
.new_shop_header_block .wrap {
flex: 1;
margin: 10px auto;
width: 1200px;
max-width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-ms-justify-content: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
-ms-align-items: center;
-webkit-align-items: center;
align-items: center;
}
.new_shop_header_block .expanded-wrap {
padding-top: 30px;
padding-bottom: 10px;
}
.new_shop_header_block .logo img {
  width: auto;
  height: 60px;
  display: inline-block;
  vertical-align: bottom;
  margin-left:65px;
  opacity: 1;
}

.new_shop_header_block .logo {
display: flex;
align-items: center;
}

.new_shop_header_block .logo .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 20px;
}

.new_shop_header_block .logo .text-container .top-text,
.new_shop_header_block .logo .text-container .bottom-text {
    color: #1a1a1a;
}

.new_shop_header_block .logo .text-container .top-text {
    font-size: 14px; margin-bottom:3px;
}

.new_shop_header_block .logo .text-container .bottom-text {
    font-size: 19.0px; margin-top:3px;
}
.new_shop_header_block .search-form-container {
position: absolute;
right: 30px;
top: 120px;
transform: translateY(-50%);
}

.new_shop_header_block .search-form-container form {
    display: flex;
}

.new_shop_header_block .search-form-container input {
    padding: 10px;
    border-radius: 4px;
    border: 1.5px solid #193910;
    transition: border 0.3s;
    width:200px;
    height:35px;
}
.new_shop_header_block .search-form-container input:focus {
outline: none;
border: 2px solid #947e50;
}
button {
border: none;
padding: 0;
background: none;
}
button img {
    display: block;
    width: 50px;
    height: auto;
}
.search-form-container button {
margin-left: 8px;
}

.search-form-container button img {
    width: 32px;
    height: auto;
    transition: all 0.3s ease-in-out;
}
.search-form-container input[type="text"] {
    font-size: 16px;
}

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


.shop_header_block .gnav {
margin-left: 0;
}

.shop_header_block .gnav > ul {
height: 100%;
margin: 0 auto;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-ms-justify-content: center;
-webkit-justify-content: center;
justify-content: center;
-ms-align-items: center;
-webkit-align-items: center;
align-items: center;
}
.shop_header_block .gnav > ul > li {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-ms-justify-content: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
-ms-align-items: center;
-webkit-align-items: center;
align-items: center;
height: 60px;
position: relative;
width: 135px;
text-align: center;
display: block;
line-height: 60px;
}

/* 最初の要素の左マージンを0にする */
  .shop_header_block .gnav > ul > li:first-child {
      margin-left: 0;
  }

  /* 最後の要素の右マージンを0にする */
  .shop_header_block .gnav > ul > li:last-child {
      margin-right: 0;
  }

.shop_header_block .gnav > ul > li.arrow > a {
font-size: 0.88em; color: #1a1a1a;
}
.shop_header_block .gnav > ul > li.arrow > a:hover {
font-size: 0.88em; color: #947e50;
}


.shop_header_block .gnav > ul > li > a {
font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W6", "Yu Mincho", "游明朝", "MS PMincho", "ＭＳ Ｐ明朝", serif;
font-weight: bold;
font-size: 0.8em;
letter-spacing: 1px;
display: block;
}
.shop_header_block .gnav > ul > li:hover .menu {
max-height: 9999px;
opacity: 1;
}
.shop_header_block .gnav .menu {
display: block;
max-height: 0;
opacity: 0;
overflow: hidden;
width: 150%;
left: 0;
top: 60px;
text-align: left;
position: absolute;
background: #fff;
box-shadow: 1.5px 1.5px 0px 0.8px rgba(25, 57, 16, 1);
border-radius: 4px;
z-index: 100;
transition: opacity .8s, height .8s;
border: 0.05px solid rgba(25, 57, 16, 1);
}
.shop_header_block .gnav .menu ul {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-ms-justify-content: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
-ms-align-items: flex-start;
-webkit-align-items: flex-start;
align-items: flex-start;
width: 100%;
margin: 0 auto;
}
.shop_header_block .gnav .menu ul li {
width: 100%;
font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
font-size: 0.8em;
line-height: 1.8;
font-weight: bold;
border-bottom: none;
color: #193910;
}
.top-item {
margin-top: 10px;
}
.last-item {
margin-bottom: 20px;
}
.shop_header_block .gnav .menu ul li .content {
display: block;
margin-left: 15px;
margin-right: 15px;
border-bottom: solid 0.5px #1a1a1a;
}
.shop_header_block .gnav .menu ul li a {
color: #1a1a1a;
display: block;
padding: 10px 5px;
letter-spacing: 1px;
}
a.content:hover {
color: #947e50;
}
.shop_header_block .gnav .menu ul li a:hover {
color: #947e50;
}
.shop_header_block {
position: relative;
}

.shop_header_block::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7px;
  height: 1px;
  background-color: #947e50;
  width:80%;
  margin: 0 auto;
}

.shop_header_mobile { display: none;}

@media screen and (max-width: 710px) {
  .gnav-desktop-text { display: none;}
}

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

  .new_shop_header_block .logo img {
    width: auto;
    height: 65px;
    margin-left:65px;
  }

  .new_shop_header_block .logo .text-container .top-text {
      font-size: 14px; margin-bottom:3px;
  }

  .new_shop_header_block .logo .text-container .bottom-text {
      font-size: 18px; margin-top:3px;
  }
}

@media (max-width: 568px) {

    .new_shop_header_block .logo img {
      width: auto;
      height: 60px;
      margin-left:30px;
    }

    .shop_header_block .wrap {
     width: 100%;
     height: 60px;
     margin: 0 auto;
    }

    .shop_header_block .gnav {
     display: none;
    }
    .new_shop_header_block .logo .text-container {
     display: none;
    }
    .shop_header_mobile {
      display: block;
      position: absolute;
      top: 108px;
      right:20px;
    }

}

@media (max-width: 400px) {

    .new_shop_header_block .logo img {
      width: auto;
      height: 55px;
      margin-left:30px;
    }
}

.search-form-container-mobile {
  display: none;
}

@media (max-width: 768px) {

      .search-form-container {
       display: none;
      }

      .new_shop_header_block .search-form-container-mobile {
          display: block;
          position: relative;
          margin: -25px auto 20px auto;
          padding-left: 10px;
      }

      .new_shop_header_block .search-form-container-mobile form {
          display: flex;
      }

      .new_shop_header_block .search-form-container-mobile input {
          padding: 10px;
          border-radius: 3px;
          border: 1.5px solid #193910;
          transition: border 0.3s;
          width:260px;
          height:40px;
      }
    .new_shop_header_block .search-form-container-mobile input:focus {
        outline: none;
        border: 2px solid #947e50;
    }

    .search-form-container-mobile button {
        margin-left: 10px;
    }

    .search-form-container-mobile button img {
        width: 40px;
        height: auto;
        transition: all 0.3s ease-in-out;
    }

    .search-form-container-mobile input[type="text"] {
        font-size: 16px;
    }
}


/*サーチボタン*/
#header_search_form {
display: none;
width: 300px;
position: absolute;
right: 10px;
top: 60px;
border: solid 1px #CCC;
background: #FFF;
z-index: 1000;
line-height: 100%;
text-align: left;
}
#header_search_form input[type="text"] {
width: 90%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
height: 35px;
padding: 5px;
}
#header_search_form button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: absolute;
right: 0px;
top: 0px;
height: 35px;
width: 55px;
border: 0;
text-align: center;
display: block;
outline: none;
color: #FFF;
}

/*k-new_hero */
.swiper-container-wrap { padding:20px 0;}
.swiper-container {
    position: relative;
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 60%;
    transform: translateY(-2%);
    width: 35px; /* Adjust as needed */
    height: 35px; /* Adjust as needed */
    background: transparent !important; /* 背景を透明に */
    color: #947e50 !important;
    z-index: 10; /* Ensure buttons are above the images */
}


.swiper-button-prev::after, .swiper-button-next::after {
    color: #947e50 !important;
}
.swiper-pagination-bullet {
    background: #947e50 !important;
}

.swiper-pagination-bullet-active {
    background: #947e50 !important;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}
.swiper-container {
    width: 100vw;
    max-width: 100%;
}

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

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-container {
    padding-bottom: 60px !important;
}

.swiper-pagination {
    bottom: 15px !important;
}

.swiper-button-prev,
.swiper-button-next {
    top: calc(50% - 30px) !important;
    transform: translateY(-50%) !important;
}
@media screen and (max-width: 768px) {

    .swiper-button-prev,
    .swiper-button-next {
        top: auto !important;
        bottom: 5px !important;
        transform: none !important;
    }
    .swiper-button-prev {
        left: 10% !important;
    }
    .swiper-button-next {
        right: 10% !important;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 30px !important;
    }
}
/* k-new_items1 */
 /* intro 紹介------------------------------*/

.image-item1Container-wrap { padding:50px 0 0 0;}

 #image-item1Container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background:#947e50;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

#image-item1Container img {
  /* transition: opacity 1.4s ease-in-out;
  flex: 1 0 auto;
  width: 16.66666%;
  object-fit: cover;
  box-sizing: border-box;
  margin: 0;
  padding: 0; */
  transition: opacity 1.4s ease-in-out;
  flex: 1 0 auto;
  width: 20%;
  object-fit: cover;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (max-width: 850px) {
  #image-item1Container img {
    transition: opacity 1.4s ease-in-out;
    flex: 1 0 auto;
    width: 20%;
    object-fit: cover;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 650px) {
  #image-item1Container img {
    transition: opacity 1.4s ease-in-out;
    flex: 1 0 auto;
    width: 20%; /* 100 / 6 */
    object-fit: cover;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 500px) {
  #image-item1Container img {
    transition: opacity 1.4s ease-in-out;
    flex: 1 0 auto;
    width: 20%; /* 100 / 6 */
    object-fit: cover;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
}

 .text-item1Container{
   text-align: center;
   line-height: 30px;
   margin-bottom: 30px;
 }
 .text-item1Container h3{
   text-align: center;
   margin-bottom: 10px;
   font-size: 0.88em;
 }
 @media (max-width: 579px)  {
    body { color: #333;}/*2026/03*/
   .text-item1Container h3{ font-size: 14px; line-height: 30px; margin-bottom: 0px; font-weight: 800;}/*2026/03*/
 }

.container-item1-header {
 width: 100%;
 margin: 0 auto;
 text-align: center;
}

.container-item1-header img {
 width: 88px;
 margin: -10px auto -20px auto;
 padding-bottom: 60px;
}


/* k-new_items2------------------------------*/
/* 商品紹介------------------------------*/

body, html {
   margin: 0;
   padding: 0;
}

.container-item {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   padding:30px;
}
.container-content {
   margin:0 auto; max-width:1000px; padding-bottom: 80px;
}

.text-top, .text-bottom {
   padding-left: 10px;
   border-left: 1px solid #947e50;
   transition: transform 1.5s ease 2.5s;
}
.text-top {
   font-size: 1.2em;
   margin-top: 5px;
   margin-bottom: 0;
}
.text-bottom {
   font-size: 0.85em;
   margin-top: 0;
   margin-bottom: 50px;
   padding-top: 8px;
   padding-bottom: 5px;
}



.container-item-header-1{
   text-align: center;
   margin: 0 0 30px 0;
   padding:30px 5px 0 5px;
}
.container-item-header-1 h3 {
   font-size: 1.15em;
   margin: 0;
   padding: 10px 0 0 0;
}


.container-furusato2-wrap {
  margin:0 auto; max-width:750px;
}
.container-furusato2-text {
  margin:30px auto 0 auto; width:100%; text-align: center;
}
.container-furusato2-text h4 {
   font-size: 0.95em;
   line-height: 30px;
}

.image3-box {
   position: relative;
   overflow: hidden;
   margin:0 auto; max-width:750px;
   height: auto;
   box-sizing: border-box;
   text-align: left;
}
.image3-box img {
   margin:0 auto; max-width:750px;
   height: auto;
   display: block;
   box-sizing: border-box;
   transition: border-color 0.3s ease;
}
.image3-box:hover .text-top3 {
   border-left: 18px solid #193910;
}
.image3-box:hover .text-bottom3 {
   border-left: 18px solid #947e50;
}

.news-text-top, .news-text-bottom, .news-text-date {
   padding-left: 10px;
   border-left: 1px solid #947e50;
   transition: transform 1.5s ease 2.5s;
}
.news-text-top {
   font-size: 0.88em;
   letter-spacing: -0.4px;
   margin-top: 5px;
   margin-bottom: 0;
}
.news-text-date {
  font-size: 0.75em;
  padding-top:13px;
}
.news-text-bottom {
   text-align: right;
   font-size: 0.88em;
   margin-top: 0;
   margin-bottom: 50px;
   padding-top: 8px;
   padding-bottom: 5px;
}



@media (max-width: 749px) {

  .container-furusato2-wrap {
   margin:0 auto; width:100%;

  }

  .container-furusato2-text {
   margin:30px auto 0 auto; width:100%; text-align: center;
  }

  .container-furusato2-text h4 {
   font-size: 0.95em;
   line-height: 30px;
  }

  .image3-box {
   position: relative;
   overflow: hidden;
   margin:0 auto; width:100%;
   height: auto;
   box-sizing: border-box;
   text-align: left;
  }

  .image3-box img {
   margin:0 auto; width:100%; padding: 0 20px;
   height: auto;
   display: block;
   box-sizing: border-box;
   transition: border-color 0.3s ease;
  }

}





@media (max-width: 579px) {

    .container-furusato { margin: 0; width: 100%;}

    .break-mobile {
        display: block;
    }

   .image2-box {
     flex: 1 0 calc(50% - 10px);
     position: relative;
     overflow: hidden;
     margin: 0 0 30px 0;
     padding: 0;
   }

   .container-item-header-1 h3 {
      font-size: 1.15em;
   }

    .news-text-top {
       font-size: 0.80em;
       letter-spacing: -0.6px;
       margin-top: 5px;
       margin-bottom: 0;
    }
    .news-text-date {
      font-size: 0.60em;
      padding-top:13px;
    }
    .news-text-bottom {
       text-align: right;
       font-size: 0.80em;
       margin-top: 0;
       margin-bottom: 50px;
       padding-top: 8px;
       padding-bottom: 5px;
    }
}


/* k-new_items2-2 */
body, html {
   margin: 0;
   padding: 0;
}

.image2-box {
   position: relative;
   overflow: hidden;
   width: 100%;
   height: 100%;
   box-sizing: border-box;
}
.overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform-origin: center center;
   transform: scale(1);
   transition: transform 0.5s ease 0.5s;
   box-sizing: border-box;
   object-fit: cover;
   overflow: hidden;
   box-sizing: border-box;
}
.image2-box img {
   width: 100%;
   height: auto;
   display: block;
   aspect-ratio: 4 / 3;
   box-sizing: border-box;
   transition: border-color 0.3s ease;
}
.text-top2, .text-bottom2 {
   padding-left: 10px;
   border-left: 8px solid #193910;
   transition: transform 1.5s ease 2.5s;
}
.text-top2, .text-bottom2 {
   padding-left: 10px;
   border-left: 1px solid #947e50;
   transition: transform 1.5s ease 2.5s;
}
.text-top2 {
   font-size: 1.1em;
   margin-top: 5px;
   margin-bottom: 0;
}
.text-bottom2 {
   font-size: 0.90em;
   padding-top: 7px;
   padding-bottom: 3px;
   margin-bottom: 50px;
}

/* k-new_items2-3 */
body, html {
   margin: 0;
   padding: 0;
}

.text-top3 {
   padding-left: 10px;
   border-left: 18px solid #947e50;
   transition: transform 1.5s ease 2.5s;
   font-size: 1.4em;
   margin-top: 5px;
   margin-bottom: 0;
   padding-top: 5px;
   padding-bottom: 5px;
}
.text-bottom3 {
   padding-left: 10px;
   border-left: 18px solid #193910;
   transition: transform 1.5s ease 2.5s;
   font-size: 1.1em;
   padding-top: 10px;
   padding-bottom: 10px;
}


@media (max-width: 579px) {
     .text-bottom3 {
         font-size: 16px;
         padding-top: 12px;
         padding-bottom: 0px;
         margin-bottom: 0px;
     }
     .text-bottom2 {
         font-size: 15px;
         padding-top: 20px;
         padding-bottom: 0px;
         margin: 0px;
     }
}






/* k-new_footer */
/* フッター ------------------------------*/
.inline { display: inline-flex;}
.footerTitle_S { font-size: 1.0em; color:#193910;}
.footerTitle_L { font-size: 1.2em; color:#193910; padding: 30px 0 0 0;}
  @media (max-width: 579px) {
 .footerTitle_S { font-size: 1.0em; color:#193910;}
 .footerTitle_L { font-size: 1.2em; color:#193910; padding: 30px 0 20px 0;}
  }

.footerText { font-size: 0.85em; padding:2px; letter-spacing: 0.05px; line-height: 25px; color:#193910;}
.footerText_M { font-size: 0.85em; padding:2px; letter-spacing: 0.05px; line-height: 25px; color:#193910;}
.footerText_M a { font-size: 0.85em; padding:2px; letter-spacing: 0.05px; line-height: 25px; color:#193910;}
.footerText_L { font-size: 0.85em; color:#193910;}
@media (max-width: 579px) {
.footerText { font-size: 0.80em; padding:2px; letter-spacing: 0.05px; line-height: 25px; color:#193910;}
.footerText_M { font-size: 0.80em; padding:2px; letter-spacing: 0.05px; line-height: 25px; color:#193910;}
}

.footer_textArea { margin-top: 18px;}

.shop_footer_block {
  background: #193910;
  width: 100%;
  height: auto;
  padding: 40px 0px;
  margin: 0;

  text-align: center;
}
.shop_footer_block img {
    width: 100px;
    margin: 5px 0 15px 0;
}
@media screen and (max-width: 768px) {
  .shop_footer_block{
    padding: 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  .shop_footer_block .wrap {
    padding: 0px;
    border-top: solid 1px #CCC;
  }
}
.shop_footer_bottom_block {
  background: #111111;
  color: #FFF;
  width: 100%;
  height: auto;
  padding: 0;
  margin-bottom: -30px;

}
.shop_footer_bottom_block a {
  color: #FFF;
  text-decoration: underline;
}
.shop_footer_bottom_block .wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .shop_footer_bottom_block .wrap {
    padding: 15px;
  }
}
.shop_footer_bottom_block .footer_nav {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shop_footer_bottom_block .footer_nav {
    width: 100%;
    text-align: center;
  }
}
.shop_footer_bottom_block .footer_nav ul {
  font-size: 0;
  margin: 8px 0px 30px 0;
}
.shop_footer_bottom_block .footer_nav ul li {
  font-size: 12px;
  display: inline-block;
  border-right: solid 1px #FFF;
  line-height: 100%;
}
.shop_footer_bottom_block .footer_nav ul li:last-child {
  border-right: none;
}
.shop_footer_bottom_block .footer_nav ul li a {
  display: block;
  padding: 0 5px;
  text-decoration: none;
}

footer, .footer_area { background: #947e50; color: #fff; padding:20px; }
.shop_footer_bottom_block { background: #193910; color: #fff; padding:20px; }
.shop_footer_block { background: #193910; color: #fff; padding:20px; }
.footer_line1 { border-color: #fff;
                border-width: 2px;
                border-style: solid;
                margin: 10px 0 0 0;}
.footer_line2 { border-color: #fff;
                border-width: 0.9px;
                border-style: solid;
                margin: 10px 0 10px 0;}

.footer_nav_text, .footer_nav_text2 { font-size: 1.10em; color: #fff;}
.footer_nav_text:hover, .footer_nav_text2:hover { color: #947e50;}
.company_text_company { font-size: 0.96em; color: #fff;}
.company_text_adress { font-size: 0.90em; color: #fff;}

.copyright { font-size: 0.80em;}

@media (max-width: 470px) {
  .copyright { font-size: 0.75em;}
}

@media (max-width: 630px) {
 .footer_nav_list li { margin:0 0 30px 0;}
 .footer_nav_list2 li { margin:0 0 30px 0;}
}

@media (min-width: 768px) {

     .footer_area { margin:0 auto; max-width: 1200px;}

     .footer_area_in {
         display: inline-flex;
         width:100%;
     }
     .footer_area_0 {
       width:100%;
       margin:0 auto;
       padding:20px;
     }
     .footer_area_1, .footer_area_2 {
         width:50%;
         margin:0 auto;
         padding:20px;
     }

}
@media (max-width: 767px) {

   .footer_area { padding:20px;}
   .footer_area_1, .footer_area_2 {
       width:100%;
   }

}


.footerButton {
 width: 100%;
 background-color: #193910;
 color: #fff; /
 border: none;
 padding: 10px 20px;
 text-align: center;
 text-decoration: none;
 display: inline-block;
 font-size: 0.85em;
 margin: 4px 2px 14px 2px;
 border-radius: 2px;
}
.footer_nav_text, .footer_nav_text2 {
 margin-right: 15px; margin-left: 15px;
}

/* 最後の項目には余白を設定しない */
.footer_nav_list li:last-child .footer_nav_text,
.footer_nav_list2 li:last-child .footer_nav_text2 {
 margin-right: 0;
}




body, html {
    margin: 0;
}
.break {
      display: block;
  }

.section_title_h3 { font-size: 1.35em; line-height: 30px; margin-left: -15px; margin-bottom: 10px;}
.section_title_h4 { line-height: 30px; margin-left: -15px; margin-bottom: 10px;}

.break-all {
  display: block;
  line-height: 40px;
}

@media (max-width: 700px) {
  .break-700 {
        display: block;
        line-height: 32px;
    }
}

@media (max-width: 579px) {
  .break_height_1 { line-height: 22px;}
  .break_height_2 { line-height: 22px;}
}


.mobile_none { display: block;}
.mobile_display { display: none;}

.pc_indent {
padding-left: 20px; /* 左側に30pxのパディングを追加 */
text-indent: -20px; /* 最初の行のインデントを打ち消す */
}


@media (max-width: 579px) {
.mobile_display { display: block;}
.mobile_none { display: none;}
.mobile_break {
      display: block;
  }
.mobile_break_indent {
      display: block; margin-left:20px;
  }
.footerText_M_mobile { line-height:60px; margin-top: -10px;}
}

.intro-topicsBtn {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 45px 30px 45px;
max-width:1000px;
max-width: 90%;
margin: 0 auto;
position: relative;
}

.intro-topicsBtn-image {
position: relative;
overflow: hidden;
max-width: 1000px;
max-width: 100%;
}

.intro-topicsBtn-image img {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  transition: opacity 0.3s ease; padding-bottom: 7px;
}

.hover-image {
  position: absolute; /* 画像を重ねるための絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0; /* 最初は透明にしておく */
}

.intro-topicsBtn-image:hover .default-image {
  opacity: 0; /* ホバー時に非表示にする */
}

.intro-topicsBtn-image:hover .hover-image {
  opacity: 1; /* ホバー時に表示する */
}


.hover-image {
  position: absolute; /* 画像を重ねるための絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0; /* 最初は透明にしておく */
}

/* モーダルウィンドウのスタイル */

@keyframes floatUp {
from {
transform: translateY(10px); /* わずかに下に位置する */
opacity: 0;
}
to {
transform: translateY(0px); /* 元の位置まで浮かび上がる */
opacity: 1;
}
}

.modal-2 {
display: none; /* 最初は非表示にしておく */
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0); /* バックドロップ */
background-color: rgba(0,0,0,0.4); /* バックドロップの透明度 */
animation: floatUp 0.5s ease-out forwards;
}

/* モーダルコンテンツのスタイル */
.modal-2-content {
position: relative;
background-color: #fefefe;
margin: 15% auto;
padding: 40px;
border: 1px solid #888;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
animation-name: animatetop;
animation-duration: 1.2s
}

/* モーダルを閉じるボタンのスタイル */
.close2 {
color: #193910;
float: right;
font-size: 28px;
font-weight: bold;
z-index: 10000;
position: absolute;
top: 3px;
right: 8px;
}

.close2:hover,
.close2:focus {
color: #947e50;
text-decoration: none;
cursor: pointer;
}

.about::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 9;
background: rgba(255, 255, 255, 0.25);
}

.about .about-container {
top:45%; left:0%; transform: translateX(-50%, -50%); -webkit-transform: translateX(-50%, -50%); -ms-transform: translateX(-50%, -50%); margin: auto; text-align:center;
position: relative;
z-index: 10;
}
@media (max-width: 550px) {
.about .about-container {
  top:29%;
}
}

@media (max-width: 768px) {
.about {
  text-align: center;
}
}
.break_pc {
  display: block;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  border-top: 1px solid #193910;
  border-bottom: 1px solid #193910;
  margin:100px auto;
  width:80%;
}

.news-space {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20%;
  height: auto;
  position: relative;
  flex: 1;
  width:100px;
  position: relative;
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 25px;
}

.news-text {
  flex: 100%;
  text-align: left;
  margin-left: 5px;
  font-size: 15px;
  margin-top: 25px;
  margin-bottom: 50px;
}

.news-text a { color:#1a1a1a;}
.news-text a:hover { color:#947e50;}

.news-content {
  padding:5px 0;
}
.news-inline {
  display: flex;
  align-items: flex-start;
}

.news-date {
  margin-right: 15px;
  white-space: nowrap;
  align-self: center;
  font-size: 1.00em;
}
.news-content {
  flex-grow: 1;
  flex-basis: 0;
  word-wrap: break-word;
  font-size: 1.00em;
}

@media (min-width: 780px) {

  .news-container {
    justify-content: flex-start;
    width: 780px;
    margin: 0 auto;
    padding:20px;
    border-top: 1px solid #193910;
    border-bottom: 1px solid #193910;
    margin:100px auto 120px;
  }

  .news-space {
    margin-top: 0;
    margin-bottom: 0;
  }


  .news-space::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background-color: #000;
      margin-top: 0;
    }

  .news-text {
    flex: 0 0 80;
    flex: 3;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 50px;
  }

}

.campaine-card { margin:40px auto; width:70%; min-width:355px; max-width:780px;}
.campaine-card-text {
  text-align: center; font-size: 18px; line-height: 30px; border:1px solid #ffffff;
  background-color:#947e50; box-shadow:0 0 0 6px #947e50; padding:16px; margin:20px; color:#fff; padding:50px;
}
.campaine-card :hover { background-color:#193910; box-shadow:0 0 0 6px #193910;}
.campaine-card-text-icon { font-size: 35px; margin: 25px 0 -10px 0; font-family: 'Apple Chancery',  "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; opacity: 0.3;}
.campaine-card-text-break { display:none;}
.campaine-card-text-break-None { display:block;}

.corner-image {
 position: absolute;
 width:200px;
 transform-origin: center;
 transform: rotate(-30deg);
 margin-top:-80px; margin-left:-80px;
}

.campaine-card2 { position: relative; margin:0 auto 150px auto; width:70%; min-width:355px; max-width:780px;}
.campaine-card2-text {
  text-align: center; font-size: 18px; line-height: 30px; border:1px solid #ffffff;
  background-color:#193910; box-shadow:0 0 0 6px #193910; padding:16px; margin:20px; color:#fff; padding:50px;
}
.campaine-card2 :hover { background-color:#947e50; box-shadow:0 0 0 6px #947e50;}
.campaine-card2-text-icon { font-size: 35px; margin: 25px 0 -10px 0; font-family: 'Apple Chancery',  "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; opacity: 0.3;}
.campaine-card2-text-break { display:none;}

.corner-image2 {
    position: absolute;
    top: 8%;
    right:5%;

}
.corner-image2 img {
    display: block;
    max-width: 65px;
    height: auto;
    opacity:0.3;
}

@media (max-width: 880px) {
    .campaine-card-text-break { display:block;}
    .corner-image {
     position: absolute;
     width:170px;
     transform-origin: center;
     transform: rotate(-30deg);
     margin-top:-80px; margin-left:-80px;
    }
    .campaine-card2-text-break { display:block;}

    .corner-image2 {
        position: absolute;
        top: 8%;
        right:7%;

    }
    .corner-image2 img {
        display: block;
        max-width: 55px;
        height: auto;
        opacity:0.3;
    }
}

@media (max-width: 720px) {
      .corner-image2 {
          position: absolute;
          top: 6%;
          right:9%;
      }
      .corner-image2 img {
          display: block;
          max-width: 50px;
          height: auto;
          opacity:0.3;
      }
}

@media (max-width: 500px) {
    .campaine-card-text { font-size: 15px;}
    .campaine-card-text-icon { font-size: 30px;}
    .corner-image {
     position: absolute;
     width:140px;
     transform-origin: center;
     transform: rotate(-30deg);
     margin-top:-80px; margin-left:-80px;}
     .campaine-card2-text { font-size: 15px;}
     .campaine-card2-text-break { display:block;}
     .campaine-card-text-break-None { display:none;}
     .corner-image2 {
         position: absolute;
         top: 6%;
         right:8.5%;
     }
     .corner-image2 img {
         display: block;
         max-width: 45px;
         height: auto;
         opacity:0.3;
     }
}

.ribon-image { width:110vw; overflow:hidden;}

.about-title { font-size:1.45em; margin-top:-50px; margin-bottom:30px; color:#fff; text-shadow: 2px 2px 3px #947e50;}
.about-text { font-size:1.00em; line-height:30px; color:#fff; text-shadow: 2px 2px 3px #947e50;}
@media (max-width: 500px) {
  .about-title { font-size:1.2em; margin-top:-50px; margin-bottom:30px; color:#fff; text-shadow: 2px 2px 3px #947e50;}
  .about-text { font-size:0.85em; line-height:30px; color:#fff; text-shadow: 2px 2px 3px #947e50;}
}

/* おしらせ */
    .container-news-box {/*2026/03*/
      display: flex;
      flex-wrap: wrap;
      padding: 10px 5px 10px 15px;
      justify-content: flex-start;
    }
    .news-box {
      box-sizing: border-box;
      margin-bottom: 10px;
    }

    .container-item-header-news-box {
       text-align: center;
       margin: 0;
       padding:60px 5px 30px 5px;
    }
    .container-item-header-news-box h3 {
       font-size: 1.15em;
       margin: 0;
       padding: 0;
    }

    @media (min-width: 580px) {
    .news-box {
        flex: 0 0 calc(33.3333% - 10px);
        margin-right: 10px;
        }
        .news-box:nth-child(3n) {
        margin-right: 0;
        }
    }
    @media (max-width: 579px) {
        /* .container-news-box { padding: 5px;} */
        .news-box {
        flex: 0 0 calc(50% - 10px);
        margin-right: 10px;
        }
        .news-box:nth-child(2n) {
        margin-right: 0;
        }
        .container-item-header-news-box {
           text-align: center;
           margin: 0;
           padding:90px 5px 30px 5px;
        }
        .container-item-header-news-box h3 {
           font-size: 1.15em;
           margin: 0;
           padding: 0;
        }
    }
    .news-box img {
        width: 100%;
        height: auto;
    }


/* 商品ラインナップ */

.container-image-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex: 1 0 calc(33.3333% - 10px);
    box-sizing: border-box;
    margin-bottom: 10px;
}
.image-box img {
   width: 100%;
   height: auto;
   display: block;
   aspect-ratio: 4 / 3;
   box-sizing: border-box;
   transition: border-color 0.3s ease;
}

.container-item-header-image-box {
   text-align: center;
   margin: 0;
   padding:30px 5px 30px 5px;
}
.container-item-header-image-box h3 {
   font-size: 1.15em;
   margin: 0;
   padding: 0;
   line-height: 40px;
}

@media (min-width: 580px) {
    .image-box {
        flex: 0 0 calc(33.3333% - 10px);
        margin-right: 10px;
    }
    .image-box:nth-child(3n) {
        margin-right: 0;
    }
}
@media (max-width: 579px) {
    .image-box {
        flex: 0 0 100%;
        margin-right: 0;
    }

  .container-item-header-image-box {
     text-align: center;
     margin: 0;
     padding:50px 5px 30px 5px;
  }
  .container-item-header-image-box h3 {
     font-size: 18px;/*2026/03*/
     margin: 0;
     padding: 0;
  }
}
.image-box img {
    width: 100%;
    height: auto;
}


/* アペリティフ ラインナップ */
.container-image2-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.image2-box {
    box-sizing: border-box;
    margin-bottom: 10px;
}

.container-item-header-image2-box{
   text-align: center;
   margin: 0;
   padding:30px 5px 30px 5px;
}
.container-item-header-image2-box h3 {
   font-size: 1.15em;
   margin: 0;
   padding: 0;
}


@media (min-width: 580px) {
    .image2-box {
        flex: 0 0 calc(50% - 10px);
        margin-right: 10px;
    }
    .image2-box:nth-child(2n) {
        margin-right: 0;
    }
}
@media (max-width: 579px) {
    .image2-box {
        flex: 0 0 100%;
        margin-right: 0;
        padding: 10px;
    }
    .image2-box img {
        width: 100%;
        height: auto;
    }
    .container-image2-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0;
      margin: 0 auto;
    }
    .container-item-header-image2-box{
       text-align: center;
       margin: 0;
       padding:50px 5px 30px 5px;
    }
    .container-item-header-image2-box h3 {
       font-size: 1.15em;
       margin: 0;
       padding: 10px 0 0 0;
    }
}

@media screen and (max-width: 768px) {
  .shop_header_block::after {
    display: none !important;
  }
  .new_shop_header_block .search-form-container-mobile {
    margin-top: 0px !important;
  }
  .header_h1 {
    top: 13px !important;
    font-size: 0.75em !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
}
.info-announce {
        font-size: 90% !important;
}
}
