@charset "UTF-8";
:root {
  --houdake-white: #ffffff;
  --houdake-black: #040000;
  --houdake-gold: #C9A06C;
  --houdake-beige: #F9F5F0;
  --houdake-almond: #ede5db;
  --houdake-brown: #EFE5DA;
}
*{
  font-family: 'Zen Old Mincho', serif;  
}
body{
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1px;
  background-color: var(--houdake-beige);
}
summary{
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display:none;
}
img{
  width: auto;
  max-width: 100%;
}
u{
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 0.2rem;
}
em{
  font-style: normal;
}
a:hover{
  opacity: 0.8;
}
a.linkto_underline{
  color: var(--houdake-lightblue);
  border-bottom: 0.5px solid;
}
.text_sm{
  font-size: 12px;
}
.text_md{
    font-size: 20px;
    line-height: 1.8;
}
.text_lg{
  font-size: 30px;
}
.text_xl{
  font-size: 46px;
}
.text_gold{
  color: var(--houdake-gold);
}
.bg_almond{
  background-color: var(--houdake-almond);
}
.bg_black{
  background-color: var(--houdake-black); 
}
.flex_box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cont_ttl{
  font-size: 38px;
}
.belt_ttl{
  background-color: var(--houdake-black);
  font-size: 38px;
  padding: 1.7rem 0;
}
.belt_ttl span{
  padding-left: 4rem;
  font-size: 0.8em;
}

.ttl_en{
  font-size: 18px;
    letter-spacing: 5px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-orientation: inherit;
}
.ttl_en:after{
    content: '';
    width: 1px;
    height: 400px;
    display: inline-block;
    position: relative;
    left: -3px;
    bottom: calc(10px / 2 - 1px);
    background-color: #000000;
}
.is_tatetxt{
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
.is_center{
  text-align: center;
}
.btn_more_1{
    border: 1px solid var(--houdake-black);
    display: block;
    padding: 1.5rem 1.5rem;
    max-width: 300px;
    font-size: 16px;
    position: relative;
}

.btn_more_1:not(.link_close):after{
    content: '';
    display: block;
    position: absolute;
    transform: translateY(-50%) translateX(0%);
    -webkit- transform: translateY(-50%) translateX(0);
    top: 40%;
    width: 40px;
    height: 8px;
    right: 20px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
}
.btn_more_1:hover{
  background-color: var(--houdake-black);
  color: var(--houdake-white);
}
.btn_more_1:not(.link_close):hover:after{
  border-bottom: 1px solid var(--houdake-white);
  border-right: 1px solid var(--houdake-white);
}
.btn_more_2{
}
.btn_back{
  text-decoration: underline;
  position: relative;
  left: -10px;
  font-size: 14px;
}
.btn_back:before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    position: relative;
    left: 3px;
}

.link_close{
  pointer-events: none;
    opacity: 0.5;
    border: none;
    background: #ddd8d8;
}
.ttl-wrap{
}
.container{   
  width:calc(100% - 60px);
  max-width: 1096px;
  margin: 0 auto 60px;
}
.ttl-wrap + .container{
  padding-top: 40px;
}
.has_sticky{
  position: relative;
    padding: 0 5vw;
}
.sticky_right{
  position: absolute;
    right: 3vw;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    z-index: 2;
}
.sticky_left{
    position: absolute;
    left: 3vw;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-orientation: inherit;
    z-index: 2;
}
.sp{
  display: none;
}
.mask {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 330px;
    height: 215px;
    background-color: var(--houdake-white);
}
.mask img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: auto;
    max-width: initial;
    height: 110%;
}
/* JS　フェードインここから */
.js-interval-fadeIn{
  opacity:0;
}
.scroll-anime{
  opacity: 0;
  /*overflow: hidden;*/
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown {
  0% {opacity: 0;}
  100% {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  }
}
@keyframes fadeInDown {
  0% {opacity: 0;}
  100% {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  }
}

.updown {-webkit-transform: translateY(-20px);-ms-transform: translateY(-20px);transform: translateY(-20px);}
.downup {-webkit-transform: translateY(20px);-ms-transform: translateY(20px);transform: translateY(20px);}

.slide-right {-webkit-transform: translateX(20px);-ms-transform: translateX(20px);transform: translateX(20px);}
.slide-left {-webkit-transform: translateX(-20px);-ms-transform: translateX(-20px);transform: translateX(-20px);}
/* JS　フェードインここまで */

@media screen and (max-width: 1024px){
  .has_sticky{
    padding: 0;
  }
  .ttl_en{
    font-size: 14px;
  }
  .ttl_en:after{
    display: none;
  }
  .btn_more_1{
    margin:0 auto;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
  .text_lg,
  .belt_ttl{
    font-size:clamp(1.375rem, 1.102rem + 1.36vw, 2.125rem);
  }
  .belt_ttl span{
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 414px){
  .container{
    width:calc(100% - 40px);
  }
}
/* ________________________________________________ページング */
.wp-pagenavi{
  text-align: center;  
}
.wp-pagenavi a,
.wp-pagenavi span{
  margin: 0 !important;
  border:none;
  padding: 0.5rem 1rem !important;
  font-size: 14px;
  border: 1px solid #333;
  margin-left: -1px !important;
}
.wp-pagenavi .pages{
  display: block;
  width: 100%;
  border: none;
  margin-bottom: 1rem !important;
}
.wp-pagenavi span.current{
  position: relative;
}

/* ________________________________________________Layout */
.wrap-archive.archive-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 3rem;
    width: calc(100% - 150px);
}
.container-content {
    width:calc(100% - 280px);
}
.archive-container {
    margin-bottom: 60px;
}
.sidebar {
    max-width: 240px;
    width: 30%;
}
.sidebar-wrap {
    margin-bottom: 5rem;
}
.sidebar-wrap h3{
    font-size: 22px;
    border-bottom: 1px solid;
    margin-bottom:0.5rem;
    padding-bottom: 0.5rem;
}
.sidebar-wrap .menu-item a{
    padding: 0.5rem 0;
    display: block;
}

.list_articles-banner{
    padding-left: 6vw;
    margin-bottom: 3rem;
}
.list_articles-banner img{
  width: 100%;
}
.page-header + .wrap-archive .article_wrap{
  max-width: 100%;
}
.page-header + .wrap-archive .archive_item{
  margin-bottom: 2rem;
}
.page-header + .wrap-archive .archive_item a.flex_box{
  gap:20px;
}
.page-header + .wrap-archive .article_thumbnail{
  max-width: 210px;
}
.page-header + .wrap-archive .article_desc{
  width: 100%;
}
.page-header + .wrap-archive .article_desc .flex_box{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.page-header + .wrap-archive .article_desc .article_date {
    font-size: 12px;
}
.page-header + .wrap-archive .article_desc .article_ttl{
  font-size: 20px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px){
    .wrap-archive.archive-flex {
      display: block;
      width: 100%;
      padding: 0 5vw;
    }
    .container-content {
        width: 100%;
        margin-bottom: 3rem;
    }
    .archive-item .thumb {
        max-width: 90px;
        height: 70px;
        margin-right: 1rem;
    }
    .archive-item a .desc {
        width: calc(100% - 100px);
    }
    .sidebar {
        max-width: initial;
        width: 100%;
    }
    .page-header + .wrap-archive .article_wrap{
      width: 100%;
    }
    .list_articles-banner{
      padding-left: 0;
    }
}
@media screen and (max-width: 600px){
    .page-header + .wrap-archive .archive_item a.flex_box{
      gap:10px;
    }
    .page-header + .wrap-archive .article_desc .flex_box{
      margin-bottom: 0.5rem;
    }
    .page-header + .wrap-archive .article_thumbnail{
      max-width: 100px;
      height: 70px;
    }
    .page-header + .wrap-archive .article_desc .article_ttl{
      font-size: 12px;
      margin: 0;
    }
    .page-header + .wrap-archive .article_desc .article_ttl + p{
      display: none;
    }
    .page-header + .wrap-archive .archive_item {
      margin-bottom: 2rem;
    }
}
/* ________________________________________________Global Navigation */
.globalnav-wrap {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 0;
}
.header_logo{
    width: 90px;
    position: absolute;
    z-index: 1;
    left: 10px;
    top: 10px;
}
.header_logo a:hover{
  opacity: 1;
}
.header_contentWrap{
    color: var(--houdake-gold);
    background-color: #000000;
    padding-right: 20px;
}
.globalnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 100px;
    padding-left: 140px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.globalnav .globalnav-item-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}
.globalnav .social_icon_wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
.globalnav .social_icon_item{
  width:18px;
  height: 18px;
}
.globalnav .social_icon_item:not(:last-child){
  border-bottom:none;
  border-right: 1px solid #fff;
  padding: 0 1rem 0 0;
}
.globalnav a{
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  padding: 1rem 0.5rem;
  display: block;
}
.globalnav a:hover{
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.globalnav .globalnav-btn-wrap.current > a{
    color: var(--houdake-white);
    pointer-events: none;
  }

@media screen and (max-width: 1024px){
  .nav-button-wrap {
      display: block;
      position: absolute;
      right: 10px;
      top: 30px;
      z-index: 1000;
      cursor: pointer;
      -webkit-transform: translateY(0%) translateX(-50%);
      -ms-transform: translateY(0%) translateX(-50%);
      transform: translateY(0%) translateX(-50%);
  }
  .globalnav-wrap.open .globalnav{
      color: var(--houdake-gold);
      background-color: #000000e3;
      display: block;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      max-width: 100%;
      height: 100vh;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      z-index: 1;
      margin-left: 0;
      padding:80px 20px 180px 20px;
      text-align: center;
      font-size: 24px;
  }
  .nav-button, .nav-button span {
      display: inline-block;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
  }
  .nav-button {
      z-index: 20;
      width: 25px;
      height: 19px;
      position: relative;
  }
  .nav-button span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #333;
      border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
      top: 0;
  }
  .nav-button span:nth-of-type(2) {
      top: 8px;
  }
  .nav-button span:nth-of-type(3) {
      bottom: 0;
  }
  .nav-button-wrap.active .nav-button span {
      background-color: var(--houdake-white);
  }
  .active .nav-button span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      -ms-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
  }
  .active .nav-button span:nth-of-type(2) {
      opacity: 0;
  }
  .active .nav-button span:nth-of-type(3) {
      -webkit-transform: translateY(-6px) rotate(45deg);
      -ms-transform: translateY(-6px) rotate(45deg);
      transform: translateY(-6px) rotate(45deg);
  }
  .globalnav {
      display: none;
  }
  .globalnav .globalnav-item-wrap{
    display: block;
    margin-bottom: 5rem;
  }
  .globalnav .globalnav-btn-wrap{
      color: var(--houdake-gold);
  }
  .globalnav .globalnav-btn-wrap a{
      display: block;
      padding: 1rem;
  }
  .globalnav .globalnav-item-wrap .globalnav-item:not(:last-child) a{
      border-bottom: 0.5px solid var(--houdake-gold);
  }
  .globalnav .social-item-wrap .ttl{
    font-size: 15px;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  .globalnav .social_icon_wrap{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ________________________________________________Global Sub-Navigation */
.globalnav-sub-wrap{
    position: absolute;
    top: 54px;
    left: 0;
}
.globalnav-sub-wrap .container{
  margin-bottom: 0;
    padding-left: 110px;
}
.globalnav-sub-wrap .globalnav-sub-item{
    display: block;
}
.globalnav-sub-wrap .globalnav-sub-item:not(:last-child){
  margin-right: 2rem;
}
.globalnav-btn-wrap.has-subnav .globalnav-sub-wrap{
    display: none;
}
@media screen and (min-width: 1025px){
  .globalnav-btn-wrap.has-subnav:hover .globalnav-sub-wrap{
    display: block;
    width: 100%;
    background: #D8BC96;
    color: initial;
  }
}

@media screen and (max-width: 1024px){
  .globalnav-btn-wrap.has-subnav .globalnav-sub-wrap{
    display: block;
      position: initial;
  }
  .globalnav-sub-wrap .container{
      display: block;
      width: 100%;
      padding: 0;
  }
  .globalnav-sub-wrap .globalnav-sub-item:not(:last-child){
    margin-right: 0;
  }
  .globalnav-sub-wrap .globalnav-sub-item .has-arrow:after{
    display: none
  }
  .globalnav .globalnav-item-wrap .globalnav-item .globalnav-sub-wrap a{
      font-size: 15px;
      border-bottom: 0;
      padding: 0.5rem 0 0.5rem;
      color: #e9d6be;
  }
  .globalnav .globalnav-item .globalnav-btn-wrap.has-subnav{
    border-bottom: 0.5px solid var(--houdake-gold);
      padding-bottom: 1.5rem;
  }
  .globalnav .globalnav-item .globalnav-btn-wrap.has-subnav > a{
    border-bottom: 0;
  }
}
.globalnav .has-arrow{
  position: relative;
}
.globalnav .has-arrow:after {
  content: "";
    display: inline-block;
    position: absolute;
    border-bottom: 1px solid;
    border-right: 1px solid;
    height: 8px;
    width: 8px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: -3px;
    top: 44%;
}

/* ________________________________________________固定ページ_Header */
.page-header{
  padding: 0 5vw;
}
.page-header .page_ttl{
    padding-top: 12rem;
    width: calc(100% - 60px);
    max-width: 1096px;
    margin: 0 auto 3rem;
}
.page-header.has_sticky .sticky_left{
  top:10rem;
  text-transform: capitalize;
}

@media screen and (max-width: 1024px){
  .page-header .page_ttl{
    width: calc(100% - 90px);
  }
}

/* ________________________________________________TOP First View */
.cont_fv{
    height: 100vh;
    position: relative;
    color: #fff;
    background-color: #000;
    overflow: hidden;
    padding: 4rem 0 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.cont_fv_bg{
    position: absolute;
    z-index: 0;
    opacity: 0.8;
    height: 100%;
  top: 0;
}
.js-fvbg-fadeIn img {
    height: 100%;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
}
.js-fvbg-fadeIn.js-fvbg-zoom{
  -webkit-transition: 50s;
  -o-transition: 50s;
  transition: 50s;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.cont_fv .container {
  position: relative;
  height: 90%;
  margin-bottom: 0;
  max-width: 1200px;
}
.fv_logo{
    max-width: 447px;
    width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.fv_catch{
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(0%);
      -ms-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}
.fv_bodycopy{
    position: absolute;
    bottom: 0%;
    left: 0;
    font-size: 1.3em;
    line-height: 1.6;
}
.deco_social{
  color: var(--houdake-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    text-orientation: inherit;
    position: absolute;
    bottom: 80px;
    right: 3vw;
    opacity: 1;
    z-index: 1;
}
@media screen and (max-width: 1024px){
  .cont_fv{
      margin-top: 0;
      height: 100%;
  }
  .cont_fv .container{
    margin-bottom: 0;
  }
  .fv_clb{
      max-width: 160px;
      margin: 0 auto 2rem;
  }
  .fv_logo,
  .fv_catch{
    position: initial;
      -webkit-transform: initial;
          -ms-transform: initial;
              transform: initial;
      margin: 0 auto 2rem;
  }
  .fv_logo{
    max-width: 300px;
    width: 70%;
  }
  .fv_catch{
    font-size:clamp(2rem, 1.682rem + 1.59vw, 2.875rem);
  }
  .fv_bodycopy{
      position: initial;
      font-size: 16px;
  }
  .cont_fv .deco_social{
    bottom: 15%;
  }
}

/* ________________________________________________TOP First View ナビゲーション */
#headerBG .globalnav-wrap{
  top: -100px;
  transition:  .3s ease-out;
}
#headerBG.main_header.view .globalnav-wrap{
  position: fixed;
    width: 100%;
    z-index: 5;
    top: 0; 
}
.fv_globalnav-wrap.container {
    height: auto;
    padding: 3rem 0 0 2rem;
}
.fv_globalnav-item:not(:last-child){
  margin-right: 3rem;
}
.fv_globalnav-item a{
  color: var(--houdake-gold);
}
@media screen and (max-width: 1024px){
  #headerBG .globalnav-wrap{
    top: 0;
  }
  #headerBG.main_header .nav-button span{
      background-color: #fff;
  }
  #headerBG.main_header.view .nav-button span{
      background-color: #333;
  }
  #headerBG.main_header.view .nav-button-wrap.active .nav-button span{
    background-color: #fff;
  }
  #headerBG.main_header .header_logo{
    top: -100px;
    transition:  .3s ease-out;
  }
  #headerBG.main_header.view .header_logo{
    top: 10px;
  }
}

/* ________________________________________________TOP_About */
.cont_about{
  background-image: url(../images/kinoko.png);
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 6rem;
}
.cont_about_header{
    max-width: 800px;
}
.cont_about .sticky_right,
.cont_about .sticky_left{
    padding-top: 6rem;
}
.cont_about_header .flex_box img {
    width: 50%;
}
.cont_about_header .is_tatetxt{
    margin-right: 0;
    margin-left: auto;
    position: relative;
}
.cont_about_header .is_tatetxt p{
    z-index: 2;
    position: relative;
    line-height: 2.4;
    font-size: 19px;
    padding-top: 4rem;
    padding-right: 4rem;
    padding-bottom: 2rem;
}
.cont_about_header .is_tatetxt img{
    padding-top: 4rem;
    margin-right: 15%;
    position: absolute;
    left: -12vw;
}
.cont_about_intro{
    max-width: 800px;
    margin: 0 auto 4rem;
    letter-spacing: 2px;
    line-height: 2.3;
    font-size: 16px;
    border-left: 1px solid;
    border-right: 1px solid;
    padding: 0 3rem;
    position: relative;
}
.cont_about .deco{
    position: absolute;
    left: -25vw;
    top: 70%;
}

@media screen and (max-width: 1024px){
  .cont_about{
    background-position: left top;
      background-size: 160px;
  }
  .cont_about_header .flex_box{
      width: calc(100% + 60px);
      margin-left: -40px;
  }
  .cont_about_header .is_tatetxt{
      -webkit-writing-mode: horizontal-tb;
          -ms-writing-mode: lr-tb;
              writing-mode: horizontal-tb;
      text-orientation: initial;
      display: -ms-grid;
      display: grid;
      max-width: 414px;
      margin: 0 auto;
    -ms-grid-columns: 1fr 0.5fr;
    grid-template-columns:1fr 0.5fr;
  }
  .cont_about_header .is_tatetxt .cont_ttl{
      -webkit-writing-mode: vertical-rl;
          -ms-writing-mode: tb-rl;
              writing-mode: vertical-rl;
      text-orientation: upright;
      -ms-grid-column: 2;
      -ms-grid-column-span: 1;
      grid-column: 2/3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      grid-row: 1/2;
      padding-right: 1rem;
  }
  .cont_about_header .is_tatetxt p{
      -webkit-writing-mode: horizontal-tb;
          -ms-writing-mode: lr-tb;
              writing-mode: horizontal-tb;
      text-orientation: initial;
      line-height: 2;
      font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
      margin-bottom: 2rem;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1/3;
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      grid-row: 2/3;
      padding-right: 0;
  }
  .cont_about_header .is_tatetxt img{
    position: initial;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
      grid-column: 1/2;
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      grid-row: 1/2;
      margin: 0;
  }
  .cont_about_intro{
      border: none;
      padding: 0;
      margin-bottom: 2rem;
      font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  }
  .cont_about .deco{
    position: initial;
    text-align: center;
      width: 20vw;
      max-width: 400px;
      min-width: 160px;
      margin:2rem auto 0;
  }
}
@media screen and (max-width: 414px){
  .cont_about_header .flex_box{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .cont_about_header .flex_box img{
      width: 100%;
  }
}


.cont_about_footer{
    max-width: 800px;
    margin: 0 auto 6rem;
    padding-top: 4rem;
}
.cont_about_footer .cont_about_footer_wrap{
  display: -ms-grid;
  display: grid;
    -ms-grid-columns: 220px 1fr 1fr;
    grid-template-columns: 220px 1fr 1fr;
}
.cont_about_footer .cont_about_footer_item{
    font-weight: normal;
}
.cont_about_footer .cont_about_footer_item.ttlsub{
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    font-size: 20px;
}
.cont_about_footer .cont_about_footer_item.ttl{
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    letter-spacing: 4px;
    color: var(--houdake-gold);
    border-bottom: 0.5px solid;
    margin-right: 2rem;
}
.cont_about_footer .cont_about_footer_item img{
    width: 200px;
    margin-right: 1rem;
}
.cont_about_footer .cont_about_footer_item.btn{
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-right: 0;
    margin-left: auto;
    padding-top: 1rem;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    margin: 0 auto;
}
.cont_about_footer .cont_about_footer_item.btn .btn_more_1{
  max-width: 100%;
}

@media screen and (max-width: 1024px){
  .cont_about_footer{
      padding-top: 0rem;
      margin-bottom: 3rem;
  }
  .cont_about_footer .cont_about_footer_wrap{
      display: block;
  }
  .cont_about_footer .cont_about_footer_item.ttl{
      text-align: center;
      margin-right: 0;
      border-bottom: 0;
      margin-bottom: 1rem
  }
  .cont_about_footer .cont_about_footer_item.ttlsub{
      margin-bottom: 1rem;
      text-align: center;
  }
  .cont_about_footer .cont_about_footer_item img{
      display: block;
      margin: 0 auto;
  }
}
/* ________________________________________________TOP_Brand */
.bg_product{
  background-image: url(../images/top_brand_2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 60px;
  border-top: 80px solid black;
}
.bg_product .container{
    margin-bottom: 0;
    padding: 6rem 0;
}

.cont_product_item{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 7rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1000px;
    width: calc(100% - 10vw);
    padding: 6rem 2rem 2rem 0rem;
    left: -5%;
}
.cont_product_item:before{
  content: '';
    background-color: var(--houdake-almond);
    position: absolute;
    width: 80%;
    height: 95%;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.cont_product_item{
  margin-bottom: 8rem;
  margin-top: 4rem;
}
.cont_product_logo {
    width: 130px;
    position: absolute;
    top: 0;
    left: 365px;
}
.cont_product_txtbtn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4fr;
    grid-template-columns: 1fr 4fr;
    width: 100%;
    max-width: 600px;
    margin-right: 0;
    margin-left: 410px;
}
.cont_product_name{
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
}
.cont_product_txtbtn p{
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
}
.cont_product_note {
    grid-row: 3/4;
    grid-column: 2/3;
    padding-top: 3rem;
    font-size: 12px;
}
.cont_product_img {
  width: 100%;
    max-width: 390px;
    position: absolute;
    top: 0;
    top: 70%;
    -webkit-transform: translateY(-50%) translateX(0%);
        -ms-transform: translateY(-50%) translateX(0%);
            transform: translateY(-50%) translateX(0%);
    text-align: center;
}
.cont_product_img img{
  margin-top: -6rem;
}
.cont_product_txt{
  line-height: 2;
    margin-bottom: 1.5rem;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
}
.cont_product .sticky_right img{
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px){
  .bg_product{
    margin-bottom: 20px;
  }
  .bg_product .container{
      font-size: clamp(1.375rem, 1.102rem + 1.36vw, 2.125rem);
      padding-left: 6vw;
  }
  .cont_product .has_sticky > .container{
    font-size: 20px;
  }
  .cont_product .sticky_right{
      position: initial;
  }
  .cont_product .sticky_right .is_tatetxt{
      -webkit-writing-mode: inherit;
          -ms-writing-mode: inherit;
              writing-mode: inherit;
      width: calc(100% - 60px);
      max-width: 1096px;
      text-align: center;
  }
  .cont_product .sticky_left{
    top: -10%;
  }
  .cont_product .sticky_left.ttl_en:after{
    display: none;
  }
  .cont_product_logo{
      margin:0 auto;
    position: initial;
  }
  .cont_product_item{
      display: block;
      width: 100%;
      max-width: inherit;
      left: 0;
      padding: 0;
  }
  .cont_product_item:before{
      width: 100%;
      height: 360px;
      top: 20px;
  }
  .cont_product_name{
    margin: 20px auto 20px;
      text-align: center;
  }
  .cont_product_txt br{
    display: none;
  }
  .cont_product_txtbtn{
      display: block;
      margin: 0 auto;
      width: calc(100% - 60px);
      max-width: 414px;
  }
  .cont_product_img{
    position: inherit;
      -webkit-transform: initial;
          -ms-transform: initial;
              transform: initial;
      margin: 0 auto;
      max-width: 300px;
  }
  .cont_product_img img{
    margin-top:0;
    max-height: 380px;
  }
  .cont_product_txt{
      font-size: 16px;
  }
}

/* ________________________________________________TOP_Story */
.cont_story{
    background-image: url(../images/shimeji_img.png);
    background-size: 280px;
    background-repeat: no-repeat;
    background-position: top right;
    padding-top: 6rem;
}
.cont_story .sticky_right{
    padding-top: 6rem;
}
.cont_story_wrap{
  display: -ms-grid;
  display: grid;
  position: relative;
  gap: 0 20px;
}
.cont_story_item:nth-child(1){
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
}
.cont_story_item:nth-child(1) .cont_ttl{
  z-index: 1;
  position: relative;
}
.cont_story_item:nth-child(1) .cont_ttl + img:nth-of-type(1){
    position: absolute;
    left: 0;
    top: 0;
}
.cont_story_item:nth-child(1) p{
    margin-bottom: -5rem;
    z-index: 2;
    position: relative;
    line-height: 2;
    font-size: 19px;
    padding-top: 4rem;
    padding-right: 4rem;
}
.cont_story_item:nth-child(1) .flex_box{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cont_story_item:nth-child(2){
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    padding-top: 8rem;
}
.cont_story_item:nth-child(3){
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
    padding-top: 8rem;
}
.cont_story_item:nth-child(2) img,
.cont_story_item:nth-child(3) img{
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}
.cont_story_item:nth-child(4){
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    width: 100%;
}
.cont_story_item:nth-child(4) .btn_more_1{
    margin: 0 auto;
}

@media screen and (max-width: 1024px){
  .cont_story_wrap{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: 325px;
      gap: 30px;
  }
  .cont_story{
      overflow: hidden;
  }
  .cont_story_item:nth-child(1){
    width: calc(100% - 40px);
    position: relative;
  }
  .cont_story_item:nth-child(1) p{
      padding-right: 1rem;
      padding-top: 0;
      font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  }
  .cont_story_item:nth-child(1) .flex_box img{
    position: absolute;
      bottom: -40%;
      right: -50%;
      max-width: 200px;
      z-index: -1;
  }
  .cont_story_item:nth-child(3){
    padding-top: 1rem;
  }
  .cont_story_item:nth-child(2) img,
  .cont_story_item:nth-child(3) img{
      width: 100%;
      max-width: initial;
  }
}
/* ________________________________________________TOP_Recipe */
.cont_recipe{
  background-color: var(--houdake-white);
    padding-bottom: 6rem;
}
.bg_recipe {
    background-image: url(../images/recipe_2x.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-bottom: 60px;
    color: var(--houdake-white);
}
.bg_recipe .sticky_left{
  top:4rem;
}
.bg_recipe .ttl_en:after{
  background-color:var(--houdake-white);
}
.bg_recipe .cont_ttl{
  padding: 4rem 0 20vh;
}
.cont_recipe .flex_box{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap:20px;
}
.cont_recipe .has_sticky{
    padding: 0 5vw;
}
.cont_recipe .flex_box img{
  width: 60%;
  max-height: 800px;
    z-index: 1;
}
.cont_recipe .flex_box p{
  width: 40%;
}
.cont_recipe .flex_box p .btn_more_1{
    margin: 0 auto;
}

@media screen and (max-width: 1024px){
  .cont_recipe .flex_box{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 50px;
  }
  .cont_recipe .flex_box img{
      width: 100%;
  }
  .cont_recipe .flex_box p{
      width: calc(100% - 40px);
      max-width: 414px;
  }
}
/* ________________________________________________TOP_Information */
.cont_info.has_sticky{
    padding: 10rem 5vw 6rem 15vw;
}
.cont_info .sticky_left{
    top: 2rem;
}
.cont_info .cont_ttl{
    position: absolute;
    top: 10rem;
    left: 12vw;
}
.article_wrap{
    padding-left: 6vw;
    max-width: 900px;
    margin: 0 auto 3rem 0;
    line-height: 1.6;
}
.article_wrap + .btn_more_wrap{
    max-width: 900px;
    padding-left: 6vw;
}
.article_item .article_desc{
  width: 100%;
}
.article_item .article_desc .flex_box{
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    margin-bottom: 0.5rem;
}
.article_item .article_date{
  font-size: 12px;
}
.article_cat{
    font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
    border: 1px solid;
    padding: 2px 8px;
    letter-spacing: 0;
}

.article_wrap .article_thumbnail{
    max-width: 300px;
    width: 100%;
    height: 140px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.article_wrap .article_thumbnail img{
    width: 110%;
    max-width: 110%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    margin: 0 auto;
}

/*2記事目以降*/
.article_wrap .article_item:nth-child(n+2){
    width: calc(100% / 3 - 2.9%);
    display: inline-block;
    margin-right: 3.5%;
    vertical-align: top;
}
.article_wrap .article_item:nth-child(n+2):last-child{
    margin-right: 0;
}
.article_wrap .article_item:nth-child(n+2) .article_thumbnail{
  margin-bottom: 1rem;
}
.article_wrap .article_item:nth-child(n+2) .article_ttl{
  font-size: 14px;
}
/*1記事目*/
.article_wrap .article_new{
  gap:20px;
  margin-bottom: 2rem;
}
.article_wrap .article_new .article_ttl{
  font-size:26px;
  margin-block: 2rem 1rem;
}
.article_wrap .article_new .article_desc{
  width: calc(100% - 320px);
}
.article_wrap .article_new .article_thumbnail{
  height: 200px;
}
.article_wrap .article_thumbnail img.noimage{
    height: 70%;
    max-width: initial;
    width: initial;
    margin: 0 auto;
}

@media screen and (max-width: 1024px){
  .cont_info.has_sticky{
      padding: 4rem 5vw 6rem;
  }
  .cont_info .article_new .article_ttl{
      margin-bottom: 1rem;
      margin-top: 1rem;
      font-size: 22px;
  }
  .article_wrap .article_new .article_desc{
    width: 100%;
  }
  .cont_info .cont_ttl{
    position: initial;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-writing-mode: inherit;
    width: calc(100% - 60px);
    max-width: 1096px;
    margin: 0 auto 60px;
  }
  .article_wrap{
    width: calc(100% - 60px);
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 0;
  }
  .article_wrap .article_new{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
  .article_wrap .article_new .article_thumbnail{
    max-width: 100%;
  }
  .article_wrap .article_item:nth-child(n+2){
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .article_wrap .article_item:nth-child(n+2) a{
    display: flex;
  }
  .article_wrap .article_item:nth-child(n+2) .article_thumbnail{
    max-width: 140px;
    height: 80px;
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .article_wrap + .btn_more_wrap{
    padding-left: 0;
  }
}
@media screen and (max-width: 414px){
  .article_wrap{
    padding:0;
    width: 100%;
  }
  .article_wrap .article_item:nth-child(n+2) .article_thumbnail{
    max-width: 100px;
    height: 70px;
  }
  .article_wrap .article_item:nth-child(n+2) .article_ttl{
    font-size: 12px;
  }
}
/* ________________________________________________Header */

/* ________________________________________________single.php */
.container-single .thumb {
    margin-bottom: 2rem;
}
.desc {
    position: relative;
}
.container-single .date {
    display: block;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: initial;
}
.cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
}
.container-single .desc .ttl{
    margin-bottom: 2rem;
    font-size: 23px;
    word-wrap: break-word;
}
.container-single .desc .post{
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* ________________________________________________page.php */
.page_header .sticky_left{
    bottom: 0;
}
.page_header .sticky_left,
.page_header .sticky_right{
  padding-top: 8.5rem;
}
.page_header .ttl_en:after{
    height: 100%;
}
.page_header .cont_ttl_wrap{
  padding-top: 8.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px){
  .page_header .cont_ttl {
  }
  .page_header .cont_ttl_wrap{
      padding-left: 8vw;
  }
}

/* ________________________________________________page-about.php */
/* About intro */
.page_about_intro{
  position: relative;
}
.page_about_intro .cont_ttl{
    margin-bottom: 1rem;
}
.page_about_intro p{
  line-height:2;
}
.page_about_intro .flex_box{
    flex-direction: column;
    max-width: 435px;
    position: absolute;
    top: 0;
    right: 10%;
    width: 35vw;
}
/* About 豊茸の特徴 */
.page_about_featuresttl{
  padding: 6.5rem 0 0;
}
.page_about_featuresttl .cont_ttl{
    margin-bottom: 1.5rem;
}
.page_about_featuresttl .cont_ttl img{
    max-width: 170px;
}
.page_about_featuresttl .flex_box{

}
.page_about_featuresttl .flex_box div:nth-child(1){
    width: calc(100% - 500px);
}
.page_about_featuresttl .flex_box div:nth-child(2){
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    width: 100%;
    justify-content: flex-end;
}
.page_about_featuresttl .flex_box div:nth-child(2) img{
    max-width: 200px;
}
.page_about_featureslist_wrap{
  counter-reset: num;
}
.page_about_featureslist_item{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:180px 1fr 0.5fr;
  grid-template-columns:180px 1fr 0.5fr;
  margin-bottom: 4rem;
    gap: 20px;
}
.page_about_featureslist_item .ttlsub {
    background-color: var(--houdake-almond);
    grid-column: 1/2;
    grid-row: 1/3;
    padding: 3.8rem 0 0.8rem 3.5rem;
    position: relative;
  font-size: 2.2rem;
}
.page_about_featureslist_item .ttlsub:before{
    content: counter(num);
  counter-increment: num;
    font-size: 34px;
    position: absolute;
    left: 1.25rem;
    top: 1rem;
}
.page_about_featureslist_item .ttlsub:after{
  content: '';
    transform: rotate(-45deg);
    display: block;
    width: 45px;
    height: 0.5px;
    background: black;
    position: absolute;
    left: 1.5rem;
    top: 4rem;
}
.page_about_featureslist_item .ttlsub .is_tatetxt{
    vertical-align: text-bottom;
}
.page_about_featureslist_item img{
  grid-column: 3/4;
  grid-row: 2/4;
  background-color: #fff;
}
.page_about_featureslist_item .ttl{
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
    margin-top: auto;
    font-size: 1.4em;
    padding:1.5rem 0 1rem 0;
}
.page_about_featureslist_item div.text_md{
  grid-column: 1/3;
  grid-row: 3/4;
  margin-left: 4rem;
  padding:0 0 1rem;
  font-size: initial;
}
.page_about_featureslist_item:not(:last-child) div.text_md{
    border-bottom:0.5px solid;
}


@media screen and (max-width: 1024px){
  .page_about_intro .cont_ttl_wrap + p{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .page_about_intro .flex_box{
      right: -30px;
      width:30vw;
  }
  .page_about_featuresttl{
    padding-top: 0;
  }
  .page_about_featuresttl .flex_box{
    display: block;
  }
  .page_about_featuresttl .flex_box div:nth-child(1) {
    width: 100%;
      text-align: center;
  }
  .page_about_featuresttl .flex_box div:nth-child(2).pc{
    display: none;
  }
  .page_about_featureslist_item{
      width: calc(100% - 60px);
      max-width: 414px;
      margin: 0 auto;
      display: block;
      position: relative;
      padding-top: 4.5rem;
  }
  .page_about_featureslist_item .ttlsub{
    position: absolute;
    font-size: 2.2rem;
    display: block;
    top: 0px;
    padding-right: 1.5rem;
    white-space: nowrap;
  }
  .page_about_featureslist_item .ttlsub:before{
    font-size: 28px;
  }
  .page_about_featureslist_item div.text_md{
    margin-left:0;
    border:none;
  }
  .page_about_featureslist_item:not(:last-child){
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 600px){
  .page_about_intro .flex_box{
      position: initial;
      width: calc(100% + 40px);
      max-width: initial;
      margin-left: -20px;
  }
}
@media screen and (max-width: 414px){
  .page_about_intro .cont_ttl_wrap + p{
      max-width: 414px;
  }
  .page_about_intro .flex_box{
    position: initial;
  }
  .page_about_featureslist_item{
      width: calc(100% + 40px);
      max-width: 414px;
      margin-left: -20px;
  }
  .page_about_featureslist_item .ttlsub{
      left: 30px;
  }
  .page_about_featureslist_item .ttl,
  .page_about_featureslist_item div.text_md{
      width: calc(100% - 40px);
      margin: 0 auto;
  }
}

/* ________________________________________________page-story.php */
/* Story イントロ */
.page_story_intro > p{
  line-height: 2;
  margin-bottom: 2rem;
}
.page_story_intro .flex_box{
  align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.page_story_intro .flex_box img:nth-of-type(2){
  margin-top: 4rem;
}
.page_story_intro .flex_box img:nth-of-type(3){
  margin-top: -16rem;
}
/* Story　インタビュースタイル */
.story_intv_cont ul li.flex_box{
  gap:10px;
  display: grid;
  -ms-grid-columns:370px 60px 1fr;
  grid-template-columns:370px 60px 1fr;
}
.bio_badge{
  background-color: var(--houdake-gold);
    color: var(--houdake-white);
    border-radius: 100px;
    display:flex;
    height: 100px;
    width: 100px;
    text-align: center;
    position: absolute;
    right: 0%;
    left: -100%;
    top: -20px;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}
.bio_badge p{
    font-size: 33px;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
}
.bio_badge .text_md{
    font-size: 0.8em;
    line-height: 0;
    position: relative;
    top: -5px;
}
.bio_img{
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
.bio_img img{
  height: 80%;
  object-fit: cover;
}
.bio_pos{
  margin-top: 1rem;
}
.bio_name{
  grid-column: 2/3;
    grid-row: 1/3;
    font-size: 24px;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.bio_name .is_tatetxt{
  padding-top: 6.5rem;
}
.story_intv_msg{
    grid-column: 3/4;
    grid-row: 1/3;
    padding-left: 2rem;
    line-height: 2;
    letter-spacing: initial;
    text-align: justify;
}
.story_intv_msg .text_lg{
  text-align: right;
  margin-bottom: 3rem;
  margin-top: -1rem;
}
.section_developer .story_intv_cont > .container{
  width: 100%;
}
.story_intv_cont ul li.flex_box:not(:last-child){
  margin-bottom: 3rem;
}
.story_intv_cont ul li.flex_box:nth-child(even){
  -ms-grid-columns:1fr 60px 370px;
  grid-template-columns: 1fr 60px 370px;
}
.story_intv_cont ul li.flex_box:nth-child(even) .bio_img{
    grid-column: 3/4;
    grid-row: 1/3;
}
.story_intv_cont ul li.flex_box:nth-child(even) .story_intv_msg{
  grid-column: 1/2;
  grid-row: 1/2;
    padding-left: 0;
    padding-right: 2rem;
}
/* Story　生産者の思い */
.bg_producer{
    background-image: url(../images/story_visual.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10rem;
    color: #fff;
    padding: 4rem 0 6rem;
}
.section_producer .bg_black:nth-child(1) .container{
  margin-bottom:0; 
}
.section_producer .bg_producer .container{
  margin-bottom: 0;
  position: relative;
}
.section_producer .bg_producer .container img{
    position: absolute;
    right: 0;
    bottom: -12.5rem;
}
.section_producer .story_intv_cont{
    background-image: url(../images/story_visual-2.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
}
.section_producer .story_intv_cont > .container{
    margin-bottom: 0;
    padding-bottom: 60px;
}
/* Story　消費者の声 */
.story_consumer .story_consumer_reviews_item{
  display: grid;
    grid-template-columns: 0.2fr 0.4fr 0.4fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
    line-height: 1.6;
}
.story_consumer .story_consumer_reviews_item:not(:last-child){
    margin-bottom: 5rem;
    border-bottom: 1px solid;
    padding-bottom: 2rem;
}
.story_consumer .story_consumer_reviews_item .ttl{
    grid-column: 1/2;
    grid-row: 1/3;
    margin-top: 0;
    margin-bottom: auto;
    font-size: 28px;
}
.story_consumer .story_consumer_reviews_item .img{
  width: 100%;
  text-align: center;
}
.story_consumer .story_consumer_reviews_item .img img{
}
.story_consumer .story_consumer_reviews_item .txt{
    margin-top: 0;
    margin-bottom: auto;
}
.story_consumer .story_consumer_reviews_item .txt .txt_item{
  padding: 0 2rem 0 2rem;
  margin-bottom: 2rem;
}
.story_consumer .story_consumer_reviews_item .txt .txt_item:not(:last-child){
  border-bottom:1px solid;
  padding-bottom: 2rem;
}

@media screen and (max-width: 1024px){
  /* イントロ */
  .page_story_intro .flex_box{
    flex-direction: column;
    align-items: center;
  }
  .page_story_intro .flex_box img:nth-of-type(1){
    z-index: 1;
    order: 2;
  }
  .page_story_intro .flex_box img:nth-of-type(2){
    order: 1;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  .page_story_intro .flex_box img:nth-of-type(3){
    order: 3;
    margin-top: -4rem;
  }

  /* インタビュー */
  .story_intv_cont ul{
    max-width: 414px;
    margin:0 auto;
  }
  .story_intv_cont ul li.flex_box{
    grid-template-columns:1fr 60px;
  }
  .bio_name{
    grid-row: 1/2;
  }
  .bio_pos{
    font-size: 14px;
  }
  .bio_badge{
    left: initial;
  }
  .story_intv_msg{
    grid-column: 1/3;
    grid-row: 2/3;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.8;
    padding-top: 1rem;
  }
  .bio_name .is_tatetxt{
    font-size: 20px;
  }
  .story_intv_cont ul li.flex_box{
    grid-template-rows: 1fr;
    gap: 20px 0;
  }
  .story_intv_cont ul li.flex_box:nth-child(even){
    grid-template-columns: 60px 1fr;
  }
  .story_intv_cont ul li.flex_box:nth-child(even) .bio_img{
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .story_intv_cont ul li.flex_box:nth-child(even) .bio_name{
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .story_intv_cont ul li.flex_box:nth-child(even) .bio_badge{
    left: -10px;
  }
  .story_intv_cont ul li.flex_box:nth-child(even) .story_intv_msg{
    grid-column: 1/3;
    grid-row: 2/3;
    padding-right: 0;
  }

  /* 生産者の思い */
  .bg_producer{
    margin-bottom: 3rem;
  }
  .section_producer .bg_producer .container img{
    right: -20px;
    bottom: -25vw;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  .section_producer .bg_producer .container{
    font-size:clamp(1.375rem, 1.102rem + 1.36vw, 2.125rem);
  }
  .story_intv_msg .text_lg{
    text-align: left;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .section_producer .story_intv_cont{
    background: none;
  }

  /* 消費者の声 */

  .story_consumer .story_consumer_reviews_item{
    display: block;
  }
  .story_consumer .story_consumer_reviews_item .ttl{
    writing-mode: horizontal-tb;
    margin-bottom: 2rem;
  }
  .story_consumer .story_consumer_reviews_item .txt .txt_item:not(:last-child){
    border:none;
    padding-bottom: 0;
  }
  .story_consumer .story_consumer_reviews_item .txt .txt_item{
    padding:0;
  }
  .section_producer .bio_img{
    grid-column: 1/3;
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .section_producer .bio_img img{
    height: 100%;
    object-fit: cover;
  }
  .section_producer .bio_img .bio_pos{
    padding-left: 20px;
  }
  .section_producer .bio_name{
    grid-column: 2/3;
    grid-row: 1/3;
    position: initial;
    z-index: 1;
    height: 100%;
    display: flex;
    position: relative;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  .section_producer .bio_name .is_tatetxt{
    writing-mode: initial;
    top: auto;
    padding-top: 0;
    bottom: -15px;
    position: absolute;
  }
  .section_producer .story_intv_cont{
  }
  .section_producer .bio_badge{
    position: absolute;
    right: 0;
  }
  .section_producer .story_intv_msg{
    grid-row: 3/4;
  }
}
/* ________________________________________________page-brand.php */
/* Brand intro */
.page_header.brand .cont_ttl_wrap{
  position: relative;
  padding-top: 0;
  margin-bottom: 0;
}
.page_header.brand .cont_ttl_wrap:before{
  content: '';
  background-image: url(../images/top_brand_2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 100%;
  margin-left: -5vw;
  margin-right: auto;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  display: block;
  z-index: -1;
  position: absolute;
}
.page_header.brand .cont_ttl_wrap .cont_ttl{
  padding: 8rem 0 7rem;
  margin-bottom:0;
}
.page_header.brand .page_story_intro,
.page_header.brand .page_story_intro > p{
  margin-bottom: 0;
}
.page_header.brand .page_story_intro > p{
  margin-top:-3.5rem;
}
.page_header.brand .bg_page_header_bottom{
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 1.2em;
  line-height: 1.8;
  margin-top: 4rem;
  gap:10px;
  justify-content: space-between;
}
/* Brand 豊茸のここがすごい コンテンツ */
/* レイアウト */
.section_brand_point .page_brand_pointlist.container{
    display: grid;
    grid-template-columns: 6fr 4fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 1rem;
}
.page_brand_pointlis_ttl{
    grid-column: 1/2;
    grid-row: 1/2;
}
.page_brand_pointlist_pkg{
    grid-column: 2/3;
    grid-row: 1/3;
    margin:0 auto;
}
.page_brand_pointlist_pkg dt{
  margin-bottom: 1rem;
  text-align: center;
}
.page_brand_pointlist_wrap{
    grid-column: 1/2;
    grid-row: 2/3;
}

/* Brand 豊茸のここがすごい タイトルベルト */
.section_brand_point .belt_ttl{
    display: flex;
    align-items: center;
    gap: 30px;
}
.section_brand_point .belt_ttl img{
}
.section_brand_point .belt_ttl img:nth-child(1){
  width:130px;
}

/* 豊茸のここがすごい intro */
.page_brand_pointlist_intro{
    margin-bottom: 3rem;
}
.page_brand_pointlist_intro .flex_box{
    align-items: center;
    gap: 10px;
}
.page_brand_pointlist_intro .ttl{
  font-size: 2.4em;
  margin-bottom: 1rem;
}
.page_brand_pointlist_intro .ttlsub{
  display: inline-block;
    border: 1px solid;
    padding: 0.5rem 1rem 0.8rem;
    text-wrap: nowrap;
}
.page_brand_pointlist_intro .list_wrap{
  text-wrap: nowrap;
}
.page_brand_pointlist_intro .list_item{
  position: relative;
  color: var(--houdake-gold);
  display: inline-block;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
.page_brand_pointlist_intro .list_item:not(:last-child){
  border-right: 1px solid;
    padding-right: 0.25rem;
    margin-right: 0.25rem;
}
@media screen and (max-width: 1024px){
  .page_header.brand .bg_page_header{
    margin-left: 0;
  }
  .page_header.brand .cont_ttl_wrap{
    padding-left: 0;
  }
  .page_header.brand .cont_ttl_wrap:before{
    margin-left: 0vw;
  }
  .page_header.brand .cont_ttl_wrap .cont_ttl{
    font-size:clamp(20px,6vw,38px);
    padding-left: 8vw;
    padding-bottom: 3rem;
  }
  .page_header.brand .page_story_intro > p{
    font-size: clamp(16px,5vw,22px);
    margin-top: 2rem;
  }
  .page_header.brand .bg_page_header_bottom{
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
  .page_header.brand .bg_page_header_bottom div{
    display: block;
    font-size: clamp(14px, 4vw, 16px);
  }
  .page_header.brand .bg_page_header_bottom div:nth-of-type(2){
    margin: 0 auto;
  }
  .page_header.brand .bg_page_header_bottom div img{
    margin: 0 auto;
  }
  .section_brand_point .belt_ttl img:nth-child(1){
    width: 100%;
    max-width: 180px;
  }

  .section_brand_point .bg_black{
    padding-bottom: 10rem;
  }
  .section_brand_point .belt_ttl{
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    top: -3rem;
    background-color: transparent;
  }
  .section_brand_point .page_brand_pointlist.container{
    display: flex;
    flex-direction: column;
      margin-top: -14rem;
  }
  .page_brand_pointlist_intro{
    width: 100%;
    order:2;
    margin-bottom: 1rem;
  }
  .page_brand_pointlist_intro .ttl{
    text-align: center;
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .page_brand_pointlist_intro .flex_box{
    display: block;
    text-align: center;
  }
  .page_brand_pointlist_intro .ttlsub{
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    width: 100%;
  }
  .page_brand_pointlist_pkg{
      order:1;
      width: 100%;
      text-align: center;
  }
}

/* Brand 豊茸のここがすごい アコーディオン */
.details {
    margin: 0 auto;
}
.details__summary::before,
.details__summary:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%) translateX(0%);
  display: inline-block;
  width: 1px;
  height: 25px;
  background-color: #000066;
}
.details__summary:after{
    transform:  translateY(-50%) translateX(0%) rotate(90deg);
}
.details[open] .details__summary:before,
.details[open] .details__summary:after{
  content: '';
}
.details[open] .details__summary:before{
  right: 40px;
    transform:  translateY(-50%) translateX(0%) rotate(50deg);
}
.details[open] .details__summary:after{
    right: 59px;
    transform:  translateY(-50%) translateX(0%) rotate(-50deg);
}
.page_brand_pointlist_wrap .details.close .details__summary::before,
.page_brand_pointlist_wrap .details.close .details__summary::after{
  display: none;
}
.details__summary {
    position: relative;
    display: block;
    background-color: var(--houdake-almond);
    cursor: pointer;
    color: var(--kimap-white);
    padding: 1.75rem 5rem 1.75rem 4rem;
    position: relative;
    margin-top: 5px;
}
.details__content {
    overflow: hidden;
    margin: 0;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #fff;
}
.page_brand_pointlist_wrap{
    counter-reset: num;
}
.page_brand_pointlist_wrap .details{
  position: relative;
  margin-bottom: 3rem;
}
.page_brand_pointlist_wrap .details.close{
  pointer-events: none;
}
.page_brand_pointlist_wrap .details .details__summary .text_lg:before {
    content: counter(num);
    counter-increment: num;
    font-size: 34px;
    position: absolute;
    left: 1.25rem;
    top: -1.5rem;
    z-index: 1;
}
.page_brand_pointlist_wrap .details .details__summary .text_lg:after {
    content: '';
    transform: rotate(-45deg);
    display: block;
    width: 55px;
    height: 0.5px;
    background: black;
    position: absolute;
    left: 2rem;
    top: 0.8rem;
    z-index: 1;
}
.badge_wrap{
  background:var(--houdake-gold);
  color: var(--houdake-white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.badge_inner{
    letter-spacing: 0;
    font-size: 12px;
    text-wrap: nowrap;
    line-height: 1;
}
.badge_inner .larger{
    font-size: 3.5em;
    margin-bottom: 4px;
    display: inline-block;
}
.badge_inner .larger_mid{
    font-size: 2em;
    line-height: 1.2;
    display: inline-block;
}

.pointlist_grid_wrap{
  display: grid;
  grid-template-columns: 1fr 0.3fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.pointlist_grid_wrap .badge_wrap{
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 0 auto;
}
.pointlist_grid_wrap .badge_icon{
    grid-column: 2/3;
    grid-row: 2/3;
    margin:0 auto;
}
.pointlist_grid_wrap .pointlist_grid_body{
    grid-column:1/2;
    grid-row:1/3;
    margin-top: 0;
    margin-bottom: auto;
    line-height:1.8;
}
.pointlist_grid_wrap .pointlist_grid_wide{
    grid-column: 1/3;
    grid-row: 3/4;
}

@media screen and (max-width: 1024px){
  .pointlist_grid_wrap{
    grid-template-columns: 1fr;
    grid-template-rows:1fr;
  }
  .page_brand_pointlist_wrap .details{
    margin-bottom: 2rem;
  }
  .page_brand_pointlist_wrap .details:last-child{
    margin-bottom: 4rem;
  }
  .details__summary::before,
  .details__summary:after{
    right: 30px;
  }
  .details[open] .details__summary:before,
  .details[open] .details__summary:after{
    height: 15px;
  }
  .details[open] .details__summary:before{
    right: 25px;
  }
  .details[open] .details__summary:after{
    right:36px;
  }
  .details__summary{
    padding:1.5rem 3.5rem 1.5rem 3rem;
  }
  .details__summary .text_lg{
    font-size: clamp(18px, 4vw, 24px);
  }
  .page_brand_pointlist_wrap{
    order:3;
    width: 100%;
  }
  .page_brand_pointlist_wrap .details .details__summary .text_lg:before{
  font-size: clamp(28px, 5vw, 34px);
    left: 1rem;
    top: -1rem;
  }
  .page_brand_pointlist_wrap .details .details__summary .text_lg:after{
    left: 1.5rem;
  }
  .pointlist_grid_wrap .ttl.has-arrow:before{
    display: none;
  }
  .pointlist_grid_wrap .ttl.has-arrow{
    grid-column: 1/3;
  }
  .pointlist_grid_wrap .ttl{
      grid-column: 1/3;
      padding: 0;
      text-align: center;
  }
  .pointlist_grid_wrap .badge_wrap{
      grid-column: 1/3;
      grid-row: 1/2;
      margin-left: 0;
      margin: 0 auto;
  }
  .pointlist_grid_wrap .badge_icon{
      grid-column: 1/2;
      grid-row: 2/3;
      max-width: 130px;
      margin-right: 0;
  }
  .pointlist_grid_wrap .pointlist_grid_body{
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

/* ________________________________________________contact お問い合わせ */
.contact .page_header{
    padding-top: 8.5rem;
}
.contact .page_header .cont_ttl{
  margin-bottom: 2rem;
}
.contact .wpcf7-form-control:not([type="submit"]){
  background-color: #fff;
  font-size: 16px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid;
  width: 100%;
}
.contact .wpcf7-not-valid-tip{
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.contact textarea.wpcf7-form-control{
  width: 100%;
}
.contact .btn-submit{
    margin: 1rem auto 0;
    width: 100%;
    max-width: 260px;
    position: relative;
}
.contact .btn-submit:after {
    content: '';
    display: block;
    position: absolute;
    -webkit-transform: translateY(-50%) translateX(0%);
        -ms-transform: translateY(-50%) translateX(0%);
            transform: translateY(-50%) translateX(0%);
    top: 30%;
    width: 40px;
    height: 8px;
    right: 20px;
  border-bottom: 1px solid #fff;
    border-right: 1.5px solid #fff;
    -webkit-transform: skew(45deg);
        -ms-transform: skew(45deg);
            transform: skew(45deg);
}
.contact .btn-submit input[type="submit"]{
    color: #fff;
    padding: 1rem 1rem 1rem 3rem;
    background: black;
    width: 100%;
    font-size: 22px;
    text-align: left;
}
.contact .contact_form{
  max-width: 767px;
  margin-bottom: 2rem;
}
.contact .contact_form .ttl{
    display: inline-block;
    font-size: 14px;
    margin-bottom: 0.5rem;
}
.contact .contact_form .flex_box{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.contact .contact_form .flex_box .flex_box_item{
    width: calc(50% - 10px);
}
.contact .wpcf7-form.sent p{
    display:none;
}
@media screen and (max-width: 1024px){
  .contact .contact_form .flex_box{
    display: block;
  }
  .contact .contact_form .flex_box .flex_box_item{
      width: 100%;
  }
}

/* ________________________________________________Footer */
.main_footer{
  background-color: var(--houdake-black);
    color: var(--houdake-gold);
    font-size: 14px;
    padding: 8rem 0 2rem;
    position: relative;
}
.main_footer .footer-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    width: calc(100% - 60px);
    max-width: 1135px;
    margin: 0 auto 1rem;
}
.main_footer .ttl{
    font-size: 19px;
    letter-spacing: 4px;
}
.footer_item_1{
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.footer_item_1 .ttl{
    margin-bottom: 1rem;
}
.footer_item_1 dl dt{
  font-size: 15px;
  margin-bottom: 0.8rem;
}
.footer_item_2{
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
  -ms-grid-row-align: end;
      align-self: end;
  font-size: 12px;
  letter-spacing: 0;
}
.footer_item_2 img{
  display: block;
    margin-bottom: 2rem;
}
.footer_item_2 .links_clb {
    margin-block: 4rem 3rem;
}
.footer_item_2 .links_clb a {
    font-size: 17px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
}
.footer_item_2 .links_clb a:not(:last-child){
    border-right: 1px solid;
    padding-right: 1rem;
    margin-right: 1rem;
}
.footer_item_3{
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-row-align: start;
      align-self: start;
    -ms-grid-column-align: center;
        justify-self: center;
    margin-top: -2rem;
}
.footer_item_4{
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    align-self: baseline;
    -ms-grid-column-align: end;
        justify-self: end;
    max-width: 290px;
    width: 100%;
    text-align: justify;
}
.footer_item_4 br{
  display: none;
}
.footer_item_4 .anzen_txt{
    font-size: 12px;
    line-height: 2;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}
.footer_item_4 .ttl{
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
}
.footer_item_5{
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
    -ms-grid-column-align: center;
        justify-self: center;
}
.footer_item_5 p{
  border:0.5px solid;
  font-size: 12px;
  padding: 0.25rem 0.5rem;
}
.footer_item_6{
    position: absolute;
    right: 15px;
  -ms-grid-column-align: center;
      justify-self: center;
  color: var(--houdake-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-orientation: inherit;
}
.footer_item_6 p{
    margin-bottom: 0.5rem;
}
.footer_item_6 span{
  padding: 0.5rem 0
}
.social_icon_wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.social_icon_item:not(:last-child){
    border-bottom: 1px solid;
    padding-bottom: 0.8rem;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}
.social_icon_item{
  width: 15px;
    height: 15px;
}
.social_icon_item img{
  display: block;
}
.footer_item_7{
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  -ms-grid-column-align: right;
      justify-self: right;
}

@media screen and (max-width: 1024px){
  .main_footer .footer-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:2rem;
      max-width: 414px;
  }
  .footer_item_1,
  .footer_item_2,
  .footer_item_3,
  .footer_item_5,
  .footer_item_6,
  .footer_item_7{
    margin: 0 auto;
  }
  .footer_item_1{
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 0;
  }
  .footer_item_2{
    -ms-flex-item-align:inherit;
        -ms-grid-row-align:inherit;
        align-self:inherit;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .footer_item_2 .links_clb{
    margin-block: 0 3rem;
  }
  .footer_item_3{
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 2rem;
      max-width: 170px;
  }
  .footer_item_4{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer_item_5{
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .footer_item_5 p{
    font-size: 12px;
  }
  .footer_item_6{
    position: initial;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
  }
  .footer_item_6{
    text-orientation: inherit;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .footer_item_7{
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .main_footer .social_icon_item:not(:last-child){
    border: 0;
    border-right: 1px solid;
    padding: 0 1rem 0 0;
  }
}