@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

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


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");



/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
    --primary-color: #003f8e;		/*テンプレートのメインまたはアクセントカラー*/
    --primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/
    --secondary-color: #ff6633;		/*マークのカラー*/
    --secondary-inverse-color: #fff;	/*上のsecondary-colorの対となる色*/
}


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


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body * {box-sizing: border-box;}

body {
	margin: 0;padding:0;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	font-size: 14px;	/*文字サイズ*/
	background: #fff;	/*背景色*/
	color: #474a4d;			/*文字色*/
	line-height: 2.0;		/*行間*/
	animation: opa1 0.5s 0.2s both;	/*0.2秒の間だけ非表示にし、その後0.5秒かけてフェードイン表示*/
	
}

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

/*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 {font-size: 1rem;}
section + section {padding-top: 1vw;}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #474a4d;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	text-decoration: none;
}

/*マウスオン時*/
a:hover {
	color: #777;/*文字色*/
	text-decoration: none;
}

.link-blue {
    color: #003f8e;
    font-weight: bold;
    text-decoration: none;
}
.link-blue:hover {
    color: #739ae6;
}



/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1300px;				/*最大幅。これ以上広がりません。*/
	padding: 0 3vw 0 3vw;　　　　　　　/*上下、左右へのコンテナー内の余白。100vwが画面幅100%の事。*/
	display: flex;					/*flexを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: flex-start;  	/*並びかたの種類の指定*/
	margin: 0 auto;
	margin-bottom: 0;				/*下余白をなくす*/
	padding-bottom: 0;				/*下の内側余白をなくす*/
	border-bottom: 1px solid transparent; /*  これを追加してマージンの折り重なりを防止 */
	box-sizing: border-box;            /* 内側余白を含めてサイズ計算 */
}




/*ヘッダー
---------------------------------------------------------------------------*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 100;
	margin: 0;
	padding: 0 20px; /* 左右余白のみ */
	border-bottom: 1px solid transparent; /* マージン折り重なり防止 */
}

/*ロゴ*/
header #logo img {display: block;
}
header #logo {
	margin: 20 0 20 0px;		/*上下、左右へのロゴの外側にとる余白*/
	width: 350px;	/*幅*/
}


/* メニューブロック初期設定 */
/* メニューをデフォルトで非表示 
---------------------------------------------------------------------------*/
#menubar {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* menubar直後のスライダーに上余白をつける */
#menubar + .slider,
#menubar + section.slider {
  margin-top: 20px;  /* ← 隙間を調整。0にすれば密着 */
  padding-top: 0;
}

/* header 直下の #menubar の間に余白が出ないようにする */
header + #menubar {
	margin-top: 0 !important;      /* ← ヘッダーとの間の余白をゼロに */
	padding-top: 0 !important;
}


/* スライダー内の画像ズレ防止 */
.slider {
	line-height: 0; /* ← これも追加。画像下の1px隙間を防ぐ */
}


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

/* スライダーとmenubarの間の余白 */
.swiper,
.swiper-container {
  margin-top: 30px !important;
  padding-top: 0 !important;
  position: relative;
  top: 0;
  z-index: 1;
}


/* 画面幅が大きい場合、#menubarを表示 */
.large-screen #menubar { 
    display: block;
}

/* 小さな画面ではdisplay-blockクラスを付与してメニューを表示 */
.small-screen #menubar.display-block { 
    display: block;
}

/* ハンバーガーメニューの初期状態で非表示 */
#menubar_hdr.display-none { 
    display: none;
}

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

/* ドロップダウンの親メニューのカーソル表示を変更 */
a.ddmenu { 
    cursor: default;
}

/* 画面幅900px以上の場合、ハンバーガーメニューを非表示にする */
@media (min-width: 900px) {
    #menubar_hdr {
        display: none; /* 大きい画面ではハンバーガーメニューを非表示 */
    }
    .large-screen #menubar {
        display: block; /* 大きな画面では通常のメニューバーを表示 */
    }
    .small-screen #menubar {
        display: none; /* 小さな画面ではメニューバーは非表示 */
    }
}




/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー内の小文字*/
#menubar ul li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズを70%に*/
	opacity: 0.7;		/*透明度。色を70%だけ出す。*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
.large-screen #menubar > nav > ul {
	display: flex;	/*横並びにする*/
	gap: 10px;		/*メニュー同士の間にあけるマージン的な余白*/
	justify-content: space-between;
	position: relative;	/*ドロップダウンの幅となる基準を作っておく*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	text-align: center;	/*テキストをセンタリング*/
}
.large-screen #menubar a {
	position: relative;	/*下線の幅となる基準を作っておく*/
}

/*下線（通常時）*/
.large-screen #menubar > nav > ul > li > a::after {
	content: "";
	position: absolute;left: 0px;bottom: 0px;
	width: 100%;
	height: 3px;		/*これが下線の高さになります*/
	background: #ddd;	/*下線の色*/
	transition: 0.5s;	/*色が変わるまでの時間。0.5秒。*/
}

/*下線（マウスオン時）*/
.large-screen #menubar > nav > ul > li > a:hover::after,
.large-screen #menubar > nav > ul > li.current > a::after {
	background: var(--primary-color);	/*下線の色。css冒頭で指定しているprimary-colorを読み込みます*/
}



/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
border-radius: 0 !important;　/*枠線の角丸をなくす*/
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
	overflow: hidden;	/*簡易clearfix*/
}

/*ドロップダウンメニュー一個あたり*/
.large-screen #menubar ul ul li,
.small-screen #menubar ul ul li {
	border-radius: 0 !important;　/*枠線の角丸をなくす*/
	display: flex;
	align-items: center;
	float: left;		/*左に回り込みます*/
	margin-left: 3rem;	/*左に空けるスペース。メニュー間のスペースです。*/
}

/*ドロップダウン内のサムネイル画像*/
.large-screen #menubar ul ul li img,
.small-screen #menubar ul ul li img {
	width: 20px;
	margin-right: 0.3rem;
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
	width: 100%;
	left: 0px;
	background: #fff;
	padding: 1vw;
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: #fff;			/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #474a4d;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}
/* 印刷時に非表示にする */
@media print {
    #menubar .sh {
        display: none;
    }
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	right: 30px;			/*右からの配置場所指定*/
	top: 30px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}
/* スマホ用メニュー（最初は非表示） */
#menubar {
    display: none;
}


/*お問い合わせのボタン
---------------------------------------------------------------------------*/
/*ボタンブロック*/
header .btn {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex; 
	align-items: center;
	margin: 0 10px;
}

/* ボタン１個あたり */
header .btn li a {
	display: block;
	text-decoration: none;
	background: #fff; /* 背景を白に */
	color: #474a4d; /* 青文字 */
	border: 1.5px solid #003f8e; /* 青い枠線 */
	padding: 0.5rem 3.5rem;
	transition: all 0.3s ease; /* ホバー時のアニメーション */
}

/* ホバー時の効果 */
header .btn li a:hover {
	background: #003f8e; /* 背景を青に */
	color: #fff; /* 文字色を白に */
}
/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {

header .btn {
		display: none;	/*ボタンを非表示に*/
	}

	}

/*list全体にマウスを乗せた時の背景色
---------------------------------------------------------------------------*/
main.column .list,
.sub-contents .list {
    overflow: hidden;
    transition: background 0.3s;
    border: none;
}

/* hover 背景 */
main.column .list:hover,
.sub-contents .list:hover {
    background: #fff;
}

/* hover 画像透過 */
main.column .list:hover img,
.sub-contents .list:hover img {
    opacity: 0.6;
    transition: opacity 0.3s;
}

/*list　左に開きをつくる
---------------------------------------------------------------------------*/

.catalog-list {
    margin-left: 20px; /* この要素だけ左に20px */
}


/*main
---------------------------------------------------------------------------*/
main {
    flex: 1;
    padding-bottom: 60px; /* 下への余白 */
}

/* h2(見出し)要素 */

main h2.big {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 1rem 0; /* 下に1rem分の余白を追加 */
    color: #474a4d; /* 最初の文字以外の文字の色をダークグレーに設定 */
    line-height: 1.2;
    padding-bottom: 0.2rem; /* 下線との余白を少なくする */
}

main h2.big::first-letter {
    color: #003f8e; /* 最初の文字 'N' の色を濃紺に変更 */
}


main h2 {
    color: #474a4d;
    border-bottom: 2px solid #ddd; /* 下線の幅、線種 */
    padding-left: 1rem; /* 左側の余白 */
    padding-right: 1rem; /* 右側の余白 */
    line-height: 1.7;

}

/* normalクラスを指定した場合のh2要素 */
main h2 {
  margin-top: 40px; /* 上に40pxの空間を作る */
}

main h2.normal {
  position: relative;
  padding: 0rem 1rem;
  border-bottom: 2px solid #777;
}

main h2.normal .small-text {
  font-size: 0.8em; /* 親要素の80%の文字サイズ */
}


/*centerクラスを指定した場合のh2要素*/
main h2.center {
	font-size: 2rem;		/*文字サイズを２倍*/
	font-weight: normal;	/*太さを標準*/
	border: none;			/*上のborder-bottomをなしに*/
	text-align: center;		/*テキストをセンタリング*/
}


/*h3(見出し)要素*/
main h3 {
	padding-left: 1rem;		/*左側の余白*/
	padding-right: 1rem;	/*右側の余白*/
}

/*p(段落)要素*/
main p {
	padding-left: 1rem;		/*左側の余白*/
	padding-right: 1rem;	/*右側の余白*/
}

/*メインコンテンツ内のbox1
---------------------------------------------------------------------------*/
main .box1 {
	width: 65%;
	margin: 0 auto;
  background: #fff;/*背景色*/
  padding: 0.5em 1.5em 0.5em 1.5em;/*ボックス内の余白*/
  border: solid 1px  #999;/*線の種類 太さ 色*/
}
.box1 p {
    margin: 0; 
    padding: 0;
}



/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 50px;	/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;					/*横並びにする*/
		 width: 100%; /* 幅を100%に設定 */
		justify-content: space-between;	/*並びかたの種類の指定*/
		gap: 2rem;						/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}
	
	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		width: 77%; /* 幅を77%に指定 */
		order: 2;		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 23%; /* 幅を23%に指定 */
	}
	
	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;	/*並び順。数字の小さい順番に表示されます。*/
	}
	
	/*2つ目のsub-contents*/
	.sub-contents:nth-child(3) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}
	
	}


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	width: 100%; 
	margin: 0;
	font-size: 13px;	/*文字サイズ*/
	text-align: center;
	background: #ddd;
	padding: 0.5rem 0;
	margin: 0 0 1rem 0;
}

/*サブメニュー設定
---------------------------------------------------------------------------*/
/* サブメニューブロック全体 */
.submenu {
    padding: 0;
    margin: 0 0 1rem;   /* 上に0、左右に0、下に1remの余白 */
	border-top: none;  /* 上の線を消す */
}

/* メニュー1個あたり */
.submenu a {
    display: block;
    text-decoration: none;
    padding: 0.5rem 1rem;   /* 上下0.5rem、左右に1remの余白 */
}

/* マウスオーバー時のスタイル */
.submenu a:hover {
    background-color: #e6e6fa; /* うすいパープル */
    color: #474a4d; 
}
/* 一番上の項目に上の線を追加 */
.submenu > li:first-child {
    border-top: 1px solid #ccc;  /* 上線を表示 */
}

/* メニュー1個あたり（子メニュー以外） */
.submenu > li {
    border-bottom: 1px solid #ccc;  /* 下線のみ表示 */
}

/* 子メニュー */
.submenu li li a {
    padding-left: 2rem;   /* 左に余白を追加 */
}

/* h3見出しの下に続くサブメニューの上の線をなくす */
.sub-contents h3 + nav .submenu {
    border-top: none;
}
/* 選択中のカテゴリーのスタイル */
.submenu a.active {
    background-color: #e6e6fa; /* うすいパープル */
    color: #474a4d; /* マウスオーバー時と同じ色 */
}

/* 選択中カテゴリーにマウスオーバーしても色を維持 */
.submenu a.active:hover {
    background-color: #e6e6fa; /* 固定の背景色 */
    color: #474a4d; /* 固定の文字色 */
}

/* 印刷時のスタイル調整 */
@media print {
  /* サブメニューのフォントサイズを半分に */
  .submenu {
    font-size: 60%; /* フォントサイズを50%に */
    width: 50%; /* 幅も半分に設定 */
  }

  /* サブメニューのボーダーを半分に */
  .submenu li {
    border-bottom: 0.6x solid #ccc; /* 下線を半分の太さに */
  }

  /* 画像のサイズを半分に */
  .sub-contents img {
    width: 50%; /* 画像の幅を50%に */
    height: auto; /* 高さは自動調整 */
  }

  /* サブメニューのボーダーの上線を半分に */
  .submenu > li:first-child {
    border-top: 0.6px solid #ccc; /* 上線を半分の太さに */
  }

   /* リストアイテムのサイズを調整 */
  .submenu li a {
    padding: 0.25rem 0.5rem; /* リンクのパディングを半分に */
  }

  /* <h3> タイトルのフォントサイズを半分に */
  h3 {
    font-size: 60% !important; /* フォントサイズを強制的に縮小 */
    width: 50% !important; /* 幅を強制的に縮小 */
    border-bottom: 1px solid #ccc !important; /* ボーダーも強制適用 */
  }
}

/* お知らせのページ 
---------------------------------------------------------------------------*/
.news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

/* ページネイション
---------------------------------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 25px;
  font-size: 16px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  text-decoration: none;
  color: #474a4d; /* グレー */
  transition: color 0.3s;
}

.pagination a:hover {
  color: #777; /* ホバーで濃いグレー */
}

.pagination a.active {
  color: #ddd; /* 現在ページは青色 */
  font-weight: bold;
}

.pagination .prev,
.pagination .next {
  font-weight: normal;
  color: #777;
}

.pagination .prev:hover,
.pagination .next:hover {
  color: #777;
}





/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding: 0 3vw;		/*上下、左右へのフッター内の余白*/
	margin-left: -3vw;	/*containerのpaddingの影響で外側に余白ができるので、相殺する。*/
	margin-right: -3vw;	/*containerのpaddingの影響で外側に余白ができるので、相殺する。*/
}

/*リンクテキスト*/
footer a {
	text-decoration: none;
	color: inherit;
}

/*マウスオン*/
footer a:hover {
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}

/*copyright*/
#copyright {
	font-size: 0.8rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 10px;			/*余白*/
}

/*著作部分*/
footer .pr {display: block;}





/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;	/*横並びにする*/
	align-self: center;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
.icons i {
	font-size: 40px;	/*Font Awesomeのアイコンサイズ*/
}


/*新商品などのブロック
---------------------------------------------------------------------------*/
#new dl {
  padding: 0 50px; /* 左右の余白だけ確保 */
  margin: 0;        /* 必要に応じて上下余白を追加 */
}



/* お知らせ
---------------------------------------------------------------------------*/
.notice {
  max-width: 1300px;   /* 最大横幅 */
  margin: 2rem auto;      /* 上下余白＆中央寄せ */
  padding: 0;        /* 左右の余白 */
}

.notice h2 {
  display: flex;
  justify-content: space-between; /* 左右に振り分け */
  align-items: center;           /* 縦方向中央揃え */
  font-size: 1.5rem;
  margin: 1rem 0;
}

.notice h2 .notice-link {
  font-size: 0.8rem;           /* 小さめ文字 */
  color: #474a4d;              /* 好きなリンクカラーに */
  text-decoration: none;
	font-weight: 300;         /* 細い文字に */
	transition: color 0.2s ease;
}

.notice h2 .notice-link:hover {
  color: #777;          /* ホバー時にアクセントカラーへ変更 */
}

/* テーブル全体 */
.notice-table {
  width: 100%;
  border-collapse: collapse; /* セルの隙間をなくす */
}

/* 日付セル */
.notice-table .notice-date {
  width: 70px;        /* 日付の固定幅 */
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #474a4d;
  white-space: nowrap; /* 改行させず1行表示 */
  vertical-align: top;
}

.notice-table td {
  vertical-align: top; /* ← これがポイント：上揃えにする */
  padding: 0.5rem 1rem;
}

/* 内容セル */
.notice-table td:not(.notice-date) {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

/* 行の区切り（任意） */
.notice-table tr + tr {
  border-top: 1px solid #ddd;
}
.notice-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  white-space: nowrap;
  display: inline-block;
}

.tag-gray {
  background: #f5f5f5;
  color: #333;
  border-color: #ccc;
}




/* list-grid3, list-grid4 共通
---------------------------------------------------------------------------*/
/* listブロック全体を囲むブロック */
.list-grid3,
.list-grid4 {
    display: grid;
    gap: 1rem;
}

/* ボックス１個あたり */
.list-grid3 .list,
.list-grid4 .list {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.5rem;
    align-items: start;
}

/* テキスト共通 */
.list-grid3 .list .text,
.list-grid4 .list .text {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* 商品名リンク */
.list-grid3 .list .text a,
.list-grid4 .list .text a {
    text-decoration: none;
    color: inherit;
    display: block;
    font-size: 14px;
}

/* pタグ余白リセット（全要素リセットより安全） */
.list-grid3 .list p,
.list-grid4 .list p {
    margin: 0;
}

/* アイコン */
.list-grid3 .newicon, .list-grid4 .newicon {
    position: absolute;
    left: 3px; /* 左からの配置 */
    top: 10px; /* 上からの配置 */
    background: var(--secondary-color); /* 背景色 */
    color: var(--secondary-inverse-color); /* 文字色 */
    font-size: 0.7rem; /* 文字サイズ */
    width: 3em;
    line-height: 3em;
    border-radius: 50%;
    text-align: center; /* テキストをセンタリング */
}


/* list-grid3
---------------------------------------------------------------------------*/

/* 画面幅500px以上 */
@media screen and (min-width: 500px) {
    .list-grid3 {
        grid-template-columns: repeat(2, 1fr); /* 2列にする */
        gap: 0.3rem; /* 列と行の間隔 */
        row-gap: 1rem; /* 行間のスペース */
    }
}

/* 画面幅800px以上 */
@media screen and (min-width: 800px) {
    .list-grid3 {
        grid-template-columns: repeat(3, 1fr); /* 3列にする */
        gap: 0.3rem; /* 列と行の間隔 */
        row-gap: 1.5rem; /* 行間のスペース */
    }
}

/* ボックス１個あたり */
.list-grid3 .list {
    padding: 1rem; /* ボックス内の余白 */
    grid-template-rows: auto 1fr; /* １つ目（この場合はfigure要素のサイズ）は自動、２つ目（この場合はtextブロック）を残った幅で使う */
    align-content: start; /* グリッド全体を上部に揃える */
    display: flex; /* フレックスボックスを使用 */
    flex-direction: column; /* 縦方向に配置 */
    align-items: flex-start; /* 左上に揃える */
}

/* ボックス内のfigure画像 */
.list-grid3 .list figure img {
    margin-bottom: 0.3rem; /* 画像の下に空けるスペース */
}

/* list-grid4
---------------------------------------------------------------------------*/
/* 画面幅900px以上：4列 */
@media screen and (min-width: 900px) {
  .list-grid4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; /* 画像間を狭く */
  }

  .list-grid4 .list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
  }
}

/* 画面幅500px～899px：2列 */
@media screen and (min-width: 500px) and (max-width: 899px) {
  .list-grid4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .list-grid4 .list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* 画面幅499px以下：1列 */
@media screen and (max-width: 499px) {
  .list-grid4 {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .list-grid4 .list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ボックス１個あたり（共通） */
.list-grid4 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* .text */
.list-grid4 .list .text {
  width: 100%;
}

/* ボタンを横並び・左寄せに */
.shop-list {
  display: flex;
  flex-wrap: wrap;          /* 画面が狭くなったら改行 */
  justify-content: flex-start; /* 左寄せ */
  gap: 1rem;                /* ボタンの間隔 */
  margin-top: 1rem;
}

/* 各ボタンをブロック化 */
.shop-list .list {
  flex: 0 1 auto;
}

/* ボタンのデザイン */
.shop-list .btn_01 {
  display: inline-block; /* レイアウトのためにブロック化だけ指定 */
}

/* マウスオン時 */
.shop-list .btn_01:hover {
  background-color: #002f6e;
}

/* スマホ時（1列に） */
@media screen and (max-width: 500px) {
  .shop-list {
    flex-direction: column;   /* 縦並び */
    align-items: flex-start;  /* 左寄せのまま */
    gap: 0.8rem;
  }

  .shop-list .btn_01 {
    width: auto;              /* ボタン幅は自動 */
  }
}


/* 印刷時のスタイル */
@media print {
    /* 印刷時に3列を維持 */
    .list-grid3 {
        grid-template-columns: repeat(3, 1fr); /* 3列の設定 */
        gap: 1rem; /* 列と行の間隔 */
        row-gap: 1rem; /* 行間のスペース */
    }
    
    /* 印刷時に4列を維持 */
    .list-grid4 {
        grid-template-columns: repeat(4, 1fr); /* 4列の設定 */
        gap: 2rem; /* 列と行の間隔 */
    }

    /* その他印刷時のデザイン調整 */
    .list {
        border: none; /* 印刷時に枠線を消す */
        background-color: transparent; /* 背景色を消す */
        box-shadow: none; /* 印刷時に影を消す */
    }

    /* 画像の周りのスペースも調整 */
    .list figure img {
        margin-bottom: 0; /* 画像の下に余白が残らないようにする */
    }

    /* テキストの背景を透明にする */
    .text {
        background-color: transparent; /* 背景色を消す */
    }

    /* newiconを印刷時に再表示 */
    .newicon {
        display: inline-block; /* 印刷時にアイコンを表示 */
    }
}



/*トップページ　ボタンバナー
---------------------------------------------------------------------------*/
a.btn_01 {
	
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 2rem;
	font-weight: bold;
	border: 2px solid #003f8e;
	color: #474a4d;
	transition: 0.5s;
}
a.btn_01:hover {
	color: #fff;
	background: #003f8e;
}


/*ダウンロードボタン
---------------------------------------------------------------------------*/
.dl-btn {
  background-color: #474a4d;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  gap: 10px;
}

/* --- ダウンロードアイコン --- */
.dl-icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}

/* ▼ 縦の棒 */
.dl-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 10px;
  background: #fff;
  transform: translateX(-50%);
}

/* ▼ 下向き三角 */
.dl-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
  transform: translateX(-50%);
}

/* ▼ 受け皿（横棒） */
.dl-icon .tray {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 23px;      /* 横棒の長さ */
  height: 1px;      /* ★ 細くする */
  background: #fff;
  transform: translateX(-50%);
 }

/* ▼ 左右の縦棒（受け皿の足） */
.dl-icon .tray-left,
.dl-icon .tray-right {
  position: absolute;
  bottom: 0px;      /* 横棒の上に接続 */
  width: 1px;       /* ★ 細くする */
  height: 6px;      /* 縦棒の長さ */
  background: #fff;
 }

/* 左側 */
.dl-icon .tray-left {
  left: calc(50% - 12px);
}

/* 右側 */
.dl-icon .tray-right {
  left: calc(50% + 11px);
}

/* ▼ 縦線（矢印の軸） */
.dl-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;       /* 細め */
  height: 10px;
  background: #fff;
  transform: translateX(-50%);
}

/* ▼ 下向き矢印（三角） */
.dl-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff; /* 細め */
  transform: translateX(-50%);
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 800px;		/*最大幅*/
	margin: 0 auto 2rem;	/*ブロック要素を中央に配置。下に2文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	flex-wrap: wrap;			/*サムネイルが増えた際に自動で折り返す*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	align-items: center;		/*サイズ違いの画像が並んだ際に、天地の中央で揃えるようにする*/
	margin-bottom: 2rem;		/*下に空けるスペース。1文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 5px;		/*サムネイル間のスペース*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*商品ページで使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.back {
	text-align: center;
}

.back a {
	text-decoration: none;
	display: inline-block;
	padding: 0.5rem 2rem;       /* ボタン内の余白。上下、左右 */
	border-radius: 30px;        /* 角を丸くする指定 */
	background: #fff;           /* 背景色を白に変更 */
	border: 1px solid #333;     /* 黒の枠線を追加 */
	color: #000;                /* テキスト色を黒に */
	transition: background 0.3s; /* 背景色が変わるときのスムーズなアニメーション */
}

.back a:hover {
	background: #f0f0f0;        /* マウスオーバー時の背景色を薄めのグレーに */
}

.back a::before {
	font-family: "Font Awesome 6 Free"; /* Font Awesomeを使う指定 */
	content: "\f0d9";                  /* アイコン名をここで指定 */
	padding-right: 0.8em;              /* アイコンとテキストの間の余白 */
	font-weight: bold;                 /* この設定がないとアイコンが出ない場合があり */
	color: 474a4d;                       /* アイコンの色をグレーに */
	opacity: 0.5;                      /* アイコンの色を50%に */
}





/*お問い合わせの前に＆お問い合わせ窓口
---------------------------------------------------------------------------*/
.list2 {
    text-align: left; /* テキストを左揃え */
     padding: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto; /* 左右の余白を自動にしてセンタリング */
}

h5 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center; /* 見出しだけ中央揃え */
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
    gap: 20px;
}

.guide, .faq {
    flex: 1;
    background-color: #e6e6fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column; /* ボタンを下に固定するため */
}

/* 白背景のブロック用クラス */
    .white-bg-block {
        background-color: #fff; /* 背景色を白に設定 */
        padding: 15px; /* 内側の余白を追加 */
        margin-bottom: 20px; /* 下の要素と少し間隔を開ける */
    }

p {
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    color: #474a4d;
    background-color: #fff;
    padding: 10px 20px;
    border: 1px solid #474a4d;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: auto; /* ボタンを下端に固定 */
	text-align: center; /* 文字を中央揃え */
    display: flex; /* Flexboxで子要素を中央に配置 */
    justify-content: center; /* 横方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
}

.button:hover {
    background-color: #f0f0f0;
}


/* ボタン1つ用のボックス */
.single-box {
    display: flex;
    justify-content: center; /* 中央寄せ */
    align-items: center;
    margin-top: 0px;
}

/* 中身のブロック（guide/faqと同じデザインでOK） */
.single-content {
    background-color: #e6e6fa;
    padding: 20px;
    border-radius: 4px;
    width: 90%;
    max-width: 450px; /* 少し幅狭め */
    display: flex;
    flex-direction: column;
	    align-items: center; /* ★これで内部要素を中央寄せ！★ */

}
.button-small {
    padding: 10px 20px; 
}

/*list_bottleブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/

/* 3つのボックスを包む親要素 */
.list_bottle_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* 各ボックス */
.list_bottle {
  width: 32%;
  border: 1px solid #ccc;
  padding: 1.5%;
  box-sizing: border-box;
	
}

/*h4（見出し）タグの設定*/
.list_bottle h4 {
	color: #474a4d;		/*文字色*/
	font-size: 140%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	   margin: 4px 0 6px 0; /* 上4px、下6px */
    padding: 0;          /* 念のため padding もリセット */

}

/*p（段落）タグの設定*/
.list_bottle p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
}


/*楽天サイトのボタン
---------------------------------------------------------------------------*/
.cards {
    display: flex;           
    justify-content: flex-start; 
    gap: 2rem;            
    flex-wrap: wrap; 
	align-items: stretch; /* 追加 */
}

/* カード */
.card {
    width: 100%; 
    background: #ffffff;
    border: 1px solid #474a4d;
    padding: 2px;             
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;             /* 内部の隙間も少し狭く */
    min-height: 100px;        
}

/* カード＋説明文をまとめるラッパー */
.card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 1rem); /* 既存のカード幅をそのまま使用 */
    max-width: 350px;
}


/* 画像 */
.icon img {
    width: 100%;   
    height: auto;
    object-fit: cover;
}


/* タイトル */
.title {
    font-size: 14px; 
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;        /* 内部の隙間を shop-list に合わせる */
}

/* 説明文 */
.desc {
    color: #474a4d;
    font-size: 14px; 
    line-height: 1.4; 
    text-align: center;
	margin: 0.2 0 1rem 0;
    padding: 0 4px;  
}

/* 大きい楽天のボタン */
.cards--large .card-wrap {
    width: calc(50% - 1rem);
}

.cards--large .card {
    padding: 8px 12px;   /* 上下を詰める */
    min-height: auto;   /* 高さの固定を解除 */
}

.cards--large .title {
    font-size: 16px;
    line-height: 1.2;   /* 行間を詰める */
}

.cards--large .desc {
    margin-bottom: 0.5rem; /* 説明文の余白を縮小 */
}

/* スマホ対応 */
@media (max-width: 900px) {
    .cards {
        flex-direction: column;  
        align-items: center;     
        gap: 0.8rem; /* shop-list のスマホ時 gap に合わせる */
    }
    .card {
        width: 100%;             
        min-height: 160px;       
        padding: 12px;           
    }
    .icon img {
        width: 100%;
        height: auto;
    }
	.card-wrap {
        width: 100%;
    }
}




/*メイン画像スライドショー（slickを使用）
---------------------------------------------------------------------------*/

.swiper {
  margin-bottom: 2rem; /* h2との間に余白を作る */
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 78%;   /* デフォルトは60% */
  max-width: 1040px; /* 最大幅を制限 */
	
}

@media (min-width: 1200px) {
  .swiper-slide {
    flex: 0 0 65%;  /* 横幅広い場合は中央画像を少し小さくして左右チラ見せ増やす */
  }
}

@media (min-width: 1600px) {
  .swiper-slide {
    flex: 0 0 52%;  /* さらに広い画面では中央画像を小さめに */
  }
}

/* スマホ対応 */
@media (max-width: 900px) {
  .swiper-slide {
    flex: 0 0 100%;  /* 1枚表示 */
    max-width: 100%;
  }
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	width: auto;
	text-align: center;            /* センター揃え */
	font-weight: bold;             /* 太字に */
	font-size: 1rem;             
	padding: 0.2rem 1rem;          /* ボックス内の余白 */
	background: #fff;              /* 背景色を白に */
	color: #000;                   /* 文字色を黒に */
	border-bottom: 2px solid #474a4d; /* 下線を追加、太さ2px */
	margin-bottom: 2rem;           /* 下に2remの余白を追加 */
}

/* ta1テーブルの基本デザイン */
.ta1 {
    table-layout: auto;
    width: 80%; /* 幅 */
    margin: 0 auto; /* テーブルを中央に配置 */
    background: #fff; /* 背景色を白に設定 */
    border-collapse: collapse; /* セルの境界を統一 */
    border-spacing: 0; /* セル間の余白をなくす */
    border-bottom: none; /* テーブル全体の下ボーダーを削除 */
}

/* th, td のボーダー調整 */
.ta1 th, .ta1 td {
    padding: 10px; /* 余白 */
    border-bottom: 1px solid #474a4d; /* 行の下にボーダーをつける */
    text-align: left; /* 文字を左揃え */
    word-break: break-word; /* テキストを適切に折り返す */
    overflow-wrap: break-word;
}

/* ヘッダー部分のデザイン */
.ta1 th {
    background: #fff; 
    font-weight: bold; /* 強調 */
    border-bottom: 1px solid #474a4d; /* ヘッダー下の線を強調 */
    text-align: center; /* ヘッダーを中央揃え */
    border-top: none !important; /* 最初のthの上ボーダーを削除 */
}

/* 最初の行のボーダーを削除 */
.ta1 tr:first-child th {
    border-top-width: 0 !important;
}

/* th（左側）、td（右側）のボーダー調整 */
.ta1 th, .ta1 td {
    border-right: 1px solid #474a4d; /* 右ボーダーを適用 */
}

/* 最初の列（左側）のボーダーを削除 */
.ta1 th:first-child, .ta1 td:first-child {
    border-left: none !important;
}

/* 最後のセルの右ボーダーを削除 */
.ta1 td:last-child, .ta1 th:last-child {
    border-right: none;
}

/* 最後の行（最下部のボーダーを削除） */
.ta1 tr:last-child td, .ta1 tr:last-child th {
    border-bottom: none !important;
}


/* 画面幅900px以上の追加指定 */
@media screen and (min-width: 900px) {
	.ta1 th {
		width: 20%; /* 幅 */
	}
}


/*お問い合わせフォーム
---------------------------------------------------------------------------*/
/*ta2テーブル*/
.ta2 {
	width: 70%;
	table-layout: fixed;
	margin: 0 auto 30px; /* 左右のマージンを自動にしてセンタリング */
	background: #fff;	/*背景色*/
	color: #474a4d;
	border-collapse: collapse; /* 枠線が重ならないようにする */

}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #474a4d;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
    word-break: break-word; /* 長いテキストがセル内で改行される */
}
.ta2 th {
    width: 20%; /* 幅 */
    text-align: center; /* センタリング */
    font-weight: normal;
    background-color: #f0f0f0; /* 左側の背景色をグレーに設定 */
}

/* 入力フィールドを調整 */
input[type="text"] {
    width: 100%; /* 入力フィールドの幅を100%に設定して、テーブル幅に合わせる */
    padding: 4px;
    box-sizing: border-box; /* パディングがボックスの幅に含まれるように */
}


/*商品詳細の追加部分
---------------------------------------------------------------------------*/
.ta3 {
    width: 50%;
    margin-left: 70px;
    margin-bottom: 8px;
    background: #fff; /* 背景色 */
    border-collapse: collapse; /* セルの境界線を統一 */
}

.ta3, .ta3 td, .ta3 th {
    border: 1px solid #474a4d; /* テーブルの枠線の幅、線種、色 */
    line-height: 2;
}

/* テーブル内の左側（デフォルト） */
.ta3 th {
    width: 50%;
    padding: 5px;
    text-align: center;
    background: #ddd; /* デフォルトの背景色（グレー） */
}

/* 「オリジナル最低ロット」の th だけ青くする */
.ta3 th.original-lot {
    background: #003f8e;
    color: white;
}


/* テーブル内の右側 */
.ta3 td {
    padding: 5px;
    text-align: center;
}



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/	
}

			
			
 /*color-check（マーカー風スタイル）
---------------------------------------------------------------------------*/
.color-check {
	background: linear-gradient(transparent 70%, yellow 70%);
}


/*その他
---------------------------------------------------------------------------*/
.color-theme, .color-theme a {color: var(--primary-color) !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 {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.03);border: 1px solid #ccc; border-radius: 3px;word-break: break-all;}
.look2 {color:#fff;background: #ff6633;padding:5px;border-radius: 4px;}.clearfix::after {content: "";display: block;clear: both;}
.small {font-size: 0.7em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.right-align {float: right;}
.tight-spacing {
  margin-top: 2.0rem; /* 上の余白は大きく */
  margin-bottom: 0.1rem; /* 下の余白を小さく */
  line-height: 1.1; /* 行間を縮める */
}            
    



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

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

	}




