@charset "UTF-8";
/*濃いオレンジ#C76805/濃いブルー：#2B4968/薄いブルー：#F0F3FA*/
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(80px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
/*----------------------------------------- 共通 -----------------------------------------*/
body{
	
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	line-height: 1.8;
	letter-spacing:0.06em;

}
h1{
	font-size: 24px;
	font-weight: 600;
  font-style: normal;
}
h2{
	font-size: 20px;
	font-weight: 500;
  font-style: normal;
	padding-bottom: 8px;
}
span99{
	display: inline-block;
}
span{
	font-size: 16px;
}
span1{
	font-size: 20px;
}

/*----------------------------------------- 共通横幅 -----------------------------------------*/

.inner{
	max-width: 1200px;
	margin: 0 auto;
}
.inner2{
	max-width: 1200px;
	margin: 0 auto;
}

/*---------------  非表示  ---------------*/
.mv-sp {
    display: none;
}
/*slider*/
	.m-slider{
		display: none;
	}
/*---------------  TOP画像  ---------------*/
.mv {
    width: 100%;
}

.mv img{
    display: block;
	width: 100%;
	position: relative;
	object-fit: cover;
	
}
/*---------------------------右下固定ボタン---------------------------*/
/*.box {
  width: 150px;
  height: 150px;
	border-radius: 50%;
  background: #1B5A5B;
  position: fixed;
  bottom: 50px;
  right: 50px; 
}*/
.fixed_btn{
  position: fixed;
  bottom: 20px; 
  right: 20px;
  padding: 30px 40px;
	z-index: 9999;
	border-radius: 50%;
  background-color: rgba( 199, 104, 5, 0.8 );
	box-shadow: 0 8px 32px 0 rgba( 249, 130, 6, 0.3 );
	backdrop-filter: blur( 5.5px );
	-webkit-backdrop-filter: blur( 5.5px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.fixed_btn p{
	color: #fff;
	line-height: 1.2em;
	letter-spacing: 0.2em;
	font-weight: 500;
	font-style: normal;
}
.cart img{
	width: 36px;
	padding-top: 5px;
	margin: auto;
    display: block;
}
/*---------*/

/* 共通設定 */
/* セクション全体の高さ固定 */
/*#mv {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}


.mv-pc,
.mv-mobile {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


.mv-pc img,
.mv-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}*/
/*----------------------------------------- top終了 -----------------------------------------*/

/*----------------------------------------- ページ内ボタン -----------------------------------------*/
.nav-flex{
	display: flex;
	margin: 16px auto 0;
}
.nav-flex a{
	text-decoration: none;
	color: #000;
	font-size: 20px;
}

/*----------------------------------------- fair -----------------------------------------*/
#fair{
	padding: 0 16px;
}
.fair-flex{
	margin: 16px auto 40px;
	display: flex;
	align-items: center;
}
.fair-waku{
	padding: 20px;
	border: solid 1.5px #000000;
}
.fair-font{
	width: 60%;
}
.fair-photo{
	width: 40%;
}
.fair-photo img{
	padding-left: 16px;
	max-height:  260px;
	width: auto;
	display: block;
}

/*----------------------------------------- fair終了 -----------------------------------------*/


/*----------------------------------------- DRURY-text -----------------------------------------*/
#DRURY-text{
	background-image: url("../img/product-back.webp");
	width: 100%;
	padding: 80px 0;
	  background-size: cover;      /* 背景画像を全体にフィットさせる */
  background-repeat: no-repeat;/* 繰り返しなし */
  background-position: center; /* 中央に配置 */
}
.DRURY-text-detail{
	background-color: rgba(255,255,255,0.80);
	padding: 48px 24px;
	color: #2B4968;
	max-width:min(90%, 800px);
	margin: 0 auto;
}
.DRURY-text-detail p{
	font-weight: 500;
}


/*----------------------------------------- 商品一覧 -----------------------------------------*/
#product{
	padding:64px 0 ;
	background-color: #2B4968;
}
.product-grid{

  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/ /* PCは3列 */
	grid-template-columns: repeat(auto-fit, 370px);
  gap: 10px 16px;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
}
/*.product-card {
  width: 350px;
  border: 2px solid #e5e9f0;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px auto;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	flex-direction: column; 
  justify-content: space-between; 
}

.product-image img {
  width: 100%;
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

.product-info {
  padding: 15px 20px;
}*/
/* ▼ 商品カード（高さ揃え用） */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e5e9f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

/* ▼ 画像調整 */
.product-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 15px;
  display: block;
}

/* ▼ テキスト部分を縦の残りスペースに収める */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 10px;
}

.product-desc {
  flex-grow: 1;
}

.product-drink {
  font-weight: bold;
  margin: 10px 0 64px;
  font-size: 14px;
  text-align: left;
	min-height: 64px; /* ← 高さを統一（内容に合わせて調整可） */
  align-items: flex-end; /* テキストを下揃えにしたい場合 */
}

.product-meter{
	width: 100%;
	margin: 16px auto 48px;
}
.product-meter img{
	max-width: 330px;
	height: auto;
	display: block;
}
/*
.rating{
	padding-bottom: 48px;
}
.rating p {
  font-size: 14px;
  text-align: left;
  margin: 8px 0;
}
.dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
}

.dot.fill {

}*/

.btn-buy {
  display: block;
  background: #d87a27;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 4px;
  margin-top: auto;
  font-size: 14px;
	border: solid 2px #d87a27;
	transition: 0.4s;
}

.btn-buy:hover{
	background: #fff;
  color: #d87a27;
}
.under-line{
	position: relative;
  display: block;
  margin: 0 auto 32px;
	text-align: center;
}
.under-line::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 50%;
  transform: translateX(-50%);
}

/*.product-detail{
	display: flex;
  flex-direction: column;
justify-content: space-between;
  height: 100%; 
  min-height: 700px; 
  padding: 16px;
  border: solid 1px #000000;
  box-sizing: border-box;
}
.product-detail h2{
	color: #2B4968;
}

img.product-photo{
	height: 300px;
	display: block;
  margin: 0 auto;
  width: auto;
}
.product-meter{
	padding: 24px 0;
}
img.product-meter{
	width: 340px;
	display: block;
  margin: 0 auto 64px;
  height: auto;
}
.recommend{
	padding: 8px 0;
	font-weight: 700;
}
.btn{
	margin-top: auto;
  display: flex;
  justify-content: center;
}

.btn a{
	border: solid 1.5px #C76805;
	display: inline-block;
  padding: 8px 32px;
  background-color: #C76805;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.5s;
}
.btn a:hover {
  background-color: #fff;
	color: #C76805;
}*/
/*----------------------------------------- 商品一覧終了-----------------------------------------*/

/*----------------------------------------- DRURY特長 -----------------------------------------*/
#feature{
	background-color:#F0F3FA ;
}
.feature {
	padding: 64px 10px;
}
.feature-flex{
	margin-top: 32px;
	display: flex;
	align-items: center;
	background-color: #fff;
	 border: 1px solid gray;
	padding: 24px 24px;
}
.feature-flex-detail-photo{
	width: 40%;
}
.feature-flex-detail-text{
	width: 60%;
}
.feature-flex-detail-photo img{
	max-width:  300px;
	display: block;
	margin: 0 auto;
}

/*----------------------------------------- DRURYとは -----------------------------------------*/
#company{
	background-color: #2B4968;
	/*margin: 0 0 64px;*/
}
.company{
	padding: 72px 0;
	color: #fff;
}
.company h1{
	padding: 0px 0 0 16px;
}
.under-line2{
	position: relative;
  margin: 0 auto 32px;
}
.under-line2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 2%;
}
.company-flex{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
}
.company-text{
	width: 55%;
	
}
.company-photo{
	width: 45%;
	margin: 0 auto;
}
.company-photo img{
width: 80%;        /* 基本は80％表示 */
  max-width: 450px;  /* 最大でも450px */
  height: auto;      /* 縦横比を保持 */
  display: block;    /* 中央寄せする場合は下とセット */
  margin: 0 auto;    /* 中央寄せ */
}


/*----------------------------------------- おいしい紅茶のいれ方 -----------------------------------------*/
.visual {
  background-color: #9f9f9f;
  margin-bottom: 60px;
}
.tea-detail-slider{
	padding: 30px 0;
}
.tea-detail-slider h2{
	text-align: center;
}
.tea-detail p{
	max-width: 800px;
	margin: 0 auto;
}
/**/
.slider{
	max-width: 700px;
	margin: 0 auto;
}
.slider-2 .slick-slide {
  width: 600px;
  height: 400px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-2 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2B4968;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 200px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-2 .slick-next {
  right: 0;
}
.slider-2 .slick-prev {
  left: 0;
}
.slider-2 .slick-next::before {
  left: 20px;
}
.slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-2 .slick-dots {
  text-align: center;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}
/*----------------------------------------- よくあるご質問 -----------------------------------------*/
#question{
	/*margin: 30px 0 0;*/
	background-color: #ececec;
}
.question{
	padding: 64px 0;
}
.question-text{
	width: 70%;
	margin: 24px auto;
}
.thinunder-line{
	position: relative;
  margin: 0 auto 8px;
}
.thinunder-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
	position: absolute;
	bottom: -8px;
}

/*----------------------------------------- footer -----------------------------------------*/
.footer{
	margin-top: 16px;
	text-align: center;
	padding: 16px 0;
}
.footer img{
	width: 150px;
}
.footer p{
	font-size: 12px;
}


/*---------------------------1200px---------------------------*/
@media screen and (max-width: 1200px) {
    /* 1200px以下に適用されるCSS */
/*----------------------------------------- ページ内ボタン -----------------------------------------*/
.nav-flex{
	display: flex;
	margin: 12px auto 0;
}
.nav-flex a{
	text-decoration: none;
	color: #000;
	font-size: 18px;
}
	/*----------------------------------------- top -----------------------------------------*/
/* PCとモバイルの表示切り替え */
.mv-pc {
  display: block;
}
.mv-mobile {
  display: none;
}	
}


/*---------------------------レスポンシブ959px---------------------------*/
@media screen and (max-width: 959px) {
    /* 959px以下に適用されるCSS（タブレット用） */

	/*共通*/
	.inner{
	max-width: 750px;
	margin: 0 auto;
}
	.inner2{
	max-width: 95%;
	margin: 0 auto;
}
/*----------------------------------------- ページ内ボタン -----------------------------------------*/
.nav-flex{
	display: flex;
	margin: 12px auto 0;
}
.nav-flex a{
	text-decoration: none;
	color: #000;
	font-size: 18px;
}
/*----------------------------------------- top -----------------------------------------*/
/* PCとモバイルの表示切り替え */
.mv-pc {
  display: block;
}
.mv-mobile {
  display: none;
}

/*#mv {
  width: 100%;
	max-height:  450px;
  position: relative;
  overflow: hidden;
}


.mv-pc,
.mv-mobile {
  width: 100%;
  position: relative; 
	height: 450px; 
}


.mv-pc img,
.mv-mobile img {
  width: 100%;
  height: auto; 
  display: block;
}*/
/*---------------------------右下固定ボタン---------------------------*/
.fixed_btn{
  position: fixed;
  bottom: 10px; 
  right: 10px;
  padding: 25px 32px;
	z-index: 9999;
	border-radius: 50%;
  background-color: rgba( 199, 104, 5, 0.8 );
	box-shadow: 0 8px 32px 0 rgba( 249, 130, 6, 0.3 );
	backdrop-filter: blur( 5.5px );
	-webkit-backdrop-filter: blur( 5.5px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.fixed_btn p{
	color: #fff;
	line-height: 1.1em;
	letter-spacing: 0.1em;
	font-size: 15px;
}
.cart img{
	width: 25px;
	padding-top: 5px;
	margin: auto;
    display: block;
}
	
	
	
/*----------------------------------------- fair -----------------------------------------*/
.fair-flex{
	margin: 10px auto 40px;
	display: flex;
	align-items: center;
	flex-direction:column-reverse;

}
.fair-waku{
	padding: 20px;
	border: solid 1.5px #000000;
}
.fair-font{
	width: 100%;
}
.fair-photo{
	width: 100%;
}
.fair-photo img{
	padding-left: 0px;
	max-height:  300px;
	width: auto;
	display: block;
	margin: 0 auto;
}
/*----------------------------------------- 商品一覧 -----------------------------------------*/
#product{
	padding:64px 0 ;
	background-color: #2B4968;
}
.product-grid{

  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/ /* PCは3列 */
	 /*grid-template-columns: repeat(2, 1fr);*/
	grid-template-columns: repeat(auto-fit, 350px);
  gap: 10px 12px;
  justify-content: center;
  margin: 0 auto;
  padding: 0px;
}

/* ▼ 商品カード（高さ揃え用） */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e5e9f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 16px;
}

/* ▼ 画像調整 */
.product-image img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 15px;
  display: block;
}

/* ▼ テキスト部分を縦の残りスペースに収める */
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 10px;
}

.product-desc {
  flex-grow: 1;
}

.product-drink {
  font-weight: bold;
  margin: 10px 0 48px;
  font-size: 14px;
  text-align: left;
}

.product-meter{
	width: 100%;
	margin: 16px auto 48px;
}
.product-meter img{
	max-width: 100%;
	height: auto;
	display: block;
	
}
.btn-buy {
  display: block;
  background: #d87a27;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 4px;
  margin-top: auto;
  font-size: 14px;
	border: solid 2px #d87a27;
	transition: 0.4s;
}

.btn-buy:hover{
	background: #fff;
  color: #d87a27;
}
.under-line{
	position: relative;
  display: block;
  margin: 0 auto 32px;
	text-align: center;
}
.under-line::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 50%;
  transform: translateX(-50%);
}

/*----------------------------------------- 商品一覧終了-----------------------------------------*/
	
/*----------------------------------------- DRURY特長 -----------------------------------------*/
#feature{
	background-color:#F0F3FA ;
}
.feature {
	padding: 64px 0px;
}
.feature-flex{
	margin-top: 32px;
	display: flex;
	align-items: center;
	background-color: #fff;
	 border: 1px solid gray;
	padding: 16px 20px;
}
.feature-flex-detail-photo{
	width: 40%;
	
}
.feature-flex-detail-photo img{
	max-width:  260px;
	display: block;
	margin: 0 auto;
}	
.feature-flex-detail-text{
	width: 60%;
}
	.left-padding{
		padding-left: 16px;
	}
	.right-padding{
		padding-right: 16px;
	}
/*----------------------------------------- DRURYとは -----------------------------------------*/
#company{
	background-color: #2B4968;
	/*margin: 0 0 64px;*/
}
.company{
	padding: 48px 16px;
	color: #fff;
}
.company h1{
	padding: 0px;
}
.under-line2{
	position: relative;
  margin: 0 auto 32px;
}
.under-line2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 1%;
}
.company-flex{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
}
.company-text{
	width: 55%;
	
}
.company-photo{
	width: 45%;
	margin: 0 auto;
}
.company-photo img{
	width: 95%;        /* 基本は80％表示 */
  max-width: 450px;  /* 最大でも450px */
  height: auto;      /* 縦横比を保持 */
  display: block;    /* 中央寄せする場合は下とセット */
  margin: 0 auto;    /* 中央寄せ */
}
/*----------------------------------------- おいしい紅茶のいれ方 -----------------------------------------*/
.visual {
  background-color: #9f9f9f;
  margin-bottom: 60px;
}
.tea-detail-slider{
	padding: 30px 0;
}
.tea-detail-slider h2{
	text-align: center;
}
.tea-detail p{
	max-width: 720px;
	margin: 0 auto;
}
/*----------------------------------------- よくあるご質問 -----------------------------------------*/
.question-text{
	max-width:min(90%, 600px);
	margin: 24px auto;
}
}


@media screen and (max-width:767px) {
/*----------------------------------------- 共通横幅 -----------------------------------------*/

.inner{
	max-width: 90%;
	margin: 0 auto;
}
	.inner2{
	max-width: 100%;
	margin: 0 auto;
}
	
/*----------------------------------------- 非表示 -----------------------------------------*/
.mv {
        display: none;
    }

    .mv-sp {
        display: block;
		width: 100%;
    }
	.mv-sp img{
		width: 100%;
	}
	
	/*slider*/
	.pc-slider{
		display: none;
	}
	.m-slider{
		display: block;
	}
	
/*----------------------------------------- 共通コード -----------------------------------------*/
	.under-line{
	position: relative;
  display: block;
  margin: 10px auto 32px;
	text-align: center;
}
.under-line::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 50%;
  transform: translateX(-50%);
}
h1{
	font-size: 22px;
	font-weight: 600;
  font-style: normal;
}
h2{
	font-size: 18px;
	font-weight: 500;
  font-style: normal;
	padding-bottom: 8px;
}
/*----------------------------------------- ページ内ボタン -----------------------------------------*/
.nav-flex{
	display: flex;
	margin: 0px auto;
}
.nav-flex a{
	text-decoration: none;
	color: #000;
	font-size: 16px;
}
/*----------------------------------------- top -----------------------------------------*/
/* PCとモバイルの表示切り替え */
.mv-pc {
  display: none;
}
.mv-mobile {
	display: block;
}
/*---------------------------右下固定ボタン---------------------------*/
.fixed_btn{
  position: fixed;
  bottom: 10px; 
  right: 10px;
  padding: 18px 25px;
	z-index: 9999;
	border-radius: 50%;
   background-color: rgba( 199, 104, 5, 0.8 );
	box-shadow: 0 8px 32px 0 rgba( 249, 130, 6, 0.3 );
	backdrop-filter: blur( 5.5px );
	-webkit-backdrop-filter: blur( 5.5px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.fixed_btn p{
	color: #fff;
	line-height: 1.1em;
	letter-spacing: 0.1em;
	font-size: 13px;
}
.cart img{
	width: 25px;
	padding-top: 5px;
	margin: auto;
    display: block;
}
/*----------------------------------------- fair -----------------------------------------*/
#fair{
	padding: 0px;
}
.fair-flex{
	margin: 0px auto 40px;
	display: flex;
	align-items: center;
	flex-direction:column-reverse;
}
.fair-waku{
	padding: 16px;
	border: solid 1.5px #000000;
}
.fair-font{
	width: 100%;
}
.fair-photo{
	width: 100%;
}
.fair-photo img{
	padding-left: 0px;
	max-height:  100%;
	max-width:  300px;
	display: block;
	margin: 0 auto;
}

/*----------------------------------------- fair終了 -----------------------------------------*/
/*----------------------------------------- DRURY-text -----------------------------------------*/
#DRURY-text{
	background-image: url("../img/product-back.webp");
	width: 100%;
	padding: 56px 0;
	  background-size: cover;      /* 背景画像を全体にフィットさせる */
  background-repeat: no-repeat;/* 繰り返しなし */
  background-position: center; /* 中央に配置 */
}
.DRURY-text-detail{
	background-color: rgba(255,255,255,0.80);
	padding: 32px 16px;
	color: #2B4968;
	max-width:min(100%, 800px);
	margin: 0 auto;
}
.product-drink {
  font-weight: bold;
  margin: 10px 0 32px;
  font-size: 14px;
  text-align: left;
}
/*----------------------------------------- DRURY特長 -----------------------------------------*/
#feature{
	background-color:#F0F3FA ;
}
.feature {
	padding: 48px 0px;
}
.feature-flex{
	margin-top: 32px;
	display: flex;
	align-items: center;
	flex-direction:column;
	background-color: #fff;
	 border: 1px solid gray;
	padding: 16px 20px;
}
	.feature-flex.reverse{
		flex-direction:column-reverse;
	}
.feature-flex-detail-photo{
	width: 100%;
	
}
.feature-flex-detail-photo img{
	max-width:  300px;
	display: block;
	margin: 0 auto;
}	
.feature-flex-detail-text{
	width: 100%;
}
.left-padding{
		padding-left: 0px;
	}
	.right-padding{
		padding-right: 0px;
	}
/*----------------------------------------- DRURYとは -----------------------------------------*/
#company{
	background-color: #2B4968;
	/*margin: 0 0 48px;*/
}
.company{
	padding: 48px 16px;
	color: #fff;
}
.under-line2{
	position: relative;
  margin: 0 auto 32px;
}
.under-line2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #C76805;
	position: absolute;
	bottom: -8px;
	left: 1%;
}
.company-flex{
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
}
.company-text{
	width: 100%;
	padding-bottom: 16px;
}
.company-photo{
	width: 100%;
	margin: 0 auto;
}
.company-photo img{
	max-width:100%;
	
}
/*----------------------------------------- 商品一覧 -----------------------------------------*/
#product{
	padding:48px 0 ;
	background-color: #2B4968;
}
/*---------*/
/* ▼ 商品カード（高さ揃え用） */
.product-card {
  display: flex;
	max-width: min(90%, 400px);
	margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e5e9f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 18px;
}
.product-meter img{
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	
}
.product-grid {
    grid-template-columns: 1fr;
	gap: 10px 12px;
  justify-content: center;
  margin: 0 auto;
  padding: 0px;
  }
	
.reverse{
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
}
/*----------------------------------------- おいしい紅茶のいれ方 -----------------------------------------*/
/**/
.slider{
	max-width: 400px;
	margin: 0 auto;
}
.slider-3 .slick-slide {
  max-width:  400px;
  height: 400px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-3 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-3 .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2B4968;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 200px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-3 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 14px;
  transform: rotate(45deg);
}
.slider-3 .slick-next {
  right: 0;
}
.slider-3 .slick-prev {
  left: 0;
}
.slider-3 .slick-next::before {
  left: 13px;
}
.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 13px;
}
.visual {
  background-color: #9f9f9f;
  margin-bottom: 60px;
}
.tea-detail-slider{
	padding: 30px 0 0;
}
.tea-detail-slider h2{
	text-align: center;
}
.tea-detail p{
	max-width: 720px;
	margin: 0 auto;
}
/*----------------------------------------- よくあるご質問 -----------------------------------------*/
#question{
	/*margin: 48px 0 0;*/
	background-color: #ececec;
}
.question-text{
	
	margin: 24px auto;
}
.question{
	padding: 48px 0;
}
}