@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yomogi&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("{resource_url}/style.css");
@import url("{resource_url}/inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #827C75;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ*/
	height: 100%;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1200px) {

	html, body {
		font-size: 14px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--primary-color);		/*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 60px;					/*ヘッダーの高さ*/
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 10vw;	/*ロゴの幅*/
	position: relative;z-index: 1;
	left: 4.5vw;	/*左からの配置場所*/
	top: 4vw;		/*上からの配置場所*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#logo {
		top: 0;			/*上からの配置場所*/
		width: 60px;	/*ロゴの幅*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 10vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニューのお問い合わせ
---------------------------------------------------------------------------*/
/* nav全体を横並び */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px; /* メニューと右側の間隔 */
}

/* ulは横並び */
.nav-inner ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* header-rightは電話とカート横並び */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.4;
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tel {
  font-size: 18px;
  font-weight: bold;
}

.time {
  font-size: 12px;
  color: #666;
}

.cart-btn {
  background: #727171;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
  margin-right: 150px;
}

.cart-btn:hover {
  background: #444;
}

/* ▼ スマホ版ヘッダー完全調整 ▼ */
@media screen and (max-width: 900px) {

  /* --- ヘッダー全体を最前面へ --- */
  header {
    position: relative;
  }

  /* --- スライドショーを背面へ --- */
  #svg-box {
    position: relative;
    z-index: 1 !important;
  }

  /* --- メニューのテキスト部分を非表示（ハンバーガー以外） --- */
  header nav ul {
    display: none !important;
  }

  /* --- 全体のレイアウトベース --- */
  .nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    padding: 0 5vw;
    overflow: visible !important;
  }

  /* --- ロゴ調整 --- */
  #logo {
    position: absolute;
    left: 4vw; /* ← 少し右へ（余白を均等に） */
    top: 40%; /* ← スライドショーに食い込まないように */
  }

  #logo img {
    max-height: 75px; /* ← ロゴを少し大きく */
    width: auto;
    height: auto;
    display: block;
  }

  /* --- 電話番号とカート位置調整 --- */
  .header-right {
    position: absolute;
    right: 2.5vw; /* ← もう少し右端へ寄せる */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .phone-info {
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
  }

  .phone-info .tel {
    font-weight: bold;
  }

  .cart-btn {
    font-size: 14px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* --- 不要な高さやズレ対策 --- */
  nav {
    position: relative;
    width: 100%;
  }

  header h1,
  header nav,
  .nav-inner,
  .header-right {
    box-sizing: border-box;
  }
}




/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 10vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態。*/
	padding: 0.3em 1em;				/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;				/*上に空けるスペース。ドロップダウン同士の隙間。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で冒頭のparimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;		/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);					/*文字色*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}



/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;		/*上からの配置場所*/
	right: calc(var(--space-small) + 5px);		/*右からの配置場所*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ。基本的にheaderの高さに合わせておけばOKです。*/
	padding: 20px 0;	/*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
    	z-index: 9999 !important;
}

/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
	mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 1.5px;			/*線の太さ*/
	background-color: #fff;	/*本来は線の色なのですが、mix-blend-modeを使っているので背後の色に合わせて変動します。変動したくないなら#menubar_hdrのmix-blend-modeの行を削除して下さい。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}





/*画面右側の側面にある縦長ボタン（オンラインショップ）
---------------------------------------------------------------------------*/
#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	/*右からの配置場所*/
	top: 20vw;	/*上からの配置場所*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	/*background: linear-gradient(#906f53, #6b5038);背景グラデーション*/
	background: linear-gradient(#ec9347, #d36b12);
	color: #f6ebd2;	/*文字色*/
	padding: 2rem 1rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px 0px 0px 3px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}

/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}



/*slide（トップスライドショー）
---------------------------------------------------------------------------*/
@charset "utf-8";


/*スライドショー
ここでは、16:9の画像比率（9÷16=0.5625）を読み込む指定を行なっています。
異なる画像比率にしたい場合、.slide-type1のpadding-topの数字を変更します。
---------------------------------------------------------------------------*/

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	/*スライドショーブロック内のsvg要素*/
	#svg-box svg {
		display: none;	/*ロゴが小さくなりすぎるので枠を消す*/
	}
	
	}/*追加設定ここまで*/


/*スライドショーボックス*/
#svg-box {
	flex-shrink: 0;
	padding: 0 var(--space-small);	/*上下、左右への余白。*/
	position: relative;
	overflow: hidden;
}

/*3枚の画像を囲むブロック*/
.slide-type1 {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*アスペクト比*/
	position: relative;
	clip-path: url(#myClip1);	/*SVG画像との紐付け*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#svg-box {
		border-radius: 10px;	/*svgを外すので、代わりに角丸の指定*/
	}
	
	}/*追加設定ここまで*/


/*３枚の画像の共通設定*/
.slide-type1 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。１枚が表示される時間はjsで指定できます。*/
}

/*以下は変更不要*/
.slide-type1 .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.slide-type1 .slide {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.slide-type1 .slide.active {
	pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}


/*現在表示中のボタン
---------------------------------------------------------------------------*/
/*全体*/
.slide-type1 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 10px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide-type1 .indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide-type1 .indicator.active {
    background: #000;
}


/*回転する円形のテキストアニメーション
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

/*サイズや場所の指定*/
.animation-text {
	position: absolute;z-index: 1;
	width: 30vw;		/*画像の幅*/
	right: -7vw;		/*右からの距離*/
	bottom: calc(-1 * var(--space-small));		/*下からの距離*/
}

/*アニメーションに関する指定*/
.spin {
	animation: spin 150s linear infinite;	/*150s（150秒）が１回転する速度です。お好みで変更して下さい。*/
}





/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 6vw 0 0;	/*上、左右、下への余白。画面幅100%＝100vwです。*/
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

/*h3見出し（共通）*/
main h3 {
	font-weight: 600;
	font-size: 1.4rem;	/*文字サイズ140%*/
}


/*Google Map　レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 50%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
.site-footer {
  background-color: #5E5C5A;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  text-align: left; /* PC時は左寄せ */
}

/* ロゴ・住所カラムを広めに */
.logo-column {
  flex: 2;              /* 他カラムの約2倍の幅 */
  min-width: 280px;     /* 潰れ防止のため少し広め */
}

/* 他カラムを少し狭める */
.footer-column:not(.logo-column) {
  flex: 0.8;            /* 他は少し細め */
  min-width: 160px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 8px;
}

.footer-subtitle {
  margin: 0 0 15px;
  font-size: 14px;
}

.footer-column p {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #fff;
  font-size: 13px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center; /* スマホ時は中央揃え */
    gap: 30px;
  }

  .footer-column {
    text-align: center;
    flex: unset; /* 幅指定を解除して縦並び */
    min-width: auto;
  }

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


/*h4見出し（CompanyとFollow Usのテキスト部分*/
footer h4 {
	font-weight: 200;	/*太さを細くする*/
	font-size: 1.2rem;	/*文字サイズを120%*/
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*list-c2（お問い合わせ、オンラインショップ）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/sample4.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/sample5.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*ボックス内のボタン（.btn2）*/
.list-c2 .list .btn2 a {
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態。*/
}

/*ボックス内のボタン（.btn3）*/
.list-c2 .list .btn1 a {
	text-shadow: none;	/*テキストの影を消す*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 700px;	/*最大幅*/
	margin: 0 auto;
}

/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 2rem;				/*上の余白*/
	padding-bottom: 2rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 4rem;			/*右の余白*/
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*faqブロック全体*/
.faq {
	background: #5E5C5A;	/*背景色*/
	color: #fff;			/*文字色*/
	position: relative;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq {
		display: flex;
		flex-direction: row-reverse;	/*左右の並びをデフォルトと逆に*/
		justify-content: space-between;
	}

	}/*追加指定ここまで*/


/*faq内のh2見出し*/
.faq h2 {
	margin: 0;padding: 0;
	font-size: 2rem;	/*文字サイズを2倍*/
	font-weight: 200;	/*文字を細く*/
	letter-spacing: 0.4em;	/*文字間隔を広くする*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*faq内のh2見出し*/
	.faq h2 {
		writing-mode: vertical-lr;	/*日本語は縦書き。英語は90度回転。*/
		margin-right: 18vw;	/*右側に画面18%程度のスペースを空ける。そこに英語の飾り文字を入れる為。*/
	}

	}/*追加指定ここまで*/


/*右側の英語の飾り文字*/
.faq h2 .kazari {
	line-height: 1;
	font-size: 0.9rem;	/*文字サイズ90%*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*右側の英語の飾り文字*/
	.faq h2 .kazari {
		font-size: 20vw;	/*文字サイズ*/
		position: absolute;
		right: 0px;
		top: var(--space-large);
    	color: rgba(255,255,255,0.05);	/*文字色。255,255,255は白のことで、0.05は色が5%出た状態。*/
	}

	}/*追加指定ここまで*/


/*質問*/
.faq dt {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-top: 1px solid rgba(255,255,255,0.2);	/*上の線の幅、線種、色。255,255,255は白のことで、0.2は色が20%出た状態。*/
	padding: 2rem 0 1rem 0;	/*上、右、下、左への余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq dt {
		padding: 2rem 2rem 1rem 2rem;	/*上、右、下、左への余白*/
	}

	}/*追加指定ここまで*/


/*回答*/
.faq dd {
	padding: 0 0 2rem 0;	/*上、右、下、左への余白*/
	font-size: 0.9rem;	/*文字サイズ90%*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq dd {
		padding: 0 2rem 2rem 2rem;	/*上、右、下、左への余白*/
	}

	}/*追加指定ここまで*/


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*左側のテキストブロック*/
	.faq .text {
		width: 50%;	/*幅*/
	}
	
	}/*追加指定ここまで*/



/*リスト（お客様の声）
---------------------------------------------------------------------------*/
.list-yoko-scroll-parts * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll-parts {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;    /* Firefox用 */
    scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
}
.list-yoko-scroll-parts::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll-parts .list-parts {
    width: 60%;        /*ブロック１個の幅。お好みで変更して下さい。*/
    flex-shrink: 0;
    scroll-snap-align: start;
    padding-right: 1rem;        /*ブロック内の右側に余白。1文字分。*/
    position: relative;
    display: flex;
    flex-direction: column;
}

    /*画面幅600px以上の追加指定*/
    @media screen and (min-width:600px) {

    /*ブロック内の１個あたり*/
    .list-yoko-scroll-parts .list-parts {
        width: 28%;        /*ブロック１個の幅。お好みで変更して下さい。*/
        padding-right: 2rem;    /*ブロック内の右側に余白。２文字分。*/
    }

    }/*追加指定ここまで*/


/*テキストブロック*/
.list-yoko-scroll-parts .list-parts .text-parts {
    flex: 1;
    font-size: 0.85rem;    /*文字サイズ85%*/
    line-height: 1.5;    /*行間*/
}

/*--- 横スクロールナビゲーションボタンの追加 ---*/

/* ボタンの親要素の基準設定 */
.design-section-wrapper {
    position: relative; 
}

/* スクロールボタンの共通スタイル */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    background: rgba(255, 255, 255, 0.7); 
    border: 1px solid #ccc;
    border-radius: 50%; 
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 左ボタン */
.prev-button {
    left: 10px; 
}

/* 右ボタン */
.next-button {
    right: 10px; 
}




/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #f7f7f7;	/*背景色*/
	padding: 10vw 5vw; 
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #f7f7f7;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（ソファー）*/
.box1 .illust1 {
	position: absolute;
	right: 20vw;	/*右からの配置場所*/
	top: 9vw;		/*上からの配置場所*/
	width: 13vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
}

/*ボックスの左上イラスト（キャビネット）*/
.box1 .illust2 {
	position: absolute;
	right: 4vw;		/*右からの配置場所*/
	top: 2vw;		/*上からの配置場所*/
	width: 13vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
}

/*テキストボックス*/
.box1 .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
    	margin-bottom: 3rem;
   	margin-top: 5vw;     /* textブロック全体を、装飾要素の高さ分だけ下にずらす */
}

/*画像を囲むブロック*/
.box1 .image {
    position: relative; /* 内部のabsolute配置の基準として必要 */
    margin-top: 3rem; /* テキストとの間に適切なスペースを空ける */
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
    width: 75%;
    position: relative; 
}

/*画像ブロック内の２枚目の写真への追加指定（重ね合わせを維持）*/
.box1 .image img:nth-of-type(2) {
    width: 40%;
    position: absolute; /* absoluteを維持 */
    right: 0;
    top: 35vw; /* 重ねる位置を維持 */
}



	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box1 > * {flex: 1;}

	/*ボックスの左上イラスト（ソファー）*/
	.box1 .illust1 {
		rignt: auto;
		left: 4vw;		/*左からの配置場所*/
		top: 1vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 10vw;	/*イラストの幅。*/
	}

	/*ボックスの左上イラスト（キャビネット）*/
	.box1 .illust2 {
		rignt: auto;
		left: 16vw;		/*左からの配置場所*/
		top: -8vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 6vw;	/*イラストの幅。*/
	}

	/*テキストボックスの上の小さなイラスト*/
	.box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.box1 .text {
        	margin-top: 0; /* PC版ではリセット */
		margin-bottom: 0;	/*下マージンのリセット*/
	}

    /* 画像を囲むブロック（PC版での調整）*/
    .box1 .image {
        margin-top: 0; 
        top: 5vw; /* 元々意図していた場所に戻るよう、この値を調整してください */
    }

    .box1 .image img:nth-of-type(1) {
        /* 何もリセットする必要なし */
    }

    /* 画像ブロック内の２枚目の写真への追加指定 (PC版での再設定) */
    .box1 .image img:nth-of-type(2) {
        position: absolute; /* PC版では絶対配置に戻す */
        right: 0;
        top: 25vw;
        margin-top: 0; /* スマホ版の余白をリセット */
    }

	}/*追加指定ここまで*/




/*list1（製品ブランドコーナー）
---------------------------------------------------------------------------*/
/*冒頭の大きなロゴの飾り*/
.logo-kazari {
	background: url("../images/logo_kazari.svg") no-repeat left top / 70%;	/*ロゴ画像の読み込み。左上に配置し、幅は70%。*/
}

/*１枚目の写真*/
.list1.image1 {
  background-image: url("https://www21.easy-myshop.jp/emsrsc/make-gift/res/banner3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);	/*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	/*下に空けるスペース。ボックス同士の隙間です。*/
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}
.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		/*幅*/
	height: 100%;
	color: #fff;	/*文字色*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*テキストブロック*/
	.list1 .text {
		width: 45%;		/*幅*/
	}

	}/*追加指定ここまで*/


/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
	margin-left: auto;
}

/*list1内のh3見出し*/
.list1 h3 {
	margin: 0.5;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 2rem;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.2;		/*行間を狭くする*/
	text-align:center;
}

/*list1内のh4見出し*/
.list1 h4 {
	margin: 0.2;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 1.2rem;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.3;		/*行間を狭くする*/
	text-align:left;
}



/* 背景画像つきのセクション */
.hero-section {
  position: relative;
  background-image: url("https://www21.easy-myshop.jp/emsrsc/make-gift/res/staff_banner.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;

  padding: 80px 20px;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
}


/* 半透明の黒いオーバーレイ */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 半透明の黒 */
  z-index: 0;
}

/* テキストエリア */
.hero-section .hero-text {
  position: relative; 
  z-index: 1;
  max-width: 900px;      /* テキストの横幅を制限 */
  margin: 0 auto;        /* セクション中央に配置 */
  text-align: left;      /* 左寄せ */
}

.hero-section h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
}

.hero-section h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero-section p {
  font-size: 1rem;
  line-height: 1.6;
}




/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/


/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
}

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-bottom: 3vw;
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 3vw;	/*下に空けるスペース*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	opacity: 0.5;	/*透明度50%*/
}


/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*上下、左右へのボタン内の余白*/
	margin-top: 2rem;		/*ボタンの上に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
}
/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover, .btn2 a:hover {
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*btn2への追加設定*/
.btn2 a {
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
	text-align: right;	/*テキストを右寄せ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
	content: "";
	background: url("https://www21.easy-myshop.jp/emsrsc/make-gift/res/arrow1.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;		/*下からの配置場所*/
	width: 50px;		/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
	height: 50px;		/*アイコンの高さ*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;		/*hover時に切り替えをなめらかにする*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
	background-color: var(--primary-color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
	color: #fff;	/*文字色*/
}
.btn3.white a::after {
	background: url("https://www21.easy-myshop.jp/emsrsc/make-gift/res/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
.btn3.white a:hover::after {
	background-color: #fff;				/*背景色を白に*/
	background-position: left center;	/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--primary-color);		/*背景色*/
	color: var(--primary-inverse-color);	/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--primary-color);	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--primary-color);	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #eee;	/*背景色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: #f0f0f0;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/


/*--------------------------------
 以下追加CSS
--------------------------------*/
/* 共通タイトル
---------------------------------------------------------------------------*/
.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #827C75;
  margin: 10px auto 0;
}

/* キャッチコピー
---------------------------------------------------------------------------*/
.image-grid-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title-top {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}



/* 商品ポイント
---------------------------------------------------------------------------*/
.product-feature {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}

.product-feature .subheading {
  font-size: 20px;
  color: #009cc0;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-feature .main-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.trouble-boxes {
  display: flex;
  justify-content: center; /* 中央揃えに */
  gap: 30px;                /* 吹き出し間の余白 */
  margin: 0 auto 60px;
  max-width: 900px;         /* セクション全体の最大幅 */
  padding: 0 20px;          /* 左右の余白（スマホ時に効く） */
  box-sizing: border-box;
}


.trouble-item {
  max-width: 250px;
}

.trouble-item img {
  width: 200px;
}

.speech {
  background: #f1f1f1;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  font-size: 14px;
}

.speech::after {
  content: '';
  position: absolute;
  bottom: -8px;     /* 丸の位置を下に */
  right: 30px;      /* 右下寄せ */
  width: 12px;
  height: 12px;
  background: #f1f1f1;
  border-radius: 50%;
}

.speech::before {
  content: '';
  position: absolute;
  bottom: -18px;
  right: 45px;
  width: 8px;
  height: 8px;
  background: #f1f1f1;
  border-radius: 50%;
}


.solution-intro .solution-tag {
  color: #009cc0;
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-heading {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}


.benefit-item {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 220px;  /* ← カードの最大横幅を揃える */
  justify-self: center;
}


.benefit-item:hover {
  transform: translateY(-4px);    /* ホバー時に浮くアニメ */
}

.benefit-item img {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}




/* Responsive */
@media (max-width: 768px) {
  .trouble-boxes,
  .benefits {
    flex-direction: column;
    align-items: center;
  }

}

/* そのお悩み
---------------------------------------------------------------------------*/

.solution-grid-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}

.section-subheading {
  font-size: 15px;
  color: #009cc0;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.section-main-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.solution-item {
  width: 220px;
  text-align: center;
  color: #333;
}

.solution-item img {
  width: 300px;
  height: auto;
  margin-bottom: 15px;
}

.solution-item h3 {
  font-size: 16px;
  color: #009cc0;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}

.solution-caption {
  font-size: 15px;
  font-weight: bold;
  color: #009cc0;
  margin-bottom: 8px;
}

.solution-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .solution-grid {
    flex-direction: column;
    align-items: center;
  }

  .solution-item {
    width: 90%;
    max-width: 300px;
  }
}


/* 選ばれる理由（当店）
---------------------------------------------------------------------------*/
.why-section {
  padding: 60px 20px;
  text-align: center;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  flex: 0 0 calc(33.333% - 30px); /* 3列表示 */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: left;
  box-sizing: border-box;
}

.why-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.1em;
  color: #009cc0;
  margin-bottom: 10px;
  text-align: center;
}

.why-card p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.5em;
}

/* スマホ対応：1列表示に切り替え */
@media (max-width: 768px) {
  .why-card {
    flex: 0 0 100%;
  }
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.list-half-parts .list-parts {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*ブロック内のh4見出し*/
.list-half-parts .list-parts h4 {
	font-size: 1.4rem;	/*文字サイズを1.4倍*/
}

/*画像ブロック共通*/
.list-half-parts .image-l-parts img, .list-half-parts .image-r-parts img {
	border-radius: 20px;	/*角を丸くする指定。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*２カラムを囲むブロック*/
		.list-half-parts .list-parts {
			flex-direction: row;			/*子要素を横並びにする*/
			justify-content: space-between;	/*並びかたの種類の指定*/
			align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
		}
		
		/*画像ブロック共通*/
		.list-half-parts .image-l-parts, .list-half-parts .image-r-parts {
			width: 50%;			/*画像の幅*/
		}
		
		/*画像を右に配置する場合*/
		.list-half-parts .image-r-parts {
			margin-left: 2rem;	/*画像の左側に空けるスペース*/
		}
		
		/*画像を左に配置する場合*/
		.list-half-parts .image-l-parts {
			order: -1;
			margin-right: 2rem;	/*画像の右側に空けるスペース*/
		}

		/*テキストブロック*/
		.list-half-parts .text-parts {
			flex: 1;
		}

	}/*追加指定ここまで*/



/* お問い合わせ案内
---------------------------------------------------------------------------*/
.contact-info-section {
  background-color: #f2f2f2;
  text-align: center;
  padding: 60px 20px;
  font-family: sans-serif;
}

.contact-note {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-phone {
  text-align: left;
  display: inline-block;
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  font-size: 20px;
}

.contact-number {
  font-weight: bold;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 0;      /* 下余白なし */
  line-height: 1.2;      /* 行間をきゅっと詰める */
}

.contact-phone .sub-text {
  font-size: 11px;
  color: #666;
  display: block;
  margin-top: -1px;      /* 電話番号との隙間をさらに縮める */
  margin-left: 28px;     /* アイコンの位置に揃える */
  margin-bottom: 10px;   /* 受付時間との間はゆとり */
  line-height: 1.2;      /* 読みやすい行間 */
}

.contact-hours {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 10px;       /* さらに余裕を出したいなら 8px くらいに */
}

.contact-button {
  display: inline-block;
  background-color: #ccc;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #999;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .contact-flex {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .contact-phone {
    text-align: left;
  }
}



/* 商品一覧
---------------------------------------------------------------------------*/
/* 商品一覧セクション */
.item-all-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.item-all-section-title {
  font-size: 22px; /* 他セクションと揃える */
  color: #00a4d6;  /* 他と統一 */
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #00a4d6;
}

/* グリッドレイアウト */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* 商品カード */
.product-card {
  background: #fff;
  padding: 0;
  text-align: left;
}

/* 商品画像 */
.product-card img {
  width: 100%;
  display: block;
}

/* 商品名（サイズ大きめ＋太字） */
.product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

/* アイコンエリア */
.product-icons {
  display: flex;
  flex-wrap: wrap;   /* 狭い画面では折り返し */
  gap: 6px;          /* アイコンの間隔 */
  margin: 8px 0;     /* 上下余白 */
}

/* 各アイコン（共通デザイン） */
.product-icons .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;         /* 高さを固定 */
  padding: 0 10px;      /* 左右の余白 */
  border-radius: 12px;  /* 角丸 */
  font-size: 13px;      /* 文字サイズ */
  font-weight: bold;
  color: #fff;
  line-height: 1;       /* 中央にくるように調整 */
  white-space: nowrap;  /* 折り返さない */
}

/* アイコンバリエーション */
.icon-hot {
  background-color: #fa8072; /* hot */
}

.icon-cold {
  background-color: #73b6fa; /* cold */
}

.icon-sports {
  background-color: #7389fa; /* sports */
}


/* 単価ラベル */
.price-label {
  background: #f2f2f2;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
}

/* 価格リスト */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  font-size: 13px;
}

/* 10個の下に破線 */
.price-list li.dashed {
  border-bottom: 1px dashed #aaa;
}

/* 価格部分（赤色） */
.price-list .price {
  color: #e60000;
  font-weight: bold;
}

/* 50個はサイズアップ */
.price-list li.highlight .price {
  font-size: 16px;
  color: #e60000;
  font-weight: bold;
}


/* 商品ページボタン（横幅いっぱい） */
.product-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px 0;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
  box-sizing: border-box;
  background: #fff;
}

.product-btn:hover {
  background: #f9f9f9;
}

.product-btn .arrow {
  font-size: 12px;
  margin-left: 6px;
}

/* カラーバリエーションコンテナ */
.product-colors {
    display: flex;
    justify-content: left; /* 中央揃え */
    align-items: center;
    min-height: 20px; /* カラー丸がない場合でも高さを少し確保 */
    margin-bottom: 10px;
    gap: 4px; /* 丸同士の隙間 */
}

/* 個々のカラー丸 */
.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%; /* 完全な丸にする */
    border: 1px solid #ccc; /* 丸と丸の境界を分かりやすくする（特に白系の場合） */
    box-sizing: border-box;
    cursor: default;
}



/* こんなシーンで
---------------------------------------------------------------------------*/
.scene-section {
  background-color: #fff;
  padding: 60px 20px;
  margin: 80px 0;
  text-align: center;
}

.section-heading {
  font-size: 1.6em;
  font-weight: bold;
  color: #009cc0;
  border-top: 2px solid #009cc0;
  border-bottom: 2px solid #009cc0;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 40px;
}

/* ← スマホ用の左右余白をここに統合！ */
.scene-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.scene-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.scene-card {
  background: transparent;
  text-align: left;
}

.scene-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.scene-point {
  font-size: 12px;
  font-weight: bold;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.scene-point::before,
.scene-point::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #000;
  vertical-align: middle;
  margin: 0 6px;
}

.scene-text {
  font-size: 16px;
  color: #111;
  line-height: 1.7;
}

/* ✅ スマホ用フォントサイズ調整 */
@media screen and (max-width: 768px) {
  .scene-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .scene-cards {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
}



/* 彫刻
---------------------------------------------------------------------------*/
.service-detail {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  overflow: visible;
}

.service-detail h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch; /* 高さを揃える */
  overflow: visible;
}

.service-card {
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* 中央揃え */
  justify-content: flex-start;
  text-align: center;
}

.service-subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.service-description {
  line-height: 1.8;
  font-size: 13px;
  margin-top: auto; /* 下に押しやらず、自然に配置 */
  text-align: left;
}

/* スマホでは縦並び */
@media screen and (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}



/* 2列スライドショー
---------------------------------------------------------------------------*/
.slide-thumbnail1-parts {
  overflow-x: hidden;
  margin-bottom: 2rem;
}

.slide-thumbnail1-parts .img-parts {
  display: flex;
  overflow: hidden;
  width: max-content; /* 必須 */
}

.slide-thumbnail1-parts .img-parts div {
  flex-shrink: 0;
  padding: 0 5px;
}

.slide-thumbnail1-parts .img-parts img {
  height: auto;
  width: 10vw; /* 画面幅の18%に調整 */
  object-fit: cover;
  display: block;
}

/* アニメーション設定 */
.slide-thumbnail1-parts .rtl-parts,
.slide-thumbnail1-parts .ltr-parts {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  display: flex;
}

.slide-thumbnail1-parts .rtl-parts {
  animation-name: slide-rtl-parts;
}

.slide-thumbnail1-parts .ltr-parts {
  animation-name: slide-ltr-parts;
}

@keyframes slide-rtl-parts {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slide-ltr-parts {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}





/* デザイン例
---------------------------------------------------------------------------*/
.card-section {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
  text-align: center;
}


/* グリッドレイアウト：1列3枚 × 2列 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列に固定 */
  gap: 2rem;
  max-width: 1200px;         /* 最大幅を指定して中央に */
  margin: 0 auto;            /* 中央揃え */
  padding: 0 1rem;           /* 左右余白 */
}

/* 各カード */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px; /* ← ここで角の丸さを調整 */
  padding: 1.2rem;
  height: 100%;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

/* カード内要素 */
.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 12px;
  font-weight: bold;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.card-title::before,
.card-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #000;
  vertical-align: middle;
  margin: 0 6px;
}

.card-text {
  flex-grow: 1;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 1rem;
  word-break: break-word;
}

/* ボタン右下揃え＋小さめ */
.card .fa-button {
  align-self: flex-end;
  margin-top: auto;
  font-size: 0.75rem;
  color: #333; /* ← ここで好きな固定色を指定 */
  padding: 0;
  border: none;
  border-bottom: 1px solid #333;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: 0.3s;
  cursor: pointer;
}

.card .fa-button:hover {
  color: #808080;
  border-bottom-color: #808080;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

  .card-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }
}



/*よくある質問一覧
---------------------------------------------------------------------------*/

/*--------------------------------
Q&A開閉するやつ
----------------------------------*/
.faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.faq-page h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.faq-page h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #000;
  margin: 10px auto 0;
}

.faq-page h3 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 2px #000;/*左線*/
  margin-top: 60px;
}

.faq-page-title {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  letter-spacing: 0.05em;
}

.faq-page-item {
  margin-bottom: 20px;
}

.faq-page-item input[type="checkbox"] {
  display: none;
}

.faq-page-label {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 10px;
  font-size: 1.2em;
  padding: 16px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: background 0.3s;
}

.faq-page-label:hover {
  background-color: #eeeeee;
}

.faq-page-icon-q {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 0.8em;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-page-toggle-icon::after {
  content: "＋";
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #999;
  transition: transform 0.3s;
}

.faq-page-item input[type="checkbox"]:checked + .faq-page-label .faq-page-toggle-icon::after {
  content: "－";
  color: #999;
}

.faq-page-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: -5px;
  padding: 0 16px;
}

.faq-page-item input[type="checkbox"]:checked ~ .faq-page-content {
  max-height: 500px;
  padding-top: 10px;
  padding-bottom: 16px;
}

.faq-page-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1em;
  line-height: 1.6;
}

.faq-page-answer a {
    display: inline-block; 
}

.faq-page-icon-a {
  background-color: #f44336;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.8em;
  text-align: center;
  line-height: 24px;
  flex-shrink: 0;
}

.faq-page-footer {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 16px;
  font-size: 1em;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}


/*--------------------------------
Q&Aスマホ対応
----------------------------------*/
@media screen and (max-width: 768px) {
  .faq-page {
    padding: 16px;
  }

  .faq-page h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .faq-page h3 {
    font-size: 16px;
    margin-top: 40px;
  }

  .faq-page-label {
    font-size: 1em;
    padding: 12px;
  }

  .faq-page-icon-q,
  .faq-page-icon-a {
    width: 20px;
    height: 20px;
    font-size: 0.75em;
    line-height: 20px;
  }

  .faq-page-toggle-icon::after {
    font-size: 1.2em;
    right: 16px;
  }

  .faq-page-answer {
    font-size: 1em;
    line-height: 1.5;
    flex-direction: column;
  }

  .faq-page-answer a {
    display: inline-block;
  }

  .faq-page-footer {
    font-size: 0.95em;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 12px;
  }
}



/* ご注文の流れ
---------------------------------------------------------------------------*/
/* セクション全体 */
.order-flow {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: sans-serif;
}

/* カードをグリッドで6列配置 */
.flow-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-items: center;
}

/* 各カード */
.flow-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

/* 番号 */
.flow-number {
  font-size: 20px;
  font-weight: bold;
  color: #0099b3;
  margin-bottom: 10px;
}

/* タイトル */
.flow-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* アイコン画像 */
.flow-icon {
  margin: 15px 0;
}

.flow-icon img {
  width: 150px;
  height: auto;
}

/* 説明文 */
.flow-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
}

/* スマホ対応（1列表示） */
@media screen and (max-width: 768px) {
  .flow-container {
    grid-template-columns: 1fr;
  }

  .flow-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}


/* 商品一覧ページ
---------------------------------------------------------------------------*/
/* 商品一覧ページ
---------------------------------------------------------------------------*/
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px; /* 余白をやや広め */
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.product-item {
  background: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 8px;
}

.product-item h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  margin: 2px 0;
}

.tags {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
  min-height: 48px; /* ← タグの高さを適度に固定（デブ化防止） */
  align-items: flex-start;
}

.tag {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  line-height: 1.4;
}

.tag.cold { background: #73b6fa; }
.tag.hot { background: #fa8072; }
.tag.sports { background: #7389fa; }
.tag.matome { background: #9370db; }

.lot {
  font-size: 13px;
  color: #555;
  margin-bottom: 0; /* ← 余白をほぼゼロに */
  flex-grow: 1; /* ← 下揃えに必要 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 常に下寄せ */
}

.price-line {
  position: relative;
  padding-bottom: 5px; /* ← 波線との間を詰める */
  margin-top: -2px; /* ← 最小ロットとの間を詰める */
  font-size: 13px;
  color: #555;
  text-align: left;
  margin-top: 0;
  flex-grow: 1; /* ← 下揃えに必要 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 常に下寄せ */
}

.price-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1.5px dotted #555; /* 少し細め＆軽め */
  opacity: 0.7;
}

.price {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.3;
}

.price span {
  font-size: 20px;
  color: #d70000;
  font-weight: bold;
  text-align: right;
}


/* ✅ スマホ対応 */
@media screen and (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 10px;
  }

  .product-item h3 {
    font-size: 13px;
  }

  .tag {
    font-size: 11px;
    padding: 2px 8px;
  }

  .price span {
    font-size: 16px;
  }
}





