/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　共通
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pc_only{
	display: none!important;
}

body{
	overflow-x: hidden;
	font-family: fot-udkakugo-small-pr6n, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #333;
}

#main_wapper{
	margin: 0 auto;
	width: 1140px;
}

section{
    width: 100%;
    background: #ffffff;
	margin: 0 auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　ナビゲーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.spheder_flex{
    display: flex;
    z-index: 9999999;
    position: fixed;
}

.spheder_logo{
    width: 50px;
    position: fixed;
}


.spheder_logo img{
width: 50px;
}

/*　ハンバーガーメニューボタン　*/

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
  top: 0;
  width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
  z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
	background-color: rgba(105,105,105,0.85);
    /*丸のスタート位置と形状*/
  transform: scale(0);/*scaleをはじめは0に*/
  top:-50px;
    left:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
	right: 0;
    width: 50px;
    height:50px;
    background-color: rgba(255,255,255,0.8);
}
  
.openbtn1.active{
    background-color: rgba(255,255,255,0.0);
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 0px;
  background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background: #fff;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background: #fff;
}






/*途中でナビ*/


.fixed {
    position: fixed;
    Z-INDEX:999999;
    top: 0;
    margin: 0 auto;
    width: 100%;
}
.fixed .g-nav-menu li{
line-height: 40px;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　メインスライダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.slide_wapper-sp img{
    width: 100%;
}
.slide_wapper-pc{
	display: none;
}
.slide{
    /*border: 5px solid #ffffff;*/
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    /*clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 70%);*/
}
.one{
    background-image: url(https://hfbelx.com/company/images/sp-top_02.jpg);
}
.two{
    background-image: url(https://hfbelx.com/company/images/sp-top_03.jpg);
}
.three{
    background-image: url(https://hfbelx.com/company/images/sp-top_04.jpg);
}
.four{
    background-image: url(https://hfbelx.com/company/images/sp-top_05.jpg);
}
.five{
    background-image: url(https://hfbelx.com/company/images/sp-top_01.jpg);
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　H&F BELX概要
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.whatHFBELX{
	margin: 50px auto;
width: 80%}


.whatHFBELX img{    width: 100%;
    margin: 30px auto 15px auto;
}

.whatHFBELX p{
	font-size: 12px;
	text-align: left;
}

/*＝＝＝ボタンの色変え＝＝＝*/

.btntextchange{
    /*テキストの基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/
  border: 1px solid #555;
    min-width:210px;
  padding: 20px;
    text-align: center;
  display: inline-block;
    text-decoration: none;
    color: #333;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s;
	text-align: center;
	width: 100%;
	background-color: #fff;
	
}

/*hoverした際の変化*/
.btntextchange:hover{
  background:#000;
  color:#fff;
}

.btntextchange span{
    /*絶対配置でテキストの位置を決める*/
  position: absolute;
  left: 50%;
  top:50%;
    transform:translate(-50%,-50%);
    /*アニメーションの指定*/
    transition: all .5s;
  /*ブロック要素にしてテキスト折り返しなし*/  
  display: block;
  white-space: nowrap;
}

/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2){
  opacity:0;/*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1){
  opacity:0;/*透過0に*/
}

.btntextchange:hover span:nth-child(2){
  opacity:1;/*不透明に*/
}

.about_btn{
    width: 100%;
		margin:60px auto 20px auto;
}

.onlineshop_btn{
    width: 100%;
		margin:20px auto 60px auto;
}


.common_btn{
    width: 80%;
		margin:60px auto 20px auto;
}


/*==================================================
アイテムスライダーのためのcss
===================================*/
.movie{
    width: 100%;
    background: #ffffff;
    margin: 0 auto 100px auto;
}
.toroku{
    margin: 10px auto;
    text-align: center;
}

.regular_3 ,.regular_4 a{
    text-decoration: none;
    font-size: 10px!important;
	color: #333;
}


.ev-title{
    font-size: 10px!important;
	color: #333;
}

/*共通4ツスリック*/

.sliderArea {
    max-width: 100%;
    margin: 20px auto 100px auto;
    padding: 0 25px;
}

.sliderArea.w300 {
  max-width: 300px;
}

.sliderArea a{
	text-decoration: none;
	color: #333;
}

.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size:14px;
    line-height: 1;
    opacity: .75;
    color: #666 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}







/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　オートスライダーimg
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.row{
    display: -ms-grid;
    -ms-grid-columns: min-content;
	overflow-x: hidden;
	margin-top: 100px;
}

.autoplay-slider {
  display: flex;
  min-width: 100%;
  width: min-content;
  animation: 100s linear infinite sliderAnimation;
}

.autoplay-slide_img img{
  width: 200px;
  /*margin: 20px;*/
  position: relative;
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}



/*雑誌*/


.book_Base {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    top: 150px;
}


.book_Base ul{
    width: 70%;
    margin: 0 auto;
}

.book_Child1 {
    position: absolute;
    top: 00%;
    left: 00%;
    z-index : 10;
    transform: rotate(335deg);
}
.book_Child2 {
    position: absolute;
    top: 00%;
    left: 5%;
    z-index : 30;
}
.book_Child3 {
    position: absolute;
    top: 00%;
    left: 10%;
    z-index : 20;
    transform: rotate(15deg);
}

.media_title{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 5px 0;
    font-size: 36px;
	color: #000;
}

.media_cmt{
	margin-right: 0;
    width: 100%;
	color: #000000;
}
.mediaTxt {
    color: #000;
    text-align: left;
    font-size: 12px;
    padding: 20px 0;
    width: 90%;
    margin: 350px auto 0 auto;
}
.mediaTxt2 {
    color: #000;
    text-align: left;
    font-size: 12px;
    padding: 20px 10px;
    width: 100%;
    margin: 380px auto 20px auto;
}

.media{
    width: 80%;
    margin: 100px auto;
    position: relative;
}
.media_h3 {
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
.franchise{
	margin-top: 50px!important;
}

.youtube-marine {
	margin: 40px 5px;
	position: relative;
	width: 95%;
	padding-top: 56.25%;
}
.youtube-marine iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 95% !important;
	height: 95% !important;
}
/*順番にふわっと*/
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.fadebox{
	opacity: 0;
	list-style: none;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

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



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　実店舗リスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.store_title{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 5px 0;
    font-size: 36px;
	color: #fff;
}

.bg-shop {
	
    background: url(https://image.rakuten.co.jp/hftea/cabinet/shop/atore-ebisu/ebisu-d.jpg);
    background-size: 100%;
    width: 100%;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    
}


.bg-shop-rgbd {
	background-color: rgba(46, 46, 46, 0.7);
    padding:50px;
}

.shoplist{
    width: 70% !important;
    background-color: #fff;
    margin: 10px auto;
}

.shoplist td{
    border: solid 1px #333;
    padding: 10px;
    text-align: center;
}

.shopTxt {
    color: #fff;
    text-align: left;
    font-size: 12px;
    /*padding: 1em 0 0 3em;*/
    width: 100%;
    margin: 0 auto;
}
.store_cmt{
	margin-right: 0;
    width: 100%;
}

.shop_box{
    /*display: flex;*/
    width: 100%;
    margin: 0 auto 30px auto;
}

.shop_box img{
    width: 100%;
}


.shop_h3 {
    text-align: center;
    font-size: 14px;
    color: #fff;
    /*padding: 0 0 0 1em;*/
	margin-bottom: 18px;
    font-weight: bold;
}
.shop_list_inner {
    width: 600;
    margin: 0 auto;
}
.shop_list_inner .address {
    width: 33%;
    color: #666666;
    margin: 20px 0 50px 0;
    display: block;
    float: left;
    text-align: center!important;
}
.name {
    font-size: 18px;
}
/*
.name::after{
    content: "";
    width: 168px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%,0);
}*/
.add {
    font-size: 12px;
}

.shoplist td a{
	text-decoration: none;
}



.online{
	width: 100%;
	margin: 0 auto;
    background-color: #eee;
    background-size: 100%;
    width: 100%;
    background-size: cover;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
	padding-bottom: 100px;
}


.common_title{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0 20px 0;
    font-size: 36px;
}

.common_h3 {
    text-align: center;
    font-size: 14px;
    padding: 0 0 0 1em;
    font-weight: bold;
	margin: 20px auto;
}
.online_title{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0 20px 0;
    font-size: 36px;
}

.online ul{
	width: 80%;
	margin: 0 auto;
}
.online ul li{
    display: inline-block;
    vertical-align: top;
    margin: 20px 5px 0 5px;
	width: 100%;
}

.online ul li a {
    text-decoration: none;
    padding: 10px 20px;
    background: #fff;
    width: 100%;
    display: block;
    cursor: pointer;
}

.online ul li .online-icon {
    display: inline-block;
    vertical-align: middle;
}

.online ul li .online-icon img{
    display: inline-block;
    vertical-align: middle;
}


.online ul li .online-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 11px;
    text-align: left;
    text-decoration: none;
    max-width: 168px;
    color: #000;
}


.online ul li .online-text span{
    font-size: 12px;
	font-weight: 600;
}

/*ホバーで枠線*/
.button_line01 a{
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
	text-decoration: none;
}
.button_line01 a .top{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: transform 100ms;
	width: 100%;
	background: #000;
	transform: scale(0, 0);
	height: 1px;
	transform-origin: left top;
	transition-delay: 0ms;
}
.button_line01 a .right{
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transition: transform 100ms;
	content: "";
	width: 1px;
	background: #000;
	transform: scale(0, 0);
	height: 100%;
	transform-origin: right top;
	transition-delay: 50ms;
	display: block;
}
.button_line01 a .bottom{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	transition: transform 100ms;
	content: "";
	width: 100%;
	background: #000;
	transform: scale(0, 0);
	height: 1px;
	transform-origin: right bottom;
	transition-delay: 100ms;
	display: block;
}
.button_line01 a .left{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: transform 100ms;
	content: "";
	width: 1px;
	background: #000;
	transform: scale(0, 0);
	height: 100%;
	transform-origin: left bottom;
	transition-delay: 150ms;
	display: block;
}
.button_line01 a::after{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -2;
	content: "";
	background: #fff;
}
/* hover */
.button_line01 a:hover .top{
	transform-origin: left top;
	transform: scale(1, 1);
	content: "";
}
.button_line01 a:hover .right{
	transform-origin: left top;
	transform: scale(1, 1);
}
.button_line01 a:hover .bottom{
	transform-origin: right bottom;
	transform: scale(1, 1);
}
.button_line01 a:hover .left{
	transform-origin: left bottom;
	transform: scale(1, 1);
}

.timeline{
	margin: 20px 5px 20px 35px;
}
.timeline-content{
	margin-bottom: 25px;
}
.timeline-content h3{
	color: #d3b572;
	font-size: 105%;
}
.timeline-date{
	font-size: 90%;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#footer {
  position: relative;
  color: #fff;
	width: 80%;
    background-color: #333;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px;
  background: #333;
    display: flex;
	margin: 0 auto;
}
	
	
#footer .primary p{
  font-size: 9px;
	line-height: 24px;
    text-align: center;
}
	
#footer .secondary {
  display: flex;
	width: 100%;
  background: #000;
}

#footer .annai{
	
    font-size: 10px;
    text-decoration: none;
    font-weight: 100;
    text-align: center;
    margin: 10px auto;
    border: solid 0.5px #fff;
    width: 100%;
    display: block;
}

/* footer-logo */

#footer .logo {
    position: relative;
    padding: 0;
    margin: 0;
    width: 30%;
    margin: 0px 25px;
    font-size: 26px;
    font-weight: bold;
}


#footer .logo img{
  width: 80%;
	margin-left: auto;
	margin-right: auto;	
}

.footer{
	text-align: center;
	margin: 30px auto
}
.copyright{
	text-align: center;
	margin: 10px auto;
}

/*========= ページトップのためのCSS ===============*/

#page-top a {
    background: #444;
    color: #fff;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: all 0.3s;
    border-bottom: solid 1px #D3B573;
}

#page-top a:hover{
  background: #666;
}



/* address */

.address {
  margin: 10px 0 0;
  margin: 10px 0 0;
  padding: 0;
}

/* navi */

.navi-row {
    width: 33%;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
    margin: 20px;
    padding: 10px;
}


.online-list-nav{
	list-style: none;
}

.online-list{
	margin: 0 !important
		;
}
/* sns-navi */

#footer .sns-navi {
  margin: 0 0 0 auto;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}

/* sitenavi */

#footer .sitenavi {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}


/* copyright */

#footer .copyright {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    font-size: x-small;
}

#footer .foot_banner{
	width: 100%;
	background-color: #fff!important;
}
#footer .foot_banner ul{
	width: 100%;
	background-color: #fff!important;
	list-style: none;
}

.business-banner{
    margin: 0 auto;
    width: 95%;
}
.qa-banner{
    margin: 0 auto;
    width: 95%;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　marine&herb
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.marineherb{
  /*margin: 100px auto;*/
	width: 100%;
}

.marine_box{
    width: 100%;
    margin: 0 auto;
}

.marine_cmt{
	width: 80%;
	margin: 0 auto;
}

.marine_title{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 0 auto;
    text-align: center;
    font-size: 36px;
}

.marine_h3{
    text-align: center;
    font-size: 14px;
    /* color: #fff; */
    /* padding: 0 0 0 1em; */
    font-weight: bold;
}

.marineTxt{
    /* color: #fff; */
    text-align: left;
    font-size: 12px;
    padding: 1em 0 0 0;
    margin: 0 auto;
	width: 100%;
}

.commonTxt{
    /* color: #fff; */
    text-align: left;
    font-size: 12px;
    padding: 1em 0 0 0;
    width: 70%;
    margin: 0 auto;
}

.marine_gif{
	width: 100%;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　各ページ共通
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.container {
}
.parallax {
  background-attachment: fixed;
  background-image: url(https://image.rakuten.co.jp/hftea/cabinet/business/bulk-top.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  width: 100%;
}

#header{
    /*position: fixed;*/
	width: 100%;
    z-index: 999999;
}

.category_box{
	width: 100%;
	margin: 0 auto 100px auto;
}

.category_cmt p {
    font-size: 12px;
    text-align: left;
    padding: 50px 0;
    width: 80%;
    margin: 0 auto;
	}


.mokuji{
    width: 70%;
    margin: 0px auto;
}


.mokuji ul li a{
	text-decoration: none;
	color: #d3b572;
}

.mokuji ul, ol {
    background: #fcfcfc;
    padding: 20px 40px 20px 60px;
    border: solid 1px gray;
}

.mokuji ul li, ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}

.img-left {
    margin: 50px auto;
}
.img-left img{
    width: 100%;
}

.area {
	width: 100%!important;
}

.img-left p {
    font-size: 14px;
}

.title_sub {
    text-align: center;
    font-size: 20px;
    color: #d3b572;
    padding: 25px 0 25px 0;
    font-weight: bold;
}

.img-left ul {
    width: 70%;
    margin: 0 auto 0 18%;
    list-style: auto;
    color: #888;
    font-weight: 600;
}

.img-left .about_btn{
	width: 80%;
}

/*カテゴリ上部画像*/
.parallax {
    background-attachment: fixed;
    background-image: url(https://image.rakuten.co.jp/hftea/cabinet/business/bulk-top.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px;
    width: 100%;
    top: 0;
}

 .nav-list {
    position: relative;
  }
.nav-item_sub {
    background: #ccc;
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    position: absolute;
    top: 40px;
    transition: all 0.2s ease;
    visibility: hidden;
    width: 100vw;
  }

  .nav-item_sub .inner {
    display: flex;
    margin: 0 auto;
    width: 1200px;
  }
 .nav-item_sub .inner ul {
    margin: 20px 20px 20px;
  }
  .global-nav .nav-list .nav-item_sub a {
    text-align: left;
  }

  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
  }
.global-nav .nav-list {
    background: rgba(0, 0, 0, 0.8);
    display: none;
    left: 50%;
    padding: 10px;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
  }

  .global-nav .nav-list .nav-sample_box a {
    border-bottom: 1px solid #ccc;
    border-right: none;
    color: #fff;
    padding: 1rem 1rem;
    text-align: left;
  }

  .global-nav .nav-list .nav-item:last-child a {
    border-bottom: none;
  }

  .global-nav-icon {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 15px;
    z-index: 2;
  }



  /* snsアイコンセクション */

.wow.animated {
  opacity: 1;
  transition: 1.5s;
  transform: translateY(0px);
	display: flex;
	flex-wrap: wrap;
  width: 100%;
}


.icon_container {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
}


.bnrList_cc {
  margin: 0;
  margin: auto;
}

.row, .itemList {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
	justify-content: center; 
}


.bnrList_cc > div {
  padding: 0 4px;
  margin-bottom: 5px;
}


.col-3, .itemList--4 .itemList__unit {
	width: 160px;
  height: auto;
}


.bnrList_cc > div > .bnrBox {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}




.bnr, .bnrBox img {
    display: block;
    width: 100%;
    object-fit: cover;
}


.item-name{
	color: #666;
	font-size: 14px;
	padding-right: 15px;
	padding-left: 15px;
	 margin: 0 15px 30px;
    
}
.item-name a{
	color: #666;
	font-size: 14px;
	text-align: center;
}
.flavor_btn{
	text-align: center;
}
.sample_box li{
	margin-top: 30px;
}
.category_box{
	width: 100%;
	margin: 0 auto 100px auto;
}

.category_cmt p {
    font-size: 12px;
    text-align: left;
    padding: 50px 0;
    width: 80%;
    margin: 0 auto;
	}


.mokuji{
    width: 70%;
    margin: 0px auto;
}


.mokuji ul li a{
	text-decoration: none;
	color: #d3b572;
}

.mokuji ul, ol {
    background: #fcfcfc;
    padding: 20px 40px 20px 60px;
    border: solid 1px gray;
}

.mokuji ul li, ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}

.about_profile{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}
.about_inner limit{
	margin-bottom: 20px;
}
.about_profile_list{
	margin-bottom: 30px;
}
.about_profile_list dt {
    float: left;
    width: 40%;
    border-bottom: solid 1px #d3b572;
    font-weight: bold;
    font-size: 10px;
    padding: 5px;
    min-height: 55px;
}

.about_profile_list dt span{
    display: block;
    font-size: 0.9em;
    font-size: 9px;
    font-weight: normal;
}

 
.about_profile_list dd {
    width: 60%;
    margin-left: 42%;
    border-bottom: 1px solid #ccc;
    font-size: 10px;
    /* border-left: 1px solid #333; */
    min-height: 55px;
    /* margin-bottom: 5px; */
    vertical-align: middle;
    padding: 5px;
}
.timeline-content{
	font-size: 90%;
}
.timeline-content p{
	font-size: 85%;
}