@charset "utf-8";
/*——————————————————————
base
——————————————————————*/
/*-----------------------
*memo
6/24
★命名規則-h1&h2はhtmlの命名のルールに則って使用数に注意
　基本css同じ記述で反映できるような見出しを設定する
　それ以外の細かくセクションごと
　そこまで重要でない要素に対してはdivとかでOk
　
★sectionの取り扱い-sectionタグ自体に名前はつけない（<section>のみで使用）
　エリア全体に名前どうしてもつけたい時はsection直下に<div>を置いてそこに命名



-----------------------*/

html{
  font-size: 10px;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #3E3E3E;
    /*全体バックに画像を配した場合以下を記載*/
    background-image: url("../img/common/bg.jpg");
    background-repeat: repeat;
    background-attachment: fixed;
    background-position:center center;
    background-size: 20% 20%;
    margin: auto;
  }
  *
  {
    margin: 0;
    padding: 0;
  }

  a,
  a:link,
  a:visited,
  a:active {
    text-decoration: none;
    color: #3E3E3E;
  }

  * {
  box-sizing: border-box;
  }

.body_wrapper{
  overflow: hidden;
}

/*——————————————————————
————————————————————————
全体設定
————————————————————————
——————————————————————*/

.display_flex{
  display: flex;
}

.display_flex-s{
  display: flex;
}

.display_flex._01{
  justify-content: space-between;
}

.space._01{
  height: 1rem;
}
.space._04{
  height: 4rem;
}
.space._05{
  height: 5rem;
}
.space._06{
  height: 6rem;
}
.space._08{
  height: 8rem;
}
.space._15{
  height: 15rem;
}
.space._16{
  height: 16rem;
}
.space._32{
  height: 3.2rem;
}
.space._40{
  height: 4rem;
}
.space._46{
  height: 4.6rem;
}
.space._48{
  height: 4.8rem;
}
.space._50{
  height: 5rem;
}
.space._76{
  height: 7.6rem;
}
.space._80{
  height: 8rem;
}
.space._154{
  height: 15.4rem;
}
.space._185{
  height: 18.5rem;
}
.space._200{
  height: 20rem;
}
.space._204{
  height: 20.4rem;
}
.space._236{
  height: 23.6rem;
}


/*——————————————————————
hタグフォント指定
——————————————————————*/

h1{
    font-size: 5rem;
    font-weight: bold;
}

h1 span{
  font-size: 2rem;
  font-weight: 400;
}
/*top縦書きコピー*/
.h1_title h1{
  font-size: 3.2rem;
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 2rem;
  font-family: serif;
  font-weight: normal;
  color: #fff;
}
/*——————————————————————
サブタイトル
——————————————————————*/
h2{
  font-size: 7rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: #764219;
  text-align: center;
}

h2 span{
  font-size: 7rem;
}

.red{
  color: #E0220F;
}
.blown{
  color: #764219;
}
.blue{
  color: #00287F;
}
/*h2見出しストライプライン*/
.stripe_line {
	width: 100%;
	height: 14px;
  background: repeating-linear-gradient(-45deg, #5F4E31, #5F4E31 2px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 5px);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 1.6rem;
}

h3{
  font-size: 1.8rem;
}

h3 span{
  line-height: 3rem;
}

h4{
  font-size: 1.6rem;
}

/*——————————————————————
tableの基礎設定
——————————————————————*/

.tables_item td{
  font-size: 1.8rem;
  font-weight: 300;
  padding: 1.6rem;
}

.tables_item._01 td,.tables_item._02 td{
  border-bottom: solid #B7B7B7 1px;
}
/*表組の一番上に線 (複数下線をborder-bottomで指定している場合 border-topの場合はすべて逆指示+last-childに)*/
.tables_item._02 td:first-child{
  border-top: solid #B7B7B7 1px;
}

/*——————————————————————
メインBOX指定
——————————————————————*/

/*---------------------------
.fieldはセンター配置指示のみ
幅等の支持は._00〜を付与し指定すること
---------------------------*/
.field{
  width: 96rem;
  margin: 0 auto;
}
/*レシピスライダー用幅100%*/
.field._03{
  width: 100%;
}
/*レシピスライダー用幅と高さの設定*/
.entry._03 .pickup_page._01{
  height: 48.2rem;
  width: 128rem;
  margin: auto;
  margin-bottom: 18rem;
}
/*-------------------------------------------
.entry,.innerは.field._01等で指示した幅(高)に対し
色・写真等の配置、paddingの指定をする
-------------------------------------------*/

.entry._03{
  margin-top: 60rem;
}

/*個別セクションごとの装飾*/
/*みそのちから*/
.power_box{
  position: relative;
  padding: 0 0 5rem 5rem ;
}
.power_box._b{
  padding: 0 5rem 5rem 0;
}

/*みその力-L字に線を伸ばす*/
.power_box._a::after,
.power_box._b::before{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width: 0;
  height:1px;
  bottom: 0;
  left: 0;
  background:#1A1311;
/*アニメーションの指定*/
  transition: all 0.4s linear;
}
.power_box._a::after{
  transition-delay: .4s;
}

.power_box._a::before,
.power_box._b::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width: 1px;
  height:0;
  background:#1A1311;
/*アニメーションの指定*/
  transition: all 0.4s linear;
}
.power_box._a::before{
  left: 0;
  top: 0;
}

/*hoverした際の線の変化*/
.power_box._a:hover::after,
.power_box._b:hover::before{
  width: 100%;/*横幅を100%に*/
}

.power_box._a:hover::before,
.power_box._b:hover::after{
  height: 100%;/*縦幅を100%に*/
}

.power_box._a::before{
  right: 0;
  top: 0;
}
.power_box._a::after{
  left: 0;
  bottom: 0;
}
/*逆パターン*/
.power_box._b::before{
  left: 0;
  bottom: 0;
}

.power_box._b::after{
  right: 0;
  bottom: 0;
}

.power_box._b::after{
  transition-delay: .4s;
}


.inBox.power{
  margin: 0;
}
.power_box .pic{
  width: 100%;
  overflow: hidden;
}
.power_box .pic img{
  transform:scale(1.2);
  position: relative;
  right: 0;
  transition: all .8s ease;
}
.power_box:hover .pic img{
  right: -30px;
}

/*———————————————————————————————————————
fadeInアクションの一例
translateの()内で縦軸・横軸の
移動量を指示する(.is-showのclass付与)でJQ発動
.inBoxはjQ発動前の位置
————————————————————————————————————————*/

.fadeIn_up{
  opacity: 0;
  transform: translate(0, 20%);
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.inBox {
  margin: 50px 0;
}

/*———————————————————————————
詳細ボタン---BeProHPで使用した物
———————————————————————————*/

.btn_base{
  margin: 0 auto;
  text-align: center;
  width: 23rem;
  height: 6rem;
  background: #fff;
  border: 2px solid #5F4E31;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(5px 5px 5px rgba(26, 19, 17, 0.3));
  transition: .4s;
}

.btn_base a{
  font-size: 2.2rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: bold;
  color: #5F4E31;
  transition: .4s;
}

.btn_base:hover{
  filter: drop-shadow(5px 5px 5px rgba(26, 19, 17, 0));
  border: 2px solid #E0220F;
}

.btn_base:hover.btn_base a{
  color:#E0220F;
}

/*——————————————————————
scroll_down 設定の一例
——————————————————————*/
.scroll_down{
  position: absolute;
  bottom:4rem;
  }
  
  .scroll_down span {
    position: absolute;
    bottom:4.4rem;
    left: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    /*-webkit-animation: sdb 2s infinite;*/
    animation: sdb 2s infinite;
  }
  
  
  @keyframes sdb {
    0% {
      transform: rotate(-45deg) translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: rotate(-45deg) translate(-24px, 24px);
      opacity: 0;
    }
  }
  /*scroll_down一例 ここまで*/


/*——————————————————————
ナビメニュー
——————————————————————*/

.header_inner{
  width: 100%;
  z-index: 1;
  position: fixed;
  /*height: 100vh;*//*ここコメントアウトOK?確認*/
}
/*
.navArea{
  position: fixed;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  background:#fff;
  padding: 1rem 1.6rem;
  filter: drop-shadow(4px 4px 8px rgba(62,62,62,0.25));
}

.menu_container{
  position: relative;
  z-index: 1;
}*/

/*==================================
記述変更_0701
===================================*/

.global_menu{
  position: absolute;
  height: 100vh;
  display: flex;
  align-items: center;
  right: 5rem;
}

/*==================================
ここまで
===================================*/

.toggle_btn .hide{
  display: block;
}


.header_nav{  
  align-items: center;
}

.navArea,.header_nav{
  justify-content: space-between;
}

.header_nav li{
  width: 29rem;
  height: 6rem;
  text-align: center;
  border: 1px solid #fff;
  transform: translateX(12rem);
  transition: 0.4s ease-in-out;
}

.header_nav li a{
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 2rem;
  font-weight:500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transform: translateX(-3.6rem);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

/*==================================
GLメニュー下層の色変更
===================================*/

.header_nav._under li{
  border: 1px solid #1A1311;
  background: rgba(255,255,255,0.6);
  opacity: 0.58;
}

.header_nav._under li a{
  color: #1A1311;
}

.under .header_nav li a span{
  margin-right: 2rem;
}

.header_nav li a span{
  margin-right: 2rem;
}
/*========================
マウスオーバーで左へ飛び出す
飛び出し後の文字 枠のセンターに
==========================*/

.header_nav li:hover{
  transform: translateX(6rem);
  background: rgba(255,255,255,0.4);
}

.header_nav li a:hover{
  transform: translateX(0rem);
}

/*==================================
スクロールハンバーガー設定 追加記述ここから
===================================*/



/*———————————————————————————————————
global_menuにdoneクラスがついた場合の設定
————————————————————————————————————*/

.global_menu.dnone {
	opacity: 0;
}

.header_inner.open .global_menu.dnone{
	opacity: 1;
  top: 30rem;
}


/*————————————————————————————
マスクの設定
—————————————————————————————*/

.mask {
  display: none;
  position: fixed;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.open .mask {
  margin: 0 auto;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/common/bg_02_sp.png");
  z-index: -1;
  transition: all 0.3s ease-in-out;
  /*背景をクリックしても反応させない*/
  pointer-events: none;
}

/*==================================
記述変更_0701
===================================*/
/*————————————————————————————————
  navタブにopen classがついた時の設定
—————————————————————————————————*/

.header_inner.open{
  overflow-y: auto;
  height: 100%;
}

.header_inner.open .header_nav li a{
  color: #000;
  transform: translateX(0);
  transition: none;
}

.header_inner.open .header_nav li a:hover{
  opacity: .3;
  background: #FFF;
}

.header_inner.open .header_nav li{
  width: 100%;
  border: none;
  border-bottom: solid 1px;
  transform: unset;
  transition: none;
}
.header_inner.open .header_nav li:first-child{
  border-top: solid 1px;
}

.navArea.display_flex{
  align-items: initial;
}

.header_inner.open .global_menu{
  display: inline-block;
  width: 100%;
  right: 0;
}

.header_inner.open li a span{
  display: none;
}

/*==================================
ここまで
===================================*/


/*————————————————————————————
ハンバーガー トグル形状とアクション
—————————————————————————————*/


/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/


.toggle_btn{
  width: 64px;
  height: 64px;/*高さ必ず指定してタップ領域確保*/
  display: none;
  position: fixed;
  top: 8rem;
  right: 2%;
  transition: .3s;
  z-index: 9999;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #3E3E3E;
  transition: .4s;
  cursor: pointer;
  z-index: 9999;
}


.toggle_btn span:nth-child(1) {
  top: 30px;
  left: 12px;
}
.toggle_btn span:nth-child(2) {
  top: 42px;
  left: 12px;
}
.toggle_btn span:nth-child(3) {
  top: 18px;
  left: 12px;
}
.toggle_btn.open span {
  background-color: #3E3E3E;
}
.toggle_btn.open span:nth-child(3) {
  -webkit-transform: translateY(12px) rotate(30deg);
  transform: translateY(12px) rotate(30deg);
}
.toggle_btn.open span:nth-child(1) {
  opacity: 0;
}
.toggle_btn.open span:nth-child(2) {
  -webkit-transform: translateY(-12px) rotate(-30deg);
  transform: translateY(-12px) rotate(-30deg);
}


.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime{
from {
  opacity: 0;
transform: translateY(-100px);
}

to {
  opacity: 1;
transform: translateY(0);
}
}

/*==================================
ここまで
===================================*/


/*メインビジュアル以降はハンバーガー*//*
.global_menu.hide{
  display: none;
}
/*メインビジュアル以降のハンバーガー設定*/
/*
.toggle_btn.hide {
  width: 64px;
  height: 64px;/*高さ必ず指定してタップ領域確保*//*
  display: block;
  position: fixed;
  top: 8.5rem;
  right: 3rem;
  transition: .3s;
  z-index: 9999;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  /*background: rgba(255,255,255,0.6);
  border-radius: 50%;*//*
}

.toggle_btn.hide span {
  display: block;
  position: absolute;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: #fff;
  transition: .4s;
  cursor: pointer;
  z-index: 9999;
}

.toggle_btn.hide span:nth-child(1) {
  top: 30px;
  left: 14px;
}
.toggle_btn.hide span:nth-child(2) {
  top: 42px;
  left: 14px;
}
.toggle_btn.hide span:nth-child(3) {
  top: 18px;
  left: 14px;
}
.toggle_btn.hide.open span {
  background-color: #3E3E3E;
}
.toggle_btn.hide.open span:nth-child(3) {
  -webkit-transform: translateY(12px) rotate(30deg);
  transform: translateY(12px) rotate(30deg);
}
.toggle_btn.hide.open span:nth-child(1) {
  opacity: 0;
}
.toggle_btn.hide.open span:nth-child(2) {
  -webkit-transform: translateY(-12px) rotate(-30deg);
  transform: translateY(-12px) rotate(-30deg);
}
*/
/*ファーストビューの高さを越えた時の色（トップページ）*//*
.toggle_btn.invert span {
  background: #1A1311; /* スクロール後の色 *//*
}

/*========================
GLメニューマウスオーバーで色変化
==========================*//*
.header_nav li:hover{
  transform: translateX(0);
  background: rgba(255,255,255,0.4);
}*/

/*———————————————————————————
画面いっぱいfirst-view 設定の一例
———————————————————————————*/
.fs-logo {
  width: 100%;
  background: #FFF;
  padding: 1rem;
  justify-content: center;
}
/*
.fs-logo img{
  width: 100%;
}
*/
#first-view_bg{
  position: relative;
  width: 100%;
  height: 100vh;
}

#first-view_bg_02{
  background-image: url("../img/kodawari/header_img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 26rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*——————————————————————
メインビジュアル
——————————————————————*/

.top_pic._01{
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/top/bg-top.jpg");
  animation: top_pic 30s linear infinite;
  z-index: -1;
}

@keyframes top_pic{
  0% { background-position: left center;}
 50% { background-position: right center;}
100% { background-position: left center;}
}

/*——————————————————————
各コンテンツエリア
——————————————————————*/

/*みそのちから------------*/
.power .inBox{
  margin: 0;
}
.power .display_flex-s{
  justify-content: center;
}
.content_box{
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  margin-right: 3.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
._b .content_box{
  margin-left: 3.2rem;
  margin-right: 0;
}
  
.power h3{
  font-size: 3.2rem;
  line-height: 6rem;
  color:#1A1311;
}


.content_box p{
  font-size: 2rem;
  line-height: 6rem;
  margin-top: auto;
}

/*商品紹介------------*/

.field.introduce{
  width: 100%;
}
.text_box{
  width: 100%;
}

.name,.text_btn{
  color: #5F4E31;
  font-size:1.6rem;
  text-align: center;
  width: 100%;
}
.name{
font-family: 'Zen Kaku Gothic New', sans-serif;
line-height: 2.4rem;
font-weight: 500;
}
.text_btn a{
 font-family: serif;
 color: #5F4E31;
 margin: 1.3rem 0;
 transition: .4s;
 display: inline-block;
 position: relative;
}
.text_btn a:hover{
  color:#E0220F;
}
.text_btn a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #5F4E31;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: transform .4s;
}
.text_btn a:hover::after {
  transform: scale(0, 0);
  transform-origin: left top
}

/*商品紹介サブ（業務・ギフト用）------------*//*
.ex_item{
  width: 56rem;
}
.field.ex_item.display_flex{
 justify-content: space-between;
}
.business_item,.gift_item{
  width: 23rem;
  height: 30rem;
  background: #fff;
  padding: 1.2rem 0;
  text-align: center;
  border: 3px solid #5D4E31;
  border-radius: 1rem;
}
.business_item.display_flex,.gift_item.display_flex{
  flex-wrap: wrap;
  justify-content: center;
}
.business_item a h4,.gift_item a h4{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 0.rem;
}*/

/*商品紹介サブ（業務・ギフト用）------------*/
.just-cent{
  justify-content: center;
 }
 
 .paddi{
   padding: 0 2rem;
 }
 
 .items{
   background: #fff;
   padding: 2rem 1rem;
   text-align: center;
   border: 3px solid #5D4E31;
   border-radius: 1rem;
   filter: drop-shadow(3px 3px 3px rgba(26, 19, 17, 0.3));
   transition: all .3s ease;
 }
 .paddi:hover .items{
  filter: drop-shadow(3px 3px 3px rgba(26, 19, 17, 0));
}
 .display_flex-s.display_flex{
   justify-content: center;
 }
 .items h4{
   font-family: 'Zen Kaku Gothic New', sans-serif;
   font-weight: 600;
   font-size: 2.2rem;
   margin-bottom: 0.rem;
 }

/*美味しいレシピ------------*/
.pickup_page._01{
  height: 35.2rem;
}


/*——————————————————————
————————————————————————
swiper-sliderエリア
————————————————————————
——————————————————————*/

.swiper-button-wrap_01{
  width: 30rem;
  height: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
}

.swiper-slide._01{
  height: 284px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /*アイテムを下揃えするには以下の一文を入れる*/
  /*transform-origin: bottom;*/
}

.swiper-slide._01.swiper-slide-active img{
  opacity: 1;
}

.swiper-slide._01 img {
  object-fit: cover;
}

.slider1 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

/*-------------スライダー1 オートで流れる記述------------*/

/*スライドの動きをスムーズにする*/
.slider1 .swiper-wrapper{
  transition-timing-function: linear;
}

/*--------------------スライダー2--------------------*/

.slider2 ul li:nth-child(odd){/*奇数のみずらす*/
  /*margin-top: 10rem;*/
}

.slider2 .swiper-slide-active{
  transform: translateY(5rem);
}

.swiper-button-next:after{
  content: '';
}
.swiper-button-prev:after{
  content: '';
}

/*——————————————————————
- Swiperエリア
——————————————————————*/

.swiper{
  width: 100%;
  height: 100%;
}

.swiper-wrapper{
  position: absolute;
}

.swiper-slide{
  transition: transform .7s ease,-webkit-transform .7s ease;
  will-change: transform; /*アニメーションを滑らかに https://blog.leap-in.com/use-will-change-to-make-animation-smooth/*/
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position:center center;
}

/*——————————————————————————————————————————————————
swiper --- スクロールボタン + ドットナビ  カウントアップ限定
——————————————————————————————————————————————————*/

.pickup_page._02 .swiper-pagination-bullet{
  background-color: #1E2C5B;
  margin-bottom: 2rem;
}

.pickup_page._02 .swiper-button-wrap_02{
  width: 100rem;
  height: 32px;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  top: 50%;
}

.swiper-button-wrap_02{
  width: 338px;
  height: 32px;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}


/*——————————————————————————————————
swiper --- スクロールボタン + ドットナビ
——————————————————————————————————*/

/*---------------既存のprev nextのカスタマイズ-------------*/
/*--------contentの中身を空にしてhtmlで置き換える場合--------*/
.swiper-button-next:after{
  content: '';
}
.swiper-button-prev:after{
  content: '';
}

.swiper-button-next img, .swiper-button-prev img{
  width: 16px;
  height: 24px;
  display: inline-block;
}

/*--------デフォルトのドットナビの設定変更--------*/
.slider1 .swiper-pagination-bullets.swiper-pagination-horizontal{
  position: absolute;
  z-index: 13;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  width: 25rem;
}
.slider2 .swiper-pagination-bullets.swiper-pagination-horizontal{
  position: absolute;
  z-index: 13;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  width: 20rem;
}
.pickup_page._02.swiper-pagination-bullets.swiper-pagination-horizontal{
  width: 240px;
  position: absolute;
  z-index: 12;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 16px;
}
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,12px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,12px));
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color,var(--swiper-theme-color,#1C96E7));
}

.swiper-pagination-current,.swiper-pagination-total{
  display: block;
  margin: 0;
}

.swiper-pagination-bullet {
  background-color: #5F4E31;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #E0220F;
}


/*——————————————————————
————————————————————————
tab項目エリア
————————————————————————
——————————————————————*/
.entry._01._a{
  position: relative;
}

/*タイトルタブ(タブ項目)設定*/
.tab_container{
  justify-content: center;
  align-items: center;
  display: flex;
}
.tab_area{
  justify-content: space-between;
  width:77.8rem;
  /*タブボタンと広告エリアを離したい場合は タブボタン指示htmlの下にスペースdiv*/
}

.tab_area li{
  text-align: center;
  transition: .4s;
}
.tab_area li + li{
  border-left: 1px solid #A6A7A7;
  padding: 0 3.6rem;
}
.tab_area li a{
  display: block;
  color: #A6A7A7;
  font-size: 1.8rem;
  font-family: serif;
}
.tab_area li a span{
  color: #A6A7A7;
}
.tab_area li a .large{
  font-size: 2.4rem;
}
.tab_arrow{
  font-size: 3.6rem;
  display: block;
  transform: rotate(90deg);
  margin-top: 10px;
}
/*各タブ項目の色等を同じにしたい場合は以下のバックグラウンドカラー指定のみでOK*/
/*
.tab_area li.active{
  background: #3E3E3E;
}
*/

.tab_area li.active a,
.tab_area li.active a span{
  color: #764219;
}
.tab_area li.active a .red{
  color: #E0220F;
}
/*ここまで*/

/*——————————————————————
tab項目 タブ台紙の設定
——————————————————————*/

/*エリアの表示非表示と形状*/
.area{
	display: none;/*はじめは非表示*/
  opacity: 0;
}

/*areaにis-activeというクラスがついた時の形状*/
/*各タブ台紙の色等を統一したい場合は以下にバックグラウンドカラー指定のみでOK*/
.area.is-active {
  display: block;/*表示*/
  animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*各タブ台紙の色等を変えたい場合は各クラス名を使って指定*//*
.area.tabarea-back-a.is-active{
  padding: 1rem;
}

.area.tabarea-back-b.is-active{
  background: #5D5D5D;
  padding: 1rem;
}*/
/*ここまで*/

/*——————————————————————
tab項目 tableの設定
——————————————————————*/

.tables_item._01 tr{
  width: 100%;
}
/*下2行を消すと天地左右中央設定解除*/
.tables_item._01 .item_left{
  width: 30%;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.tables_item._01 .item_right{
  table-layout: fixed;
  line-height: 150%;
}

.tables_item._02 .item_center{
  width: 84rem;
  text-align: center;
}

/*——————————————————————
tab項目 audio_button設定
——————————————————————*/

.audio_button{
  justify-content: center;
  align-items: center;
}

#radio-btn-a,#radio-btn-b{
  width: 3rem;
  height: 3rem;
  border: 1px solid #3E3E3E;
  border-radius: 50%;
  padding: 0 0 5px 0;
  margin-left: 0.4rem;
}

#radio-btn-a::before,#radio-btn-b::before{
  content: "▶︎";
  background: #fff;
  font-size: 1.3rem;
  /*padding: 0.1rem 0;*/
}
#radio-btn-a.open::before,#radio-btn-b.open::before{
  font-size: 1.6rem;
  content: "=";
}


.radio_button{
  justify-content: center;
  align-items: center;
}

.radio_button p{
  margin-top: 0;
}

/*——————————————————————
Sorter --静的環境用--
——————————————————————*/
.display_flex.sorter{
  position: relative;
}

.display_flex.group-item{
  justify-content: space-between;
  flex-wrap: wrap;
}

/**/
.display_flex.group-item::after{
  display: block;
  content: '';
  width: calc((100% - 11rem) / 3);
}

.under-line{
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color:#3E3E3E;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.under-line-nav{
  width: 8rem;
}

.sorter li{
  width: 8rem;
  text-align: center;
  padding-bottom: 1rem;
}

.sorter li a{
  font-size: 1.6rem;
}

.calc._02{
  width: calc((100% - 11rem) / 3);
}

.pict_box span{
  position: fixed;
  padding: 0.5rem 1rem;
  background: #fff;
  border: solid 1px #3E3E3E;
}



/*------ページネーションデザイン------*//*
.pagination{
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}


.pagination li{
  margin: 5px;
  border: 1px solid #3E3E3E;
}

.pagination a{
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  color: #3E3E3E;
  padding: 1rem;
}

.pagination a:hover{
  background-color: #3E3E3E;
  color: aliceblue;
}

.active{
  background-color: #A2E3DC;
}

*/
/*——————————————————————
tab項目 modal設定
——————————————————————*/

/*----------
buttonエリア
-----------*/

.display_flex.modals{
  justify-content: space-between;
  flex-wrap: wrap;
}

.calc._03{
  width: calc((100% - 4rem) / 4);
}

/*-----------------------------------
4カラムで2個空きの場合以下のbeforeが必要
5カラム以上だとhtmlに空箱設置が必要
------------------------------------*/
.modals::before{
  display: block;
  content: '';
  width: calc((100% - 4rem) / 4);
  order: 1;
}
/*3カラムの場合は以下のみでよい*/
.modals::after{
  display: block;
  content: '';
  width: calc((100% - 4rem) / 4);
}


.openModal{
  text-align: center;
}

.openModal._a{
  background: #E4E4E4;
  padding: 1rem;;
}

.openModal p,.modal_moji{
  font-size: 1.3rem;;
}

.modal_ti._a{
  font-size: 1.6rem;
}

/*-----------
articleエリア
------------*/
.modal_ti._b{
  font-size: 2rem;
  padding: 2rem 0;
}

.modal_moji{
  line-height: 2.2rem;
}

.closeModal{
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.closeModal p{
  font-size: 1.4rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}


.modalCloss01,.modalCloss02{
  display: inline-block;
  position: absolute;
  top: 14px;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #3E3E3E;
}

.modalCloss01{
  transform: rotate(30deg);
}
.modalCloss02{
  transform: rotate(-30deg);
}


/*--------------------------------
4カラムで2列目以上の場合の天地の隙間設定
---------------------------------*/
.openModal:nth-of-type(n+5){
  margin-top:1.6rem;
}

.modal-plus{
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  margin-bottom: 5px;
  margin-left: 5px;
}

.modal-plus::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: all .3s ease;
}

.modalArea_01{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_Bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modal_Wrapper{
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 60%;
  max-width: 50rem;
  height: 62rem;
  padding: 5rem 3rem;
  background-color: #fff;
}


/*—————————————————————————
tab項目 ブログ サイト内検索設定
——————————————————————————*/

.leads{
  text-align: center;
  font-family: sans-serif;
  font-size: 1.6rem;
  border: solid #E2E2E2 1px;
  padding: 0.5rem 1rem;
}

.blogs{
  position: relative;
}

.blog_width{
  width: 64%;
  justify-content: space-between;
  align-items: self-start;
  flex-wrap: wrap;
}

.blog_calc{
  width: calc((100% - 4rem) / 2);
  height: auto;
  border: solid #3E3E3E 1px;
}

.blog_calc img{
  width: 100%;
}

.blog_box{
  padding: 2rem;
}

.blog_box::before{
  opacity: 0;
  z-index: -999;
  position: absolute;
  content:"";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg,rgba(0,147,233,0.3),rgba(128,208,199,0.3));
  transition: .4s;
}

.pict_box{
  overflow: hidden;
}

.pict_box._01 span{
  border: none;
  z-index: 999;
}

.pict_box img{
  object-fit: cover;
  transition: .4s;
}

.blog_calc:hover .pict_box img{
  transform: scale(1.2,1.2);
}

.blog_calc:hover .blog_box::before{
  opacity: 1;
}


.info_texts{
  font-size: 1.3rem;
  /*width: 25rem;*/
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*以下は制限する行数*/
  -webkit-line-clamp: 2;
}

.pick_up{
  margin-bottom: 3rem;
  filter: drop-shadow(4px 4px 8px rgba(62,62,62,0.25));
  transition: .4s;
}

.pick_up:hover{
  filter: drop-shadow(4px 4px 8px rgba(62,62,62,0.0));
}


.banner._01{
  position: absolute;
  top: 4rem;
  right: 0;
}

.s_box{
  width: 24rem;
  height: 4rem;
  padding: 0 0 0 3.6rem;
  left: 2rem;
  top: 0;
  outline: 0;
  border: solid #E2E2E2 2px;
  font-size: 1.6rem;
}

.s_btn{
  position: absolute;
  height: 4rem;
  left: 1rem;
  color: #E2E2E2;
  font-size: 20px;
}


/*——————————————————————
DisplayFlexベーシック
——————————————————————*/

.calc._01{
  justify-content: space-between;
  flex-wrap: wrap;
}

.calc._01 li{
  width: calc((100% - 13rem) / 3);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 4rem;;
}

.calc._01::after{
  display: block;
  content: '';
  width: calc((100% - 13rem) / 3);
}
.displayFlex_p{
  font-size: 1.2rem;
  line-height: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*以下は制限する行数*/
  -webkit-line-clamp: 3;
}


/*——————————————————————————————————
INFORMATIONベーシック
——————————————————————————————————*/


.info-item{
  text-align: center;
  font-size: 1.6rem;
  border-top: solid #1A1311 1px;
  transition: .4s;
  padding: 3rem 2rem;
}

.info-item-inner{
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}

.info-item:last-child{
  border-bottom: solid #1A1311 1px;
}

.date{
  color: #474645;
  font-size: 2rem;
  font-family: "Noto Sans JP";
}

.info-item span img{
  border: solid #707070 1px;
  display: block;
}

.info-item .item_inner{
  flex-wrap: wrap;
  margin-left: 2.6rem;
}

.item_inner,.cat_date{
  width: 100%;
  justify-content: space-between;
}

.info_etc{
  width: 16rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  border: 1px solid #5F4E31;
  font-size: 2.2rem;
  font-family: Zen Kaku Gothic New;
  font-weight: 500;
  color:#5F4E31;
}

.info_texts{
  width: 62rem;
  font-size: 2rem;
  color: #1A1311;
  line-height: 2.8rem;
  text-align: initial;
  font-family: Zen Kaku Gothic New;
  font-weight: 400;
  margin-top: 0.8rem;
}

.btn_base a:hover .arrow01{
  left: 16px;
}
.info-item:hover{
  background: rgba(112,97,65,0.1);
}
.info-item:hover .info-item button span img{
  transform: scale(1.1);
}

/*——————————————————————————————————
footerベーシック
——————————————————————————————————*/


.f_field{
  width: 100%;
  background: #D4D5D5;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
}

.display_flex._foot{
  width: 88rem;
  padding: 6rem 0;
}

.f_tel{
  margin: auto;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 50px;
}
.f_tel p{
  margin: 0;
  width: 100%;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
.tel{
  height: 104px;
  border: 1px solid #fff;
  padding: 0 40px;
  font-weight: 500;
  font-size: 2.4em;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 16px;
}

.tel a{
  display: inline-block;
  font-weight: 900;
  font-size: 2.6em;
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: -12px;
  margin-left: 0.2em;
}
.fa-phone{
  font-size: 1.8em;
  transform: rotate(10deg);
}

.f_nav{
  margin: auto;
  width: 976px;
  position: relative;
}
.footer_nav:nth-of-type(4){
  padding-right: 140px;
}

.f_nav_inner{
  line-height: 2;
  margin-bottom: 20px;
}
.f_nav_head{
  font-size: 2rem;
}
.f_nav_inner li a{
  font-size: 1.6rem;
  color: #1A1311;
  transition: .4s;
  position: relative;
}
.f_nav_inner li a span{
  margin-left: 1.6rem;
  display: inline-block;
  position: absolute;
  right: -2rem;
  transition: .4s ease-in-out;
}
.f-logo img{
  mix-blend-mode: multiply;
}
.f_nav_inner li a:hover{
  opacity: .4;
}
.f_nav_inner li:hover a span{
  right: -3rem;
}
.f_info_wrap{
  padding:3.5rem 0 5rem;
}

/*——————————————————————————————————
page_topアイコン指示
——————————————————————————————————*/

.page_top{
  position: fixed;
  font-size: 1.6rem;
  color: #000;
  writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
  bottom: 30rem;
  right: 1.4rem;
  z-index: 2;
  opacity: 1;
  cursor: pointer;

  /*filter: drop-shadow(0 0 6px rgba(80,80,80,0.9));
  transform: translateY(100px);*/
}


/*-----------矢印指定------------*/
.page_top.pc-only span::before{
  content: '';
    position: absolute;
    top: -14rem;
    bottom: 0;
    right: 1rem;
    margin: auto;
    width: 0.1rem;
    height: 4.8rem;
    background: #3E3E3E;
    transition: .4s;
}

.page_top.pc-only span::after{
  content: '';
    position: absolute;
    top: -5.6rem;
    right: 0.7rem;
    width: 1.2rem;
    height: 1px;
    transform: rotate(-65deg);
    background: #3E3E3E;
    transition: .4s;
}


/*-----------jQのclass付与指示------------*/
.change{
  color: #fff;
  background: #fff;;
}

.page_top.change{
  background: none;
}

.page_top.pc-only.change span::before,
.page_top.pc-only.change span::after {
  background: #fff;
}

/*——————————————————————————————————
footer_corporation
——————————————————————————————————*/


.f_info_wrap{
  margin: 0 auto;
}

.f_info{
  font-size: 1.8rem;
  line-height: 2.8rem;
  justify-content: center;
}

.corporation{
  font-size: 4rem;
}

.f_info a,.f_bottom_inner a{
  color: #fff;
}

.fax{
  display: inline-block;
  margin-left: 4rem;
}

.f_bottom{
  position: relative;
  height: auto;
}

.f_bottom_inner{
  width: 97.6rem;
  margin: 0 auto;
  font-size: 1.3rem;
}

.privacypolicy{
  justify-content: space-between;
}

.privacypolicy li, .copyright{
  font-size: 1.6rem;
  font-weight: 300;
  color:#1A1311;
}
.privacypolicy li:not(:last-child){
  margin-right: 2rem;
}
.privacypolicy li a{
  color:#1A1311;
  transition: .4s;
  position: relative;
}
.privacypolicy li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #1A1311;
  bottom: -4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  }
  
  .privacypolicy li a:hover::after {
  visibility: visible;
  bottom: -2px;
  opacity: 1;
  }
.copyright{
  text-align: center;
  margin-top: 2.4rem;
}

/*——————————————————————
----------------------
下層ページ 
----------------------
——————————————————————*/
/*共通-----------------*/

.under .header_nav li{
  border: 1px solid #1A1311;
  background: #fff;
}

.under .header_nav li a{
  color: #1A1311;
}

/*——————————————————————
---素材へのこだわり
——————————————————————*/
/*赤味噌の代表仙台みそ*/
.h1_title._02 h1{
  writing-mode: initial;
  margin-top: 4rem;
}
.kodawari h2{
  font-size: 4rem;
  line-height: 7rem;
  color: #1A1311;
  font-weight: 400;
}
.kodawari h2 span{
  font-size: 4rem;
  font-weight: bold;
}
.text_box{
  width: 31rem;
  height: 72rem;
}
.kodawari h3{
  margin: auto;
  font-size: 4rem;
  line-height: 7rem;
  font-family: serif;
  writing-mode: vertical-rl;
}
.text_box p{
  width: 100%;
  height: 43.5rem;
  font-size: 1.6rem;
  font-family: serif;
  line-height: 3.2rem;
  writing-mode: vertical-rl;
}
.image_box.display_flex{
  align-items: flex-end;
}
.image_box img{
  margin-left: 2.4rem;
}
.b_box .image_box img{
  margin-left: 0;
  margin-right: 2.4rem;
}
/*わさび沢工場*/
#tab_area_02 .text_box p{
  height: 42.5rem;
}
.trivia{
  padding: 0 16rem;
}
.trivia h4{
  font-size: 4rem;
  text-align: center;
  font-family: serif;
}
.trivia .question{
  font-size: 2.4rem;
  font-family: serif;
}
.trivia .question dt,
.trivia .question p
{
  color: #1A1311;
}
.trivia dd{
  display: flex;
  font-weight: lighter;
  line-height: 3.2rem;
}
/*みそ製造工程*/
.flow_hover{
  width:100% ;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flow_hover h4,.hover_mask .caption{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.flow_hover h4{
  width: 4.5rem;
  background: #5F4E31;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-family: serif;
}
.flow_hover .item_box{
  width: 28.5rem;
  position: relative;
  margin-bottom: 20rem;
  overflow: hidden;
}
.flow_hover::after{
  display: block;
  content: '';
  width: 28.5rem;
}
.hover_mask{
  opacity: 0;
  width: 12.4rem;
  height: 26.5rem;
  position: absolute;
  padding: 8.4rem 0 1rem 0;
  z-index: 2;
  justify-content: flex-end;
  right: -12.4rem;
  line-height: 2.4rem;
  background: linear-gradient(90deg, rgba(51,51,51,0) 0%, rgba(51,51,51,1) 100%);
  transition: .4s;
  mix-blend-mode: multiply;
}
.flow_hover .image_box img{
  margin-left: 0;
}
.caption{
  font-size: 1.2rem;
  color: #fff;
  margin-right: 2rem;
  mix-blend-mode:none;
  letter-spacing: 0.3rem;
  font-family: serif;
  font-weight:500;
  text-align: left;
}
.item_box :hover .hover_mask{
  opacity: 1;
  right: 0;
  transition: .4s;
  mix-blend-mode: normal;
}
/*——————————————————————
display: none
——————————————————————*/

.abc_icon._02,.form3,.leads._02,.sp-only,.sp-only_01,.sp-only_02{
  display: none;
}
