/* カスタマイズ用CSS */
/* 基準色：#684022 */


/*ヘッダーのカート価格を消す----------*/
.ec-headerNaviRole{
	padding: 0 20px 0px;
}
.ec-headerNaviRole img {
	width: 400px;
 	max-width: 100%;
	height: auto;
}
.ec-headerRole{
	display: none;
}
.ec-headerTitle .ec-headerTitle__title a {
	margin-bottom: 0px;
}
.ec-headerTitle__title img{
	width: 80%;
	height: auto;
}
@media all and (max-width:768px){
	.org_logo{
		display: none;
	}
	.ec-headerRole{
		display: inline;
	}
}
.ec-cartNavi__label{
	display: none;
}
  .ec-cartNavi {
    display: flex;
    justify-content: space-between;
    border-radius: 99999px;
    box-sizing: border-box;
    padding: 16px 17px 10px;
    width: auto;
    min-width: 30px;
    height: 44px;
    white-space: nowrap;
    cursor: pointer;
    background: #f8f8f8;
  }

/*メイン画像----------*/
.ec-sliderRole {
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  color: #525263;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}
.org-pc{}
.org-sp{
	display: none;
}
@media all and (max-width:768px){
	.org-pc{
		display: none;		
	}
	.org-sp{
		display: block;
	}
}

/*ページトップcss*/
.ec-blockTopBtn {
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  right: 0;
  bottom: 10px;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  opacity: 1;
  background-color: transparent;
}

/*▼★ニュース背景あり*/
.org_ec-role{
	background-color: #F7F7F7;
	padding-bottom: 80px;
}
.org_ec-secHeading h2{
	font-size: clamp(28px, 4vw, 42px);
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}
.ec-role {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  color: #525263;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 1130px;
}
.ec-newsRole .ec-newsRole__newsCloseBtn {
  display: inline-block;
  margin-left: auto;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: white;
  text-align: center;
  background: #684022;
  cursor: pointer;
  position: absolute;
  right: 5px;
}
  .ec-newsRole .ec-newsRole__news {
    border-top: 1px solid #000000;
	border-right: 0px;
	  border-left: 0px;
    border-bottom: 1px solid #000000;
    padding: 5px 0px;
  }
.ec-newsRole .ec-newsRole__newsTitle {
  display: inline-block;
  margin-bottom: 10px;
  width: 90%;
  font-size: 16px;
  font-weight: bold;
  color: #7D7D7D;
  line-height: 1.6;
}
.ec-newsRole .ec-newsRole__newsDescription {
  display: none;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
}


/*店舗案内----------*/
.org_tenpo_intro-section {
  padding: 80px 0;
  background-color: #fff;
}
.org_tenpo_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}
.org_tenpo_intro-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.org_tenpo_intro-image {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
}
.org_tenpo_intro-image img {
  width: 100%;
	max-width: 420px;
  height: auto;
  display: block;
}
.org_tenpo_intro-text {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
}
.org_tenpo_intro-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  margin-bottom: 20px;
}
.org_tenpo_intro-desc {
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
	.org_tenpo_intro-content {
	  gap: 50px;
	}
}
@media (max-width: 767px) {
  .org_tenpo_intro-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
}

/*カテゴリー----------*/
.org_catego_category-section {
  padding: 80px 0;
  background-color: #fff;
}
.org_catego_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}
.org_catego_category-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
	color: #525263;
}
.org_catego_category-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}
.org_catego_category-item {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}

/* ★ここで画像エリア全体を横幅に応じて可変に */
.org_catego_image-wrap {
  width: 100%;
  aspect-ratio: 340 / 180; /* 高さ比固定、縮小可 */
  overflow: hidden;
}

/* ★画像を縮小表示しつつ必ず全体表示 */
.org_catego_image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← 切れずに全体が見える */
  object-position: center;
  transition: transform 0.3s ease;
}

.org_catego_category-item:hover img {
  opacity: 0.7;
}

.org_catego_category-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .org_catego_category-title {
    font-size: 30px;
  }

  .org_catego_category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .org_catego_category-name {
    font-size: 15px;
  }
}

/*おすすめタイトル---*/
.org_osusume_title_bg-section {
  width: 100%;
  height: 450px;
  background-image: url('../img/osusume_title_bk.jpg'); /* ←背景画像を指定してください */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org_osusume_title_text-box {
  background-color: rgba(255, 255, 255, 0.8); /* 白・半透明 */
  padding: 10px 100px;
  text-align: center;
}

.org_osusume_title_text-box h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

/* 高さと文字サイズを徐々に縮小 */
@media (max-width: 1024px) {
  .org_osusume_title_bg-section {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .org_osusume_title_bg-section {
    height: 200px;
  }

  .org_osusume_title_text-box h2 {
    font-size: 24px;
  }
}

/*おすすめ商品----------*/
.org_osusume_recommend-section {
  padding: 80px 0;
  background-color: #fff;
}
.org_osusume_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}
.org_osusume_recommend-title {
	color: #000;
  font-size: 42px;
  font-weight: bold;
  text-align: left;
}
/* グリッド基本 */
.org_osusume_product-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
/* 商品ブロック全体をリンク */
.org_osusume_product-item {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}
/* 画像拡大エリアを囲む */
.org_osusume_image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
/* 画像 */
.org_osusume_product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.org_osusume_product-item:hover img {
  transform: scale(1.05);
}
.org_osusume_product-name {
  margin-top: 10px;
  font-size: 16px;
  text-align: left;
  transition: text-decoration 0.3s;
}
.org_osusume_product-item:hover .org_osusume_product-name {
  text-decoration: underline;
}
.org_osusume_product-price {
  margin-top: 2pt;
  font-size: 18px;
  text-align: left;
}
.org_osusume_product-price .tax {
  font-size: 14px;
}
.org_osusume_btn{
	margin-top: 50px;
	text-align: center;
}
@media (max-width: 1024px) {
  .org_osusume_recommend-title {
    font-size: 36px;
  }
  .org_osusume_product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (max-width: 767px) {
  .org_osusume_recommend-title {
    font-size: 30px;
  }
  .org_osusume_product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    justify-items: center;
  }
}

/*▼SNS --*/
.org_sns_container {
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.org_sns_list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.org_sns_list li a img {
  display: block;
}

/*フッター----------*/
.org_ec-footerRole{
	width: 100%;
	margin: 50px 0 0;
	padding: 30px 0 0;
	background-color: #684022;
	color: #ffffff;
	font-size: 16px;
}
.ec-footerRole__inner{
  width: 1090px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.org_ec-footerTitle,
.org_ec-footerMenu {
  width: 48%;
}
.org_ec-footerMenu{
	margin-top: 40px;
}
.org_ec-footerTitle__logo img {
  display: block;
  margin-bottom: 30px;
}
.footer-address {
  margin-bottom: 10px;
}
.footer-tel {
  margin-bottom: 30px;
}
.footer-tel a{
  color: #ffffff;
}
.footer-sns {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.footer-sns li {
  display: inline-block;
}
.org_ec-footerNavi {
  list-style: none;
  padding: 0;
  margin: 0;
}
.org_ec-footerNavi__link {
  margin-bottom: 30px;
}
.org_ec-footerNavi__link a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}
.org_ec-footerTitle__copyright{
	width: 100%;
	margin: 70px 0 0;
	padding: 20px 0;
	background-color: #684022;
	color: #FFFFFF;
	text-align: center;
}
@media all and (max-width:1130px){
	.ec-footerRole__inner{
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 768px) {
  .ec-footerRole__inner {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }

  /* メニューを上、ロゴ側を下 */
  .org_ec-footerMenu {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .org_ec-footerTitle {
    order: 2;
    width: 100%;
    text-align: center;
  }

  /* ★ ロゴ画像を中央に */
  .org_ec-footerTitle__logo a {
    display: inline-block;
  }

  .org_ec-footerTitle__logo img {
    margin: 0 auto 30px auto;
    display: block;
  }

  .footer-sns {
    justify-content: center;
  }

  .org_ec-footerNavi__link {
    margin-bottom: 20px;
  }
}


/*下層ページのヘッダー下の線　<div class="org_red-line"></div>*/
.org_red-line {
  width: 100%;
  height: 2px;
  background-color: #684022;
	margin-bottom: 10px;
}
@media (max-width: 768px) {
	.org_red-line {
		display: none;
	}
}

/*スマホハンバーガー表示の色*/
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
  background: #684022;
  color: #fff;
}
.ec-drawerRole .ec-headerLinkArea {
  background: #684022;
}
.ec-drawerRole {
  background: #684022;
}

/* ボタン */
.org_all-button {
  display: inline-block;
  width: 200px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  background-color: #684022;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: 
    transform 0.3s,
    border-color 0.3s;
}
.org_all-button:hover {
  box-shadow: 0 0 0 2px #684022;
  transform: scale(1.01);
}
/*カレンダー ----- */
.ec-secHeading{
	width: 100%;
	text-align: center;
}
.ec-secHeading .ec-secHeading__en {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
	color: #525263;
}
@media (max-width: 767px) {
  .ec-secHeading .ec-secHeading__en {
    font-size: 30px;
  }
}
.ec-calendar table{
	width: 47%;	
}
@media (max-width: 1100px) {
	.ec-calendar table{
		width: 46%;	
	}
	.ec-calendar{
		width: 100%;
	}
	.ec-role{
		width: 100%;
	}
}
@media (max-width: 1050px) {
	.ec-calendar table{
		width: 46%;	
	}
}
@media (max-width: 1000px) {
	.ec-calendar table{
		width: 46%;	
	}
}
@media (max-width: 900px) {
	.ec-calendar table{
		width: 45%;	
	}
}
@media (max-width: 768px) {
	.ec-calendar table{
		width: 100%;	
	}
}

/*アニメーション下からふわっと ----- */
.fade-up {
  opacity: 0;
  transform: translateY(50px); /* 移動量も少し増やすとゆったり感アップ */
  transition: opacity 1.5s ease, transform 1.5s ease; /* ← 時間を1.2秒に延長 */
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}