@charset "utf-8";
/* CSS Document */

/*----------index---------------------------------------------------------------*/
/*========================================
	FV
========================================================*/

#fv {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 100vh;	
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====  背景（mask適用） ========================= */
.fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
 width: 100%;
	height: 100%;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.1)),
    url("../img/index/fv.jpg") center / cover no-repeat;

  /* SVGマスク適用 */
  -webkit-mask-image: url("../img/fvmask.svg");  
  -webkit-mask-size: auto 100vw;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;

  mask-image: url("../img/index/fvmask.svg");
  mask-size: auto 100vw;
  mask-position: bottom center;
  mask-repeat: no-repeat;
}

/* ======  テキストエリア ========================= */
.catch {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.catch h2 {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
	font-family: var(--font-ttl);
}

.catch h3 {
	font-family: var(--font-ttl);
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  padding: 12px 60px;
  margin-bottom: 20px;
	font-weight: 400;

  background: linear-gradient(
    to right,
    rgba(139, 90, 43, 0),
    rgba(139, 90, 43, 0.9) 15%,
    rgba(139, 90, 43, 0.9) 85%,
    rgba(139, 90, 43, 0)
  );
	text-shadow: 0 0 5px rgba(0, 0, 0, .7);

}

.catch p {
	font-size: 1.3rem;
	line-height: 1.8;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0,0,0,0.8);
	margin-bottom: 5px;
}

.fv_ctabtn {
	margin-top: 25px;
}

.fv_ctabtn a {
	display: inline-block;
	padding: 14px 40px;
	font-size: 1.3rem;
	color: #fff;
	text-decoration: none;
	border-radius: 15px;
	background: linear-gradient(to bottom, #ff6a4a, #d13b2d 50%, #810f00);
	box-shadow:	0 4px 0 #7a140c,0 8px 16px rgba(0,0,0,0.35);
	width: 50%;
	max-width: 350px;
	min-width: 280px;
	transition: 0.2s;
	position: relative;
}
.fv_ctabtn a::before{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 12px;
	right: 2rem;
  transition: 0.2s;
}

/* ホバー */
.fv_ctabtn a:hover {
	transform: translateY(2px);
	box-shadow:
	0 2px 0 #7a140c,
	0 4px 8px rgba(0,0,0,0.3);
}
.fv_ctabtn a:hover::before{
	transition: 0.2s;
	right: 1.8rem;
}



/*========================================
	迷ったらこれ！
========================================================*/
.product-ttl{
	text-align: center;
}
.product-ttl h2{
	width: 75%;
	max-width: 700px;
	margin: 0 auto;
}
.product-ttl h3{
	font-family: var(--font-ttl);
	font-size: clamp(1.6rem, 1.3rem + 1.33vw, 2.3rem);
	color: #6b3f1f;
	margin-bottom: 20px;
}

.product-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: clamp(40px,7vw,80px) auto;
}

/* =========================
   カード
========================= */
.product-card {
	position: relative;
	width: 300px;
	background: #F5F1E8;
	border-radius: 12px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.1);
	text-align: center;
	overflow: visible;	
	transition: 0.4s;
}

/* 画像 */
.product-card .img{	
	width: 100%;
	display: block;
	overflow: hidden;
	border-radius: 12px 12px 0 0;		
}
.product-card .img img {
  width: 100%;
	padding: 5px;
  object-fit: cover;
	border-radius: 12px;	
}
.product-card:hover {
  transform: translateY(-5px);
  transition: 0.4s;
}
/* =========================
   バッジ
========================= */
.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  width: 100px; /* サイズ調整 */
}

.badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* No1だけ強調 */
.badge-no1 {
  top: -20px;
  width: 115px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

/* =========================
   情報
========================= */
.product-card .info {
  padding: 20px;
}

/* 商品名 */
.product-card h3 {
	font-family: var(--font-ttl);
  font-size: 1.35rem;
  margin-bottom: 10px;
  border-bottom: 1px solid #c8b8a0;
  padding-bottom: 10px;
}

/* スペック */
.spec {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* 価格 */
.price {
  color: #c0392b;
  font-size: 1.3rem;
  margin: 0 5px;
  font-weight: bold;
}

/* =========================
   ボタン
========================= */
.product-card .btn {
	display: block;
	width: 80%;
	margin: 0 auto;
	background:linear-gradient(to bottom, #1f7a3a, #005737);
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.4s;
	position: relative;
}
.product-card .btn::before{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 10px;
	right: 20px;
}
.product-card .btn:hover {
  background:linear-gradient(to bottom, #1f7a3a, #005737, #005737);
  transition: 0.4s;
}

/* =========================
   下のボタン
========================= */
.more-btn {
  text-align: center;
	width: 60%;
	max-width: 400px;
	margin: 0 auto;
}

.more-btn a {
  display: block;
  padding: 14px 40px;
  background: url("../img/btn_bg.jpg");
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.more-btn a:hover {
	transform: translateY(2px);
	box-shadow:0 3px 5px rgba(0,0,0,0.2);
}


/*========================================
	こんなシーンで選ばれています
========================================================*/
.scene-ttl h2{
	width: 80%;
	max-width: 800px;
	margin: 0 auto 30px;
}
.scene-ttl h3{
	width: 60%;
	max-width: 500px;
	margin: 0 auto 30px;
}

.scene-wrap{
	display: flex;
	gap:40px;
	justify-content: space-between;
	margin:60px 0; 
}

.case-wrap{
	width: calc((100% - 80px) / 3);
}
.case-wrap figure{
	position: relative;
	aspect-ratio: 4 / 3;
	padding: 10px;
}
.case-wrap figure .scene_catch{
	position: absolute;
	height: 40px;
	transform: rotate(-13deg);
	top: -10px;
	left: -25px;
}
.case-wrap figure .scene_catch{
	width: 100%;
	object-fit: contain;
	object-position:left;
}
.case-text{
	text-align: center;
	font-weight: 600;
}
.btn-txt{
	margin-bottom: 20px;
	text-align: center;
}
.btn-txt span{
	padding: 0 20px;
	position: relative;
}
.btn-txt span::before,
.btn-txt span::after{
	position: absolute;
	content: '';
	width: 50px;
	height: 110%;
	background: url(../img/h-deco.svg)no-repeat center/contain;
	bottom:0;
}
.btn-txt span::before{
	right: 100%;
}
.btn-txt span::after{
	left: 100%;
 transform: scaleX(-1);
	right: 100%;
}

/*=========================
お客様の声
==========================================================*/
.voice-ttl{
	text-align: center;
}
.voice-ttl h2{
	width: 75%;
	max-width: 700px;
	margin: 0 auto;
}
.voice-ttl h2 img{
	max-height: 95px;
	object-fit: contain;
}
.voice-ttl h3{
	font-family: var(--font-ttl);
	font-size: clamp(1.4rem, 1.014rem + 1.71vw, 2.3rem);
	color: #6b3f1f;
	margin-bottom: 50px;
}


.voice-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.voice-card {
  background: #f7f2e7;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
}
.voice-card h3{
	font-family: var(--font-ttl);
	color: #6b3f1f;	
	margin-bottom: 15px;
}

/* 星 */
.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.stars img {
  width: 40px;
  height: 40px;
}

/* テキスト */
.text {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	overflow: hidden;
	height: 4.8em; /* 3行分 */
	transition: max-height 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}


/* 開いた */
.voice-card.open .text {
  -webkit-line-clamp: unset;
	 height: auto;
     max-height: 500px;
}

.text::after {
  content: "";
  position: absolute;
  bottom: 95px;
  left: 0;
  width: 100%;
  height: 45px;
  background: linear-gradient(to bottom, transparent, #f7f2e7);
  opacity: 1;
  transition: opacity 0.3s;
	z-index: 0;
}

.voice-card.open .text::after {
  opacity: 0;
}
/* ボタン */
.voice-btn{
  display: flex;
  align-items: center;
  justify-content: center; /* ← 中央 */
  width: 50%;
	max-width: 320px;
  margin: 20px auto 0; /* ← 中央配置 */
  gap: 8px;
  padding: 10px 25px;
  background: linear-gradient(#b07a00, #6a4500);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

/* ホバー */
.voice-btn:hover {
  transform: translateY(-2px);
}

/* 矢印 */
.voice-btn .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 開いたら回転 */
.voice-card.open .arrow {
  transform: rotate(-135deg);
}


/*=========================
 美味しさの秘密
==================================================================*/
#about{
	position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* ← 左を少し大きく */
  gap: 60px;
  align-items: center;
}

/* 左画像 */
.about-img {
  position: relative;
  border-radius: 20px;
}

.about-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%; /* ← フェード幅 */
  height: 100%;

  background: linear-gradient(to right, rgba(246, 241, 231, 0) 0%, rgb(241,232,214) 100%);
  border-radius: 20px;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* 右側 */
.about-content {
  max-width: 480px; /* ← これがポイント（広がりすぎ防止） */
}

/* リード文 */
.lead {
  font-size: clamp(1.125rem, 0.938rem + 0.83vw, 1.563rem);
  line-height: 2;
  margin-bottom: 25px;
  color: #6a4500;
	font-weight: 600;
}

/* リスト */
.point-list {
  margin-bottom: 30px;
}

.point-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.point-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: green;
}

/* =========================
   ボタン
========================= */
.btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.btn-wrap .btn {
	display: block;
	width: 80%;
	max-width: 400px;
	background:linear-gradient(to bottom, #1f7a3a, #005737);
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.4s;
	position: relative;
}
.btn-wrap .btn::before{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 10px;
	right: 25px;
  transition: 0.4s;
}
.btn-wrap .btn:hover {
  background:linear-gradient(to bottom, #1f7a3a, #005737, #005737);
  transition: 0.4s;
}
.btn-wrap .btn:hover::before{
	right: 18px;
  transition: 0.4s;
}


/*=============================================
挨拶 
==================================================================================*/
.greeting {
  padding-top: 80px;
  position: relative;
}
.greet-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.greet-txtwrap {
  flex: 1.5;
}

.greet-img {
  flex: 1;
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.greet-img img{
	aspect-ratio: 1 / 1;
	
}
.greet-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;

  background: linear-gradient( to left,rgba(246, 241, 231, 0) 0%, rgb(241,232,214) 100%);
}

.greeting-text {
  line-height: 2;
  max-width: 700px;
  margin: 0 auto 50px;
}
.greet-catch{
	width: 80%;
	margin-bottom: 20px;
}
.name{
	margin-left: auto;
	width: 40%;
	max-width: 200px;
}

/*=============================================
 直売所
=====================================================================================*/
.shop{
	position: relative;
}

.shop-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
	
}

.shop-map {
  border-radius: 16px;
}

.shop-info table{
	margin: 30px 0;
}
.shop-info th{
	padding: 8px 5px 8px 0;
	width:115px;
	text-align: left;
	vertical-align: top;
	font-weight: 400;
}
.shop-info td{
	padding: 8px 5px;	
}
.shop-map iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 16px;
}
/*====================================
CTA
===========================================================*/
.cta {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: url("../img/index/fcta.png") center / cover no-repeat;

  -webkit-mask-image:
    url("../img/index/fctmask1.png"),
    linear-gradient(
      to bottom,
      transparent 30px,
      black 30px,
      black calc(100% - 30px),
      transparent calc(100% - 30px)
    ),
    url("../img/index/fctmask1.png");

  -webkit-mask-position:
    top center,
    center,
    bottom 2% center;

  -webkit-mask-size:
    130% 50px,
    100% 100%,
    130% 50px;

  -webkit-mask-repeat:
    no-repeat,
    no-repeat,
    no-repeat;
	margin-top: -35px;
}
.cta-sub {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.9;
}

.cta-ttl {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.cta-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-btn  {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  background: linear-gradient(
    to bottom,
    #ff6a4a,
    #d13b2d 50%,
    #810f00
  );
  box-shadow:
    0 8px 10px rgba(0,0,0,0.35);

  width: 50%;
  max-width: 350px;

  transition: 0.2s;
  position: relative;
}
.cta-btn::before{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top: 12px;
	right: 2rem;
  transition: 0.2s;
}
.cta-btn::after{
	position: absolute;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 1px solid rgba(255,167,147,1.00);
	border-radius: 13px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3
}

/* ホバー */

.cta-btn:hover{
	transform: translateY(2px);
	box-shadow:
	0 4px 8px rgba(0,0,0,0.3);
}
.cta-btn:hover::before{
	transition: 0.2s;
	right: 1.8rem;
}


/*=================================
	下層共通
===================================================================*/
#pagettl{
  padding: 180px 20px 100px;
  text-align: center;
  color: #fff;

  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
              url("../img/pagettl.jpg");
  background-size: cover;
  background-position: center;

  filter: saturate(80%) brightness(90%);
}

.concept #pagettl{
	background:  linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),url("../img/concept/pabgettl.jpg");
  background-size: cover;
  background-position: center 60%;

}
.akadori #pagettl{
	background:  linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),url("../img/akadori/pabgettl.jpg");
  background-size: cover;
  background-position: center 60%;

}
#pagettl h2{
  font-size: 36px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
#pagettl h2::after{
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  margin: 15px auto 0;
  opacity: 0.6;
}
#pagettl p{
  font-size: 12px;
  letter-spacing: 0.3em;
  margin-top: 15px;
  opacity: 0.6;
}
#pagettl h2,
#pagettl p{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

#pagettl p{
  animation-delay: 0.2s;
}

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

.sec-ttl{
  font-family: var(--font-ttl);
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  color: #6b3f1f;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
}
/*=================================
  パンくず
=================================*/
.breadcrumb{
  max-width: 1100px;
  margin: 10px auto 40px;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
	  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.breadcrumb ol{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li{
  display: flex;
  align-items: center;
}

.breadcrumb li a{
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb li a:hover{
  color: #b22222; /* 炭火っぽい赤系 */
}

/* 区切り記号 */
.breadcrumb li:not(:last-child)::after{
  content: "›";
  margin: 0 8px;
  color: #eee;
}

/* 現在地 */
.breadcrumb li:last-child{
  color: #fff;
  font-weight: 500;
}


/*===========================	
	商品紹介
=========================================*/
.shopWrap{
    max-width:1200px;
    margin:0 auto;
    padding:30px 20px 60px;
}
.pageTitle{
    margin:0 0 20px;
    font-size:30px;
    line-height:1.4;
    font-weight:bold;
}
.deliveryNotice{
    margin:0 0 35px;
    padding:14px 16px;
    border:1px solid #d8e4ec;
    background:#f7fbfe;
    border-radius:8px;
    font-size:14px;
}
.sectionTitle{
    margin:0 0 18px;
    font-size:24px;
    line-height:1.4;
    font-weight:bold;
}
.categoryTabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:0 0 25px;
    padding:0;
    list-style:none;
}
.categoryTabs li{
    margin:0;
    padding:0;
}
.categoryTabs a{
    display:inline-block;
    padding:10px 16px;
    border:1px solid #ccc;
    border-radius:999px;
    background:#fff;
    font-size:14px;
}
.categoryTabs a.current{
    background:#333;
    color:#fff;
    border-color:#333;
}
.productGrid{
    display:grid;
    /*grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));*/	
    grid-template-columns:repeat(3, minmax(240px, 1fr));	
    gap:24px 40px;
}
.productCard{
    border:1px solid #e5e5e5;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,0.14);
}
.productThumbWrap{
    position:relative;
    background:#fafafa;
    aspect-ratio: 4 / 3;
    overflow:hidden;
}
.productThumbWrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.noImage{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:14px;
}
.cardBody{
    padding:16px;
}
.cardCategory{
    display:inline-block;
    margin:0 0 10px;
    padding:4px 10px;
    font-size:12px;
    border-radius:999px;
    background:#f2f2f2;
}
.cardTitle{
    margin:0 0 10px;
    font-size:18px;
    line-height:1.5;
    font-weight:bold;
}
.cardText{
    margin:0 0 14px;
    font-size:14px;
    color:#555;
    min-height:48px;
}
.cardPrice{
    margin:0 0 14px;
    font-size:16px;
    font-weight:bold;
	color: #c0392b
}
.badgeWrap{
    position:absolute;
    top:16px;
    left:16px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
	text-align: center
}
.badge{
    display:inline-block;
    padding:5px 10px;
    font-size:12px;
    line-height:1.2;
    border-radius:999px;
    color:#fff;
}
.badgeRecommend{
    background:#d97706;
}
.badgeSoldout{
    background:#b91c1c;
}
.buttonArea{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}
.btn{
    display:inline-block;
    width:100%;
    padding:12px 16px;
    text-align:center;
    border-radius:8px;
    font-size:14px;
    font-weight:bold;
    box-sizing:border-box;
}
.btnDetail{
    background:#333;
    color:#fff;
}
.btnCart{
    background:#0f766e;
    color:#fff;
}
.btnDisabled{
    background:#ccc;
    color:#666;
    cursor:not-allowed;
}
.emptyBox{
    padding:30px 20px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    text-align:center;
    color:#666;
    background:#fafafa;
}
.sectionSpace{
   padding-top: 0;
}
@media (max-width: 767px){
    .shopWrap{
        padding:20px 14px 40px;
    }
    .pageTitle{
        font-size:24px;
    }
    .sectionTitle{
        font-size:20px;
    }
}


/*===========================	
	こだわり
=========================================*/
.concept-top {
  position: relative;
  padding: 120px 0;
  background: url("img/bg-paper.jpg") center/cover no-repeat; /* 既存ならそのままでOK */
  overflow: hidden;
}

/* 中央テキストちょいズラし */
.concept-top .inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  transform: translateX(-20px); /* ←これが効く */
}

/* タイトル */
.concept-top h2 {
  letter-spacing: 0.08em;
}

/* イラスト共通 */
.concept-top .illust {
  position: absolute;
  opacity: 0.9;
  z-index: 1;
}

/* 左 */
.concept-top .blef {
  left: 0;
  bottom: 20px;
}

.concept-top .blef img {
  transform: translateX(-40px); /* はみ出し */
}

/* 右 */
.concept-top .brig {
  right: 0;
  bottom: 20px;
}

.concept-top .brig img {
  transform: translateX(40px); /* はみ出し */
}

/* ちょい動き（今っぽさ） */
.concept-top .illust img {
  transition: transform 0.6s ease;
}

.concept-top .illust img:hover {
  transform: translateY(-5px);
}


/* レイアウト */
.concept_sec .flex{
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.concept_sec .flex.reverse{
  flex-direction: row-reverse;
}
.concept_sec .img{
    flex: 1
}
.concept_sec .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transform: translateY(-30px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);	
}

.concept_sec .txt{
  flex: 1;
  padding: 20px 30px;
}

.concept_sec .txt h3{
  font-size: clamp(18px, 1.2rem + 0.8vw, 26px);
  font-weight: 600;
  color: #6b3f1f;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
	 transform: translateX(-8px);
}
.concept_sec .txt h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 4px;
  height: 40px;
  background: #7ba89c;
}

.concept_sec .txt p{
  line-height: 2;
  color: #333;
}
.concept_sec .illust {
  position: absolute;
  right: 0;
  bottom: -40px;
  opacity: 0.15;
  transform: scale(1.2);
}
/* =========================
   強調セクション
========================= */
.edge{
  display: flex;
  align-items: center;
  gap: 60px;
}

/* テキストは普通 */
.edge .txt{
  width: 50%;
	padding: 0 2vw;
    max-width: 550px;
	
}

/* 画像をはみ出させる */
.edge .img{
  width: 50vw; /* 画面半分 */
}

.edge .img img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* 右にはみ出す */
.edge .img{
  margin-left: calc(50% - 50vw);
}

/* 逆（左にはみ出す） */
.edge.reverse .img{
  margin-right: calc(50% - 50vw);
  margin-left:auto;
}




/* セクション全体 */
.hygiene {
  background: #f3f6f4; /* 少しクリーンな色 */
  padding: 100px 0;
  position: relative;
}

/* カード化 */
.hygiene-box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  align-items: center;
  gap: 40px;
}

/* 画像ちょい浮かせる */
.hygiene .img img {
  border-radius: 12px;
  transform: translateY(-10px);
}

.concept-text{
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.concept-text p{
  margin-bottom: 20px;
  line-height: 2;
	font-size: 16px;
  opacity: 0.9;
}

/*recipe*/

.recipe_sec{
  padding: 100px 0;
  background: #f7f4ef;
}

.recipe_wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.recipe_item{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.recipe_item .txt{
  padding: 20px;
}

.recipe_item h3{
  margin-bottom: 10px;
}
.recipe_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}
.recipe_note{
  margin-top: 60px;
  text-align: center;
  font-size: 15px;
  opacity: 0.8;
}

/*===========================	
	会社概要
=========================================*/
.aboutbox {
  background:#f7f3ea; /* 薄いベージュ系 */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin: 40px 0;
}
/* テーブル */
.company-table{
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td{
  padding: 18px 15px;
  border-bottom: 1px solid #e5e0d8;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}

.company-table th{
  width: 30%;
  background: #f7f3ea;
  font-weight: 500;
  color: #6b3f1f;
}

/*代表あいさつ*/
.message-sec{
  background: #f9f7f2;
}

.message-wrap{
  display: flex;
  gap: 50px;
  align-items: center;
}

.message-img{
  flex: 3;
}

.message-img img{
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.message-text{
  flex: 5;
}

.message-text p{
  line-height: 2;
  margin-bottom: 15px;
  font-size: 14px;
}

.name{
  margin-top: 20px;
  font-weight: bold;
  color: #6b3f1f;
}

/*Map*/
.map-sec{
  background: #fff;
}

.map-sec iframe{
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/*特定商取引*/
.law-sec{
  background: #f9f7f2;
}

/* 長文対策 */
.law-sec .company-table td{
  font-size: 13px;
  line-height: 1.9;
}

/* pの余白調整 */
.law-sec .company-table td p{
  margin-bottom: 10px;
}

/*===================================
Contact
========================================================*/
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* アイテム */
.faq-item {
    background: #f9f7f2;
    box-shadow: 4px 4px 6px rgb(209 185 155 / 45%);
    padding: .5rem 1rem 0;
    margin-bottom: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Q */
.faq-question {
  cursor: pointer;
  position: relative;
  padding: 20px 45px 20px 40px;
  font-weight: bold;
  line-height: 1.6;
}

.faq-item:hover {
  transform: translateY(-2px);
 box-shadow: 6px 6px 10px rgb(209 185 155 / 55%);	
}
/* Qアイコン */
.q-icon {
  position: absolute;
  left: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  background: #9A1417;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* 開閉アイコン（＋ / −） */
.toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  background: #555;
  transition: 0.3s;
}

/* 横棒 */
.toggle-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

/* 縦棒（＋の縦） */
.toggle-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

/* open時 → −になる */
.faq-item.open .toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* A */
.faq-answer {
  display: none;
  padding: 0 20px 20px 40px;
  color: #555;
  line-height: 1.8;
  position: relative;
}

/* Aアイコン */
.a-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #caa24a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* 開いた状態 */
.faq-item.open .faq-answer {
  display: block;
}

/* スマホ */
@media (max-width: 768px) {
  .faq-question {
    font-size: 14px;
    padding-right: 40px;
  }
}


/*=業者===========================*/
.business-sec {
background: linear-gradient(
  135deg,
  #6f4f3a,
  #3b2a1f
);
	  position: relative;
	overflow: hidden;
}
.business-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/texture.jpg) no-repeat center/cover;
  opacity: 0.08; /* ←ここで強さ調整 */
  pointer-events: none
}
/* 本文 */
.business-sec .sec-ttl-line h2{
	color:#F3E3D8
}
.business-sec .sec-ttl-line::before,.business-sec  .sec-ttl-line::after {
    content: "";
    flex: none;
    width: 25%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(58, 36, 28, 0.6), transparent);
}
.business-sec p {
  font-size: 15px;
  line-height: 2;
  color: #fff;
  margin-bottom: 20px;
}

/* ポイントリスト */
.biz-pointwrap {
	background-color:#3a241c; 
	border-radius: 6px;
	padding: 2rem 25px .5rem;
	color: #f1ead9;
	box-shadow: 4px 4px 10px rgb(209 185 155 / 30%);
	list-style: none;
	position: relative;
	overflow: hidden;
}
.biz-point{
	width: 60%;
	padding-right: 5%;
}
.biz-pointimg{
	position: absolute;
	width: 45%;
	height: 100%;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.biz-pointimg img{
	width: 100%;
	object-fit:contain;
	object-position: center;
	opacity: 0.65;
	filter: brightness(0.9) contrast(1.1);
}
.biz-pointimg::before{
	position: absolute;
	content: '';
	width: 40%;
	height: 100%;
	background: linear-gradient(to right,#3a241c,transparent);
	z-index: 2;
}

.biz-point li {
	margin-bottom: 8px;
	padding:10px ;
	padding-left: 40px;
	position: relative;
	border-bottom: 1px dotted #eee;
}
.biz-point li::before {
  content: '◆';
  position: absolute;
left: 10px;
	top: 8px;
	color: #EFD169;
	font-size: 20px;
	
}


/* 最後の線消す */
.biz-point li:last-child {
  border-bottom: none;
  margin-top: 30px;
  background: rgba(0,0,0,.50);
	margin-left: -25px;
	padding: 15px 15px 15px 40px;
}
.biz-point li:last-child::before{
	  content: '';
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #f8f5f0;
  border-radius: 8px;
	box-shadow: 4px 4px 10px rgb(209 185 155 / 30%);
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 26px;
  letter-spacing: 0.1em;
}

/* 行 */
.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  border-bottom: 1px solid #e5e0d8;
  padding-bottom: 20px;
}

/* 左ラベル */
.form-label {
  width: 220px;
  color: #333;
}

/* 必須 */
.form-label.required::after {
  content: "必須";
  font-size: 11px;
  background: #b22222;
  color: #fff;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 3px;
}

/* 右入力 */
.form-input {
  flex: 1;
}

/* 入力 */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

/* フォーカス */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8b6f47;
  outline: none;
}

/* テキストエリア */
.contact-form textarea {
  min-height: 160px;
}

/* ラジオ横並び */
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.privacy-check{
  display: flex;
  gap: 20px;	
	justify-content: center;
}
.privacy-check input {
  margin-right: 6px;
	width: 15px;
}
/* ボタン */
.form-btn {
  text-align: center;
  margin-top: 40px;
}
.radio-group input {
  margin: 0;
	margin-right: 8px;
	width: 15px;
}
.form-btn button {
  background: #8b6f47;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
.form-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f1eee8;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}
/* =========================
   SP対応
========================= */
@media (max-width: 768px) {

  .form-row {
    flex-direction: column;
  }

  .form-label {
    width: 100%;
    margin-bottom: 8px;
  }
	.form-input {
		width: 100%;
	}

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

}

/*プライバシーポリシー*/
.privacy_wrap{
	margin: 80px auto 30px;
	max-width: 980px;
}
.privacy li{
}
.privacy_wrap{
	
}
.privacy_wrap .privacy_subject{
	text-align: center;
	cursor: pointer;
	margin: 0 auto;
	font-size: 1.3rem;
	padding-bottom: 10px;
	letter-spacing: 0.1em;
	font-weight: 600;
	display: block;
	border-bottom: 1px dotted #8b6f47;
	
}


.privacy_wrap .privacy_subject:hover{
	text-decoration: none;
}
.privacy_wrap .privacy_subject.area_close{
}

/*アコーディオンで現れるエリア*/
.privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background-color: #f8f5f0;
	margin-top: 5px;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #433c2e;
}


/*業者向け取引中止中*/
.biz-stop-notice{
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 24px 30px;
  border: 1px solid #d9c7b1;
  background: #fff8f1;
  text-align: center;
  border-radius: 10px;
}

.biz-stop-notice p{
  margin: 0;
  line-height: 2;
  color: #6b4d32;
}

.biz-stop-notice p:first-child{
  font-size: 1.8rem;
  font-weight: 700;
}


button:disabled{
  opacity: .5;
  cursor: not-allowed;
}