/******************************/
/* 佐藤追加 */
/******************************/

/******************************/
/* MADE IN JAPAN */
/******************************/
/* PC / SP 出し分け */

.madeinjapan-pc,
.madeinjapan-sp {
	max-width: 1280px;
	margin: 96px auto;
	padding: 0 max(16px, 2%);
}

/* デフォルトはPC表示 */
.madeinjapan-sp {
	display: none;
}

/* 767px以下で切り替え */
@media (max-width: 767px) {

	.madeinjapan-pc {
		display: none;
	}

	.madeinjapan-sp {
		display: block;
	}

}

/* =========================
   美咲蘭 バナーエリア
========================= */

.bisaran-banner-section{
	width:100%;
}

.bisaran-banner-inner{
	max-width:1280px;
	margin:96px auto;
	padding:0 max(16px, 2%);

	display:flex;
	gap:40px;              /* バナー間余白 */
}

.bisaran-banner-item{
	flex:1;
	display:block;
}

.bisaran-banner-item img{
	width:100%;
	height:auto;
	display:block;
}

/* SP */
@media screen and (max-width:768px){

	.bisaran-banner-inner{
		flex-direction:column;
		gap:30px;
	}

}
/* =========================
   セクションタイトル
========================= */

.section-heading{
	width:100%;
	padding:120px 20px 80px;
	background:#f6f6f4;
	text-align:center;
	box-sizing:border-box;
}

.section-heading-inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 10px;
	box-sizing:border-box;
}

.section-heading-title{
	display:block;                 /* ← 安定させる */
	position:relative;
	margin:0;
	font-size:32px;
	letter-spacing:0.2em;
	font-weight:400;
	font-family:"游明朝","Yu Mincho",serif;
	color:#222;
	padding-bottom:24px;
	line-height:1.6;
	text-align:center;
	word-break:keep-all;
	overflow-wrap:break-word;
}

/* 下線アクセント */
.section-heading-title::after{
	content:"";
	display:block;
	width:60px;
	height:1px;
	background:#999;
	margin:20px auto 0;            /* ← transform不要で中央 */
}

.section-heading-text{
	max-width:620px;
	margin:40px auto 0;
	font-size:16px;
	line-height:2.2;
	color:#444;
	text-align:center;
}


/* =========================
   SP
========================= */

@media (max-width:768px){

	.section-heading{
		padding:80px 20px 60px;
	}

	.section-heading-title{
		font-size:22px;
		letter-spacing:0.08em;
		line-height:1.7;
	}

	.section-heading-title::after{
		width:50px;
		margin:16px auto 0;
	}
}
@media (max-width:768px){

	.section-heading-text{
		font-size:14px;
		line-height:2;
		margin-top:30px;
	}

}

/* =========================
   アピールセクション
========================= */

.appeal-section{
	width:100%;
}

/* テキストエリア */

.appeal-text-area{
	max-width:900px;
	margin:120px auto 80px;
	padding:0 20px;
	box-sizing:border-box;
}

/* タイトル */

.appeal-title{
	font-size:34px;
	line-height:1.7;
	letter-spacing:0.2em;
	font-family:"游明朝","Yu Mincho",serif;
	margin:0 0 40px;
}

/* 本文 */

.appeal-text{
	font-size:16px;
	line-height:2.2;
	margin:0;
}

/* リンク */
.appeal-section a{
	display:inline-block;
	margin-top:30px;
	text-decoration:none;   /* ←アンダーライン消す */
	color:#333;
	font-size:15px;
	letter-spacing:0.1em;
}

/* 画像エリア */

.appeal-image{
	width:100%;
	height:auto;
	overflow:hidden;
}

.appeal-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

/* =========================
   SP
========================= */

@media (max-width:768px){

	.appeal-text-area{
		margin:80px auto 50px;
	}

	.appeal-title{
		font-size:24px;
		line-height:1.6;
	}

	.appeal-text{
		font-size:14px;
		line-height:1.9;
	}
  .appeal-image{
		height:220px;
	}


}
/* =========================
   國酒禊用アピールセクション
========================= */

.appeal-kokushu .appeal-title-wrap{
	display:flex;
	align-items:center;
	gap:16px;
	margin:0 0 40px;
}

.appeal-kokushu .appeal-title{
	margin:0;
}

.appeal-kokushu .appeal-subtitle{
	font-size:14px;
	letter-spacing:0.15em;
	color:#666;
}
.appeal-kokushu a{
	display:inline-block;
	margin-top:30px;
	text-decoration:none;   /* ←アンダーライン消す */
	color:#333;
	font-size:15px;
	letter-spacing:0.1em;
}
@media (max-width:768px){

	.appeal-kokushu .appeal-title-wrap{
		flex-direction:column;
		align-items:flex-start;
		gap:6px;
	}

	.appeal-kokushu .appeal-subtitle{
		font-size:12px;
	}

}

/* =========================
   自己紹介SHOP INFO
========================= */

.p-shop {
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
}

/* ===== 背景ボックス ===== */
.p-shop__container {
  background: #d9ded8;
  border-radius: 20px;
  padding: 120px 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* ===== 左テキスト ===== */
.p-shop__content {
  width: 55%;
  z-index: 2;
}

/* ===== 右画像ブロック ===== */
.p-shop__image {
  width: 38%;
  position: relative;
  transform: translate(80px, 0px); /* ←右＆上の調整 */
  z-index: 3;
}

.p-shop__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}
/* ===== SP対応 768px以下 ===== */
@media (max-width: 768px) {

  /* コンテナ */
  .p-shop__container {
    flex-direction: column;
    padding: 80px 20px;     /* ← 左右余白をここで統一 */
    border-radius: 0;
  }

  /* テキスト・画像共通 */
  .p-shop__text,
  .p-shop__image {
    width: 100%;
    transform: none;       /* ← PCのtranslate解除 */
  }

  /* 画像 */
  .p-shop__image {
    margin-bottom: 32px;   /* ← 画像→テキスト間の余白 */
  }

  .p-shop__image img {
    border-radius: 0;      /* ← スマホでは角丸なし（好み） */
  }

  /* テキスト内調整 */
  .p-shop__text-container {
    width: 100%;
  }

  .c-section-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .p-shop__description {
    font-size: 14px;
    line-height: 1.9;
    word-break: break-word;  /* ← はみ出し防止 */
  }

}

/* =========================
   コンセプト　日本製のいいものを
========================= */
.about-wrap {
	display: flex;
	align-items: center; 
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 120px 0;
}

/* 左：テキスト（50%） */
.about-text {
	width: 50%;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	line-height: 2.4;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;

	/* ★ ここがポイント */
	display: grid;
	align-content: center; /* ← 上下中央だけ */

	padding: 0 80px;
	box-sizing: border-box;
}

.about-text h2 {
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 0 48px;
	letter-spacing: 0.2em;
}

.about-text p {
	font-size: 15px;
	margin: 0;
	letter-spacing: 0.1em;
}

/* 右：画像（50%） */
.about-image {
	width: 50%;
}

.about-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
  border-radius: 12px;
}

/* ===== SP対応 ===== */
@media (max-width: 900px) {
	.about-wrap {
		flex-direction: column;
		padding: 60px 0;
	}

	.about-text,
	.about-image {
		width: 100%;
	}

	.about-text {
		writing-mode: horizontal-tb;
		padding: 0 20px;
	}

	.about-text h2 {
		margin: 0 0 20px 0;
    font-size: 22px;   /* ← 追加（好みで調整） */
	  line-height: 1.4;  /* ← ついでに整えると綺麗 */
	}

	.about-image img {
		min-height: auto;
		height: auto;
    border-radius: 0;
	}
}


/******************************/
/* TOP共通 */
/******************************/
.p-top-section {
  box-sizing: content-box;
  margin: 64px 0;

  @media screen and (min-width: 768px) {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}

.p-top-section__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-top-section__header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top-section__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}

.p-top-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  justify-content: center;
  gap: 32px 16px;
  width: 100%;

  @media screen and (min-width: 500px) {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 48px 24px;
  }

  @media screen and (min-width: 800px) {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.p-top-product-list__item {
  flex: 0 0 auto;
  display: flex;
}

/******************************/
/* スライドショー */
/******************************/
.p-main-slider {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
  }

  .bx-wrapper {
    border: none;
    box-shadow: none;
    margin-bottom: 0;

    .bx-viewport {
      border: 0;
      box-shadow: none;
      left: 0;
    }

    .bx-pager {
      box-sizing: border-box;
      padding-top: 0;
      padding-right: 25px;
      bottom: 45px;
      text-align: right;
      display: none;

      @media screen and (min-width: 768px) {
        display: block;
      }

      &.bx-default-pager a {
        margin-left: 5px;
        margin-right: 5px;
        background: #E9EDE8;

        &.active {
          position: relative;
          background: #505748;
        }

        &:hover {
          background: #CBDBD3;
        }
      }
    }
  }
}

/******************************/
/* インフォメーション機能 */
/******************************/
.p-top-news {
  margin: 16px 0;

  .splide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    overflow: hidden;

    @media screen and (min-width: 600px) {
      flex-direction: row;
      align-items: center;
      gap: 4px;
    }
  }

  .splide__track {
    display: flex;
    flex: 1;
    width: 100%;
  }

  .splide__list {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .splide__arrows {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    @media screen and (min-width: 600px) {
      align-self: center;
    }

    .splide__arrow {
      position: static;
      transform: translateY(0);
      background: transparent;
      width: 24px;
      height: 24px;
      transition: 0.3s ease;

      svg {
        width: 14px;
        height: 14px;
        fill: #728270;
      }
    }
  }

  .splide__arrow:hover:not(:disabled) {
    opacity: 1;
    background: #CBDBD3;
  }
}

.p-top-news__container {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 max(16px, 2%);

}

.p-top-news__header {
  display: none;

  @media screen and (min-width: 600px) {
    display: block;
  }
}

.p-top-news__body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.p-top-news-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  width: 100%;
  min-width: 0;

  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 16px;
    font-size: 14px;
  }

  a {
    text-decoration: underline;

    &:hover {
      opacity: 0.7;
    }
  }
}

.p-top-news-list__date {
  flex: 0 0 auto;
}

.p-top-news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/******************************/
/* ピックアップ */
/******************************/
.p-top-pickup {
  margin: 32px 0;

  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    &:not( .is-overflow ) {
      .splide__list {
        justify-content: center;
      }

      .splide__slide:last-child {
        margin: 0 !important;
      }
    }

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

.p-top-pickup__container {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-top-pickup__item {
  display: flex;
  align-items: center;
  justify-content: center;

  a {
    transition: 0.3s ease;

    &:hover {
      opacity: 0.7;
    }
  }

  img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {

	/* 画面幅いっぱい */
	.p-top-pickup__container {
		max-width: 100%;
		padding: 0 16px;
	}

	/* スライド機能を実質停止 */
	.splide-pickup .splide__track {
		overflow: visible !important;
	}

	.splide-pickup .splide__list {
		display: flex !important;
		flex-direction: column;
		gap: 12px;
	}

	.splide-pickup .splide__slide {
		width: 100% !important;
	}

	/* ページネーション消す */
	.splide-pickup .splide__pagination {
		display: none;
	}
}
/******************************/
/* コンセプト */
/******************************/
.p-concept {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 64px 0;

  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}

.p-concept__img {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  background-image: url(https://img21.shop-pro.jp/PA01521/074/etc_base64/bWl5YWJpLaWzpfOlu6XXpcgtMTQwMDEyMDA.jpg?cmsp_timestamp=20260224111445);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  @media screen and (min-width: 1024px) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 50%;
    min-height: 600px;
  }
}

.p-concept__text {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(16px, 2%);
  line-height: 2;
  text-align: center;

  @media screen and (min-width: 1024px) {
    padding: 80px 32px;
    width: 50%;
    max-width: 650px;
    max-height: 600px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
  }
}

.p-concept__title {
  margin: 0;
  font-size: 18px;
  font-weight: normal;

  @media screen and (min-width: 1024px) {
    font-size: 26px;
  }
}

/* 縦組みをやめたいときのバリエーション */
.p-concept--writing-mode-horizontal {
  .p-concept__text {
    writing-mode: horizontal-tb;
  }
}

/******************************/
/* 新着商品 */
/******************************/
.p-top-new-item {
  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

/******************************/
/* おすすめ商品 */
/******************************/
.p-top-highly-recommended {
  align-self: center;
  max-width: 100%;

  @media screen and (min-width: 500px) {
    max-width: 950px;
  }
}

/******************************/
/* 売れ筋商品 */
/******************************/
.p-top-seller-item {
  .splide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    .splide__slide {
      display: flex;
    }

    .splide__pagination {
      bottom: auto;
      left: auto;
      position: relative;
      transform: none;
      width: auto;
      padding: 0;

      .splide__pagination__page {
        background: transparent;
        border: 1px solid #728270;

        &.is-active {
          background: #728270;
        }
      }
    }
  }
}

/******************************/
/* フリースペース */
/******************************/
.p-top-free {
  max-width: 1280px;
  margin: 96px auto;
  padding: 0 max(16px, 2%);
}

/******************************/
/* 店舗情報 */
/******************************/
.p-shop {
  margin: 64px 0;

  @media screen and (min-width: 1024px) {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.p-shop__container {
  display: flex;
  flex-direction: column-reverse;

  @media screen and (min-width: 1024px) {
    flex-direction: row-reverse;
    align-items: center;
  }
}

.p-shop__text {
  background-color: #E9EDE8;
  width: 100%;
  padding: 48px 0;

  @media screen and (min-width: 1024px) {
    padding: 80px  0;
  }

  .p-shop__image + & {
    @media screen and (min-width: 1024px) {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      margin-right: -20%;
      padding: 80px 20% 80px 0;
    }

    @media screen and (min-width: 1800px) {
      display: flex;
      justify-content: flex-end;
      padding-right: 25%;
    }
  }
}

.p-shop__text-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p-shop__image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 280px;

  @media screen and (min-width: 1024px) {
    flex: 0 0 50%;
    height: auto;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media screen and (min-width: 1024px) {
      max-width: 820px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }

    @media screen and (min-width: 1640px) {
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }
  }
}

.p-shop__header {
  max-width: 600px;
  margin-inline: auto;
}

.p-shop__body,
.p-shop__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin-inline: auto;
  padding: 0 max(16px, 2%);
}

.p-shop__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
}


