@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/css?family=Noto+Serif+JP&display=swap');

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



/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #fbfbfa;		/*主にテンプレートの背景色*/
	--primary-inverse-color: #333;	/*primary-colorの対として使う色*/
	
	--accent-color: #333;			/*テンプレートのアクセントとなる色*/
	--accent-inverse-color: #fff;	/*accent-colorの対として使う色*/

	--accent-color-rgb: 51,51,51;	/*accent-colorをrgb数値にしたもの。個別に透明度を調整して使い回す為のものです。*/

	--global-space: 10vw;			/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


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


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


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

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

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

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

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

body {
	margin: 0;padding:0;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	line-height: 1.8em;
}


/*トップページの背景画像*/
body.home {
	background-image: url("../images/bg1.png");	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}

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

/*ul,ol*/
ul,ol {margin-left: 1.5rem;margin-bottom: 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%;}

/*sectionが続く場合*/
section + section {
	margin-top: 8vw;	/*sectionの上に空けるスペース*/
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: var(--primary-inverse-color);
	transition: 0.3s;
}
a:hover {
	opacity: 0.7;
}

a img:hover{
  filter: brightness(50%);
}

/*container（headerとcontentsを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: var(--global-space);
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header.home {
    margin-bottom: 10vw;
	text-align: center;
}

header {
    margin-bottom:  3vw;
	text-align: center;
}

/*ロゴ初期設定*/
#logo {margin: 0;padding: 0;}

/*トップページの縦書きロゴ*/
.home #logo img {
    width: 50px;	/*幅*/
}

/*トップページ以外のロゴ*/
#logo img {
	width: 100%;	/*幅*/
}


/*メッセージテキスト*/
header .message {
	margin: 5vw auto;	/*上下、左右*/
}

/*メイン画像（アスペクト比2:1の横長）*/
#mainimg {
	width: 100%;
	height: 0;
	padding-top: 50%;
	box-shadow: 5vw 5vw rgba(0,0,0,0.05);
	background: url('../photo/mainimg_yoko.jpg') no-repeat center center / cover;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーブロック（英語ページは除く）*/
	body:not(.en).home header {
		display: flex;
		justify-content: space-between;
		text-align: left;
	}
	
	/*トップページ以外のロゴ*/
	#logo img {
		width: 100%;	/*幅*/
	}

	/*ロゴ画像（英語ページは除く）*/
	body:not(.en).home #logo {
		align-self: flex-end;	/*下に配置*/
	}
	
	/*メッセージテキスト（英語ページは除く）*/
	body:not(.en) header .message {
		margin: 0;
		font-size: 1.5vw;
		align-self: center;
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
	}

	/*メイン画像（アスペクト比1:2の縦長）（英語ページは除く）*/
	body:not(.en) #mainimg {
		width: 30vw;	/*画像の幅*/
		height: 60vw;	/*画像の高さ*/
		box-shadow: 5vw -10vw rgba(0,0,0,0.05);	
		background: url('../photo/mainimg_tate.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
	}

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



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

/*上で非表示にしたメニューを表示させる為の設定*/
.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 5 Free";
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	font-size: 0.7rem;		/*文字サイズを70%に*/
	padding-right: 0.5rem;	/*右側に空ける余白。0.5文字分。*/
}


/*メニューブロック設定
---------------------------------------------------------------------------
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 70%;
	height: 100%;
	padding-top: 100px;	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	background: var(--accent-color);	/*背景色*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/

}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	padding: 1rem 3rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar li li a {
	background: var(--accent-inverse-color);	/*背景色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	color: var(--accent-color);	/*文字色。css冒頭で指定しているaccent-colorを読み込みます*/
}

/*小文字の英語部分*/
#menubar span {
	display: block;
	font-size: 0.7em;		/*文字サイズを親要素の70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
}

/*ドロップダウンブロック*/
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0px;		/*上からの配置場所*/
	left: 0px;		/*左からの配置場所*/
	width: 70px;	/*幅*/
	height: 68px;	/*高さ*/
	padding: 25px 20px;	/*上下、左右への余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;			/*線の太さ*/
	background-color: var(--accent-inverse-color);	/*線の色。css冒頭のaccent-inverse-colorを読み込みます。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#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);}



/*mainブロック
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	position: relative;
	text-align: center;
	margin: 0 0 6vw;		/*上、左右、下*/
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;

  padding: 1.5rem 2rem;
  border-top: 3px dotted #000;
  border-bottom: 3px dotted #000;
}

main h2.line-a {
	position: relative;
	text-align: center;
	margin: 0 0 6vw;		/*上、左右、下*/
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;

  padding: 1.5rem 2rem;
  border-top: 3px dotted #fff;
  border-bottom: 3px dotted #fff;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
     main h2 {
     font-size: 1.8rem;
     line-height: 1.6;
     padding: 0.4rem 1rem;
  }

     main h2.line-a {
     font-size: 1.8rem;
     line-height: 1.6;
     padding: 0.4rem 1rem;
  }

}/* end */


/*h3見出し*/
main h3 {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	font-weight: normal;
}


/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents, #footermenu {
	padding: 2rem var(--global-space);
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: rgba(var(--accent-color-rgb), 0.8);	/*背景色*/
	color: var(--accent-inverse-color);	/*文字色*/
}
#footer-contents a {
	color: inherit;
}

/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
	border: 2px solid var(--accent-inverse-color);
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	#footer-contents {
		display: flex;
		gap: 5vw;
	}
	
	/*左側のブロック*/
	#footer-contents .left {
		margin-bottom: 0;
		width: 50%;
	}
	
	/*右側のブロック*/
	#footer-contents .right {
		width: 50%;	
	}

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


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


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	font-size: 0.8rem;
	display: flex;	
	justify-content: space-between;
	align-items: flex-start;
}

#footermenu a {
	text-decoration: none;
	color: inherit;
}

#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 0.3em;
	flex: 1;
}

#footermenu .title {
	color: #ff6347;
	font-weight: bold;
	padding-bottom: 5px;
}


/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ*/
	background: #222;	/*背景色*/
	color: #ccc;		/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;			/*ボックス内の余白*/
}

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

/*著作部分*/
footer .pr {
        display: block;
	font-size: 0.4rem;
	color: #999;
}


/*フッター内QRコード
---------------------------------------------------------------------------*/
.wrap_QR {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item_qr {
  padding: 0px;
  width: 32%;
  background-color: #fff;
}

.item_qr h4 {
	font-size: 1rem;
	color: #333;
  text-align: center;
	margin: 0px;
}

.item_qr p {
	font-size: 1rem;
	color: #333;
  text-align: center;
}


/*画面右側の側面にある縦長ボタン（ご相談）
---------------------------------------------------------------------------*/
#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;}



.btn_blog {
	color: #75b46e;
	padding: 10px 50px;
	background: #fff;
	border: 2px solid #75b46e;
	border-radius: 50px;
	transition: all 0.5s;
}
.btn_blog:hover {
	color: #fff;
	background: #75b46e;
}
.btn_blog:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f0da";
	font-weight: 900;
	padding-left: 10px;
}

.news_btn {
	text-align: center;
	margin-top: 50px;
}
.news_btn a {
	color: #75b46e;
}


/* *************************************
/* ■ 背景 
***************************************/

/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: #333;
	color: #fff;
	padding: var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒のことで0.05は色が5%出た状態。*/
	color: #fff;
	padding: var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg3 h2の背景
---------------------------------------------------------------------------*/
.bg3 {
	background: #dddcd6;	/*絹鼠*/
	padding: 1.5rem;	
}

/* bg4背景 olivegreen 
-----------------------------------------------*/
.bg4 {
	background: rgba(0,0,0,0.05);	/*背景色。0,0,0は黒のことで0.05は色が5%出た状態。*/
	color: #fff;	/* fff */
	padding: var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}

/* bg6背景 olivegreen 
-----------------------------------------------*/
.bg6 {
	background: rgba(61,77,34, 0.8);	/* olivegreen */
	color: #fff;	/* fff */
	padding: var(--global-space);
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}

/* bg7背景 brown 
-----------------------------------------------*/
.bg7 {
	background: rgba(82,71,72, 0.8);	/* brown */
	color: #fff;	/* fff */
	padding: var(--global-space);	
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}

/* bg8背景 whitesmoke 
-----------------------------------------------*/
.bg8 {
	background: rgba(245,245,245, 0.8);	/* whitesmoke */
	color: #333;	/* 333 */
	padding: var(--global-space);	
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}



/* *************************************
/* ■ Flex Glid
***************************************/

/* Flex ご挨拶
左画像 右文字 スマホ上下 */
/* ======================================= */
.list-normal .list {
	padding: 2rem 0;
}

.list-normal .list figure {
	margin-bottom: 1rem;
}

.list-normal .list h4 {
	margin: 0;
	margin-bottom: 0.5em;
	font-size: 1.8em;
}

.list-normal .list p {
	margin: 0;
	font-size: 1.0em;
        line-height: 1.5;
}

/* PC 800px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
	@media screen and (min-width:800px) {
	
	.list-normal .list div {
		flex: 1;
	}

	.list-normal .list {
		display: flex;
		align-items: center;
                align-items: flex-start;
	}

	.list-normal .list figure {
		margin-bottom: 0;
		width: 40%;
		margin-right: 2rem;
	}

}/* end */


/*list-normal1 画像左右
---------------------------------------------------------------------------*/
.list-normal1 * {margin: 0;padding: 0;}

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

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}
	
	/*画像とテキストの左右を入れ替えたい場合*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
	}/*追加指定ここまで*/



.list-normal1 .list {
	background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px;
	color: #333;	
	padding: 1rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

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

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;
	}
	
	}/*追加指定ここまで*/



.list-normal1 figure {
	width: 100%;
	margin-bottom: 1rem;
}

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

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
	        width: 40%;	/*幅*/
		margin-bottom: 0;
	}

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


.list-normal1 h4 {
        color: #d2691e;
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

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

	.list-normal1 h4 {
		font-size: 1.6rem;
                font-weight: bold;
		line-height: 1.8;
	}

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


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

.list-grid1 .list {
    display: grid;
	margin-bottom: var(--global-space);
}

.list-grid1 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.list-grid1 .list {
	padding: 1rem;
	background: #fff;
	color: #111;
        grid-template-rows: auto 1fr auto;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.list-grid1 .list h4 {
        color: #d2691e;
	font-size: 1.1rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 0.4rem;	/*下に空けるスペース*/
}

.list-grid1 .list figure {
	margin: -1rem;	
	margin-bottom: 0.5rem;
}

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

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

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

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


/*list-grid2（2カラムボックス）おすすめ商品
---------------------------------------------------------------------------*/
.list-grid2 .list * {margin: 0;padding: 0;}

.list-grid2 .list {
    display: grid;
	margin-bottom: var(--global-space);
}

.list-grid2 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.list-grid2 .list {
	padding: 1rem;
	background: #fff;
	color: #111;
        grid-template-rows: auto 1fr auto;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.list-grid2 .list h4 {
        color: #d2691e;
	font-size: 1.1rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 0.4rem;	/*下に空けるスペース*/
}

.list-grid2 .list figure {
	margin: -1rem;	
	margin-bottom: 0.5rem;
}

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

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

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

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


/*おすすめ商品3個並び
---------------------------------------------------------------------------*/
.link_wrap3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item_link3 {
  padding: 0px;
  width: 30%;
  background-color: #fff;
}

.item_link3 h4 {
	font-size: 1rem;
	color: #fff;
  text-align: center;
	margin: 0px;
}

.item_link3 p {
	font-size: 1rem;
	color: #333;
  text-align: center;
}

/*おすすめ商品2個並び
---------------------------------------------------------------------------*/
.link_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item_link {
  padding: 0px;
  width: 48%;
  background-color: #fff;
}

.item_link h4 {
	font-size: 1rem;
	color: #fff;
  text-align: center;
	margin: 0px;
}

.item_link p {
	font-size: 1rem;
	color: #333;
  text-align: center;
}


/*Flex（３カラムボックス）ヤフーリンク
---------------------------------------------------------------------------*/
.flex_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item_3 {
  padding: 30px;
  width: 32%;
  background-color: #fff;
	border: 1px solid #ccc;
}

.item_3 h4 {
        color: #333;
	font-size: 1.0rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 0.4rem;	/*下に空けるスペース*/
}

@media not all and (min-width: 768px) {
  .item_3 {
    width: 100%;
  }

.item_3 h4 {
	font-size: 1.5rem;	/*文字サイズ200%*/
}

  .item_3:not(:last-child) {
    margin-bottom: 30px;
  }
}

/*Flex（３カラムボックス）ヤフーリンク
---------------------------------------------------------------------------*/
.flex_wrap2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item_3a {
  padding: 10px;
  width: 32%;
  background-color: #fff;
	border: 1px solid #ccc;
}

.item_3a h4 {
        color: #333;
	font-size: 1.0rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 0.4rem;	/*下に空けるスペース*/
}

.item_3a a {
        text-decoration: none;
}

@media not all and (min-width: 768px) {
  .item_3a {
    width: 100%;
  }

.item_3a h4 {
	font-size: 1.5rem;	/*文字サイズ200%*/
}

  .item_3a:not(:last-child) {
    margin-bottom: 30px;
  }
}


/*Flex（4カラムボックス）ヤフーリンク
---------------------------------------------------------------------------*/
/* 親要素(コンテナ) */
.container_4 {
  display: flex;
  justify-content: space-between;
}
/* 子要素(アイテム) */
.item_4{
    width: 25%;
  padding: 5px;


.item-img {
  padding: 0;
}
.item-img img{
  width:100%;
}  
.item-body {
  padding: 0;
}
.item-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #ee7800;
}
.item-body p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

}
/*レスポンシブ スマホは1列表示*/
@media screen and (max-width: 765px) {
	.container_4 {
		flex-direction: column;
	}
	.item_4 {
		width: 100%;
	}
}







/* *************************************
/* ■ お知らせ
***************************************/

.new {
	border-top: 1px solid #ccc;	/*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;	/*上、左右、下へのdd内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--accent-color);		/*背景色。css冒頭で指定しているaccent-colorを読み込みます*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	border-color: transparent;				/*枠線を出したくないので透明にする*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;	/*背景色*/
	color: #fff;		/*文字色*/
	border-color: transparent;	/*枠線を出したくないので透明にする*/
}

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

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

	/*日付(dt)設定*/
	.new dt {
		border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1rem;	/*dd内の余白*/
	}

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



/* *************************************
/* ■ table
***************************************/

/* table 会社概要 レスポンシブ */
/* ======================================= */
table{
  border-collapse: collapse;
  width: 100%;
}

.kaisya-gaiyou {
    width: 80%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin: 0 auto;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td{
    padding: 16px;
    font-weight: normal;
    border: 1px solid #ccc;
}
.kaisya-gaiyou th{
    color: #fff;
    background-color: #696969;    /* dimgray */
}
.kaisya-gaiyou td{
    background-color: #fff;
    color: #111;
}

@media screen and (max-width:768px){
.kaisya-gaiyou {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin: 0 auto;
}

    .kaisya-gaiyou th,
    .kaisya-gaiyou td{
        display: block;
        text-align: left;
        font-size: 1.5rem;   
    }
}

/*テーブル（ta2）商品説明
---------------------------------------------------------------------------*/

.ta2 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

.ta2 {
	table-layout: fixed;
	border: 1px solid #ccc;
	width: 100%;
	margin-bottom: 1rem;
}

.ta2 tr {
	border: 1px solid #ccc;	
}

.ta2 th, .ta2 td {
	padding: 0.5rem;
	border: 1px solid #ccc;
	word-break: break-all;	
	color: #fff;
}

.ta2 th {
	width: 30%;
	text-align: left;
}

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

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

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



/* *************************************
/* ■ 見出し付きボックス
***************************************/

/* 見出し付きボックス */
/* ======================================= */
.title-box3{
  margin: 1em 0;
  background-color: #fff;
  border: 2px solid #2f4f4f;
  letter-spacing: .3px;
}

.title-box3-title{
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background-color: #333;
  padding: 10px 6px;
  text-align: center;
  margin-bottom: 20px;
}

.title-box3 p{
  margin: 0;
  padding: 1em;
  color: #333;
}

/* *************************************
/* ■ ul li ol li 
***************************************/

/* ol li こんなお悩みありませんか
************************************************/
ol.nayami{
  counter-reset:list;
  list-style-type:none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

ol.nayami li{
  position:relative;
  line-height: 30px;
  margin: 7px 0 10px 40px;
  padding-left:10px;
  border-bottom:solid 1px #333;
      width: 70%;
}
ol.nayami li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -30px;
  width: 30px;
  height: 32px;
  background: #111; 
  text-align: center;
  color: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
 ol.nayami li{
  width: 100%;
  line-height: 1.5;
 }

ol.nayami li:before{
  left: -30px;
  width: 25px;
  height: 25px;
}

}/*End*/

ol.nayami2{
  counter-reset:list;
  list-style-type:none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

ol.nayami2 li{
  position:relative;
  line-height: 30px;
  margin: 7px 0 10px 40px;
  padding-left:10px;
  border-bottom:solid 1px #333;
      width: 70%;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

ol.nayami2 li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -30px;
  width: 28px;
  height: 28px;
  background: #333; 
  text-align: center;
  color: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
 ol.nayami2 li{
  width: 100%;
  line-height: 1.5;
 }

ol.nayami2 li:before{
  left: -30px;
  width: 25px;
  height: 25px;
}

}/*End*/


/* *************************************
/* ■ リンクボタン
***************************************/

/*btn_14（ボタン）
---------------------------------------------------------------------------*/
a.btn_14 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 3px solid #d2691e;
	color: #d2691e;
	background: #fff;
	font-size: 1.4rem;
	border-radius: 100vh;
	transition: 0.5s;
}

a.btn_14:hover {
	color: #fff;
	background: #333;
}

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

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
 a.btn_14{
	width: 100%;
	margin: auto;
	padding: 1rem 1rem;
 }


}/*End*/


/*button004（詳細を見る）
---------------------------------------------------------------------------*/
.button004 a {
    text-decoration: none;
    background: #fff;
    border: 3px solid #d2691e;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 90%;
    padding: 20px 10px !important;
    color: #d2691e;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin: 16px 10px 10px 20px !important;
}
.button004 a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    border-radius: 1px;
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: #d2691e;
    font-size: 1.5rem;
    transform: translateY(-50%);
}
.button004 a:hover {
    background: #ff4500;
    color: #FFF;
}

/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media only screen and (max-width: 768px) {
 .button004 a {
	width: 100% !important;
	font-size: 1.0rem;
 }

}/*End*/


/*sample_btn（詳細を見る）
---------------------------------------------------------------------------*/

.sample_btn a {
  display: inline-block;
  width: 80%;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #800000;
  position: relative;
    border-radius: 20px;
  margin: 16px 10px 20px 30px !important;   /* 上、右、下、左 */
}
.sample_btn a::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 35px;
  top: 0;
  transform: rotate(45deg);
  transition: right .3s;
}
.sample_btn a:hover::before {
  right: 20px;
}






/* テキスト下線 */
/* ======================================= */
span.under_y {
  position: relative;
  background: linear-gradient(transparent 90%, #ffff99 90%);    /* yellow */
}

span.under_r {
  position: relative;
  background: linear-gradient(transparent 80%, #dc143c 30%);    /* crimson */
}






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

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

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

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

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

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

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

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





/*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%;	/*円形にする*/
}



/*Font color
---------------------------------------------------------------------------*/
.kuro_l {color: #000 !important;font-size: 28px;font-weight: bold;}	/* black */
.orange {color: #ff4500 !important;font-size: 120%;font-weight: bold;}	/* orangered */
.orange_l {color: #ff8c00 !important;font-size: 28px;font-weight: bold;}	/* orangered */
.blue3 {color: #00008b !important;font-size: 100%;font-weight: bold;}
.crimson {color: #dc143c !important;font-size: 120%;font-weight: bold;}	/* crimson */
.red {color: #ff0000 !important;font-size: 120%;font-weight: bold;}	/* red */
.red3 {color: #dc143c !important;font-size: 100%;font-weight: bold;}	/* crimson */
.red1 {color: #dc143c !important;font-size: 2em;font-weight: bold;}	/* crimson */
.ivory {color: #ffe4b5 !important;font-size: 100%;font-weight: bold;}	/* ivory */
.darkred {color: #583822 !important;font-size: 120%;font-weight: bold;}	/* darkred */
.darkred_l {color: #942343 !important;font-size: 28px;font-weight: bold;}	/* darkred */
.crimson {color: #dc143c !important;font-size: 120%;font-weight: bold;}	/* crimson */
.yellow {color: #ffff00 !important;font-size: 110%;font-weight: bold;}	/* yellow */
.yellow_s {color: #ffff00 !important;font-size: 100%;font-weight: 500;}	/* yellow */
.yellow_l {color: #ffff00 !important;font-size: 2em;font-weight: bold;}	/* yellow */
.shiro {color: #fff !important;font-size: 120%;font-weight: bold;}	/* whight */
.shiro_s {color: #fff !important;font-size: 100%;font-weight: bold;}	/* whight */
.shiro_l {color: #fff !important;font-size: 28px;font-weight: bold;}	/* whight */
.mandarin {color: #f3981d !important;font-size: 100%;font-weight: bold;}	/* mandarin */
.haikei-a {
  color: #fff !important;
  font-size: 0.8rem;
  background: #333;
  padding: 2px 10px !important;
  letter-spacing: 0.1em;
}

.mini2 {font-size: 0.7rem;text-align: center;}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.clear {clear: both;margin-bottom: 100px !important;}
.clear50 {clear: both;margin-bottom: 50px !important;}
.clear10 {clear: both;margin-bottom: 10px !important;}
.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;}
.mb5vw {margin-bottom: 5vw !important;}
.look {display: inline-block;padding: 0px 10px;background: #fff;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.inline-block {display: inline-block !important;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

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

	.ws {width: 48%;display: inline;}
	.w80 {width: 80%;margin: 0 auto;}
	.sh {display: none;}
	.pc {display: block;}

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