@charset "UTF-8";

@media only screen and (min-width: 1050px) {
	#logo {
		line-height: 88px;
		height: 88px;
		position: absolute;
		z-index: 200;
		top: 0;
		left: 0;
	}

	#logo img {
		height: 88px;
	}

	#logo a {
		padding: 0 20px;
		height: 88px;
	}
}


header {
	position: fixed;
	top: 0;
	left: 0;
	display: table;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	height: 64px;
}


header a {
	text-decoration: none;
	color: #4b4b4b;
}

header ul {
	list-style: none;
}

@media only screen and (min-width: 1050px) {
	header {
		height: 84px;
	}

}

/* ハンバーガーメニュー*/

.item {
	counter-increment: item;
	z-index: 2000;
	text-align: right;
	padding: 10px 10px 0;
	height: 64px;
}

@media only screen and (min-width: 1050px) {
	.item {
		display: none;
	}
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.menu-trigger {
	position: relative;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* スマホのタップ時の色を消す */

}

/* 普通にクリックした時は枠を出さない */
.menu-trigger:focus {
    outline: none;
}

/* キーボードのTabキーで選択した時だけ枠を出す */
.menu-trigger:focus-visible {
    outline: 2px solid #ed6103; /* メニューの色に合わせるとお洒落です */
}

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #ed6103;
	border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
}

.menu-trigger span:nth-of-type(2) {
	top: 10px;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 20px;
}

#menu07::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #ed6103;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	transition: all .4s;
}

#menu07.active::after {
	content: 'CLOSE';
	bottom: -10px;
}

#menu07.active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}

#menu07.active span:nth-of-type(2) {
	opacity: 0;
}

#menu07.active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.menu-content {
	display: none;
	position: absolute;
	top: 50px;
	right: 10px;
	background: rgba(255, 255, 255, 0.95);
	/* 少し透け感を出す */
	backdrop-filter: blur(8px);
	/* 背景をぼかして高級感 */
	padding: 20px 30px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	border: none;
	animation: fadeIn 0.4s ease;
	z-index: 3000;
}

/* PC幅以上では「浮かせる」のをやめる */
@media only screen and (min-width: 1050px) {
	.menu-content {
		position: static;
		display: flex;
		gap: 24px;
		margin-left: auto;
		/* ← これが重要：右寄せ */
		background: none;
		padding: 0;
		box-shadow: none;
		border-radius: 0;
		animation: none;
	}
}


@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.menu-content a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	margin-bottom: 15px;
	padding: 5px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.menu-content a:hover {
	color: #ed6103;
	border-bottom: 1px solid #ed6103;
}

/* スマホ用はそのまま */
.sp-nav {
	display: block;
}

.pc-nav {
	display: none;
}

/* PC幅以上 */
@media only screen and (min-width: 1050px) {

	/* PC用ナビ */
	.pc-nav {
		flex-grow: 1;
		/* 余白を埋める */
		display: flex;
		justify-content: flex-end;
		/* 中身（menu-content）を右に寄せる */
		align-items:end;
		/* 垂直中央 */
		
        /* 1. 位置の強制指定 */
        margin-left: auto;      /* これで右側に押し出されます */
        margin-right: 40px;     /* ★これが「右側の少しの余白」になります */
		        gap: 24px;              /* メニュー間の間隔 */
        
        /* 3. 高さをヘッダーに合わせる（親の高さがある場合） */
        height: 100%;           
	}

	.pc-nav a {
		text-decoration: none;
		color: #333;
		font-weight: 600;
		padding: 8px 4px;
		position: relative;
	}

	.pc-nav a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -4px;
		width: 0;
		height: 2px;
		background: #ed6103;
		transition: width 0.3s ease;
	}

	.pc-nav a:hover::after {
		width: 100%;
	}

	.sp-nav {
		display: none;
		/* PCではハンバーガー非表示 */
	}
}



/* mddNav（ドロップダウンメニュー全体とナビボタン）
------------------------------------- */
#mddNav {
	display: none;
}

/*active */
#mddNav.active {
	width: 100%;
	background-color: #E75F04;
	position: fixed;
	left: 0;
	height: calc(100% - 64px);
	/*上を下げた分、下を0にしてマイナスになる事を防止する。calc計算しなければ下が切れる*/
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 1000;
	display: block;
}

#mddNav>ul {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0;
}

#mddNav>ul>li {
	display: block;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

#mddNav>ul>li>a {
	display: inline-block;
	width: 100%;
	color: #fff;
	padding: 0;
	height: 64px;
	line-height: 64px;
	text-align: center;
	text-decoration: none;
}

#mddNav>ul>li>a.open::after {
	font-weight: 900;
	content: "＋";
	position: absolute;
	right: 50px;
	color: #fff;
}

#mddNav>ul>li>a.open.active::after {
	font-weight: 900;
	content: "－";
	position: absolute;
	right: 50px;
	color: #fff;
}

#mddNav>ul>li.inquiry div.sp-address {
	display: block;
	color: #fff;
	margin-bottom: 10px;
	text-align: center;
	background-color: #7A3202;
	border-radius: 5px;
	padding: 10px;
}

#mddNav>ul>li.inquiry {
	padding: 24px 24px 42px 24px;
	border-bottom: 0;
}

#mddNav>ul>li.inquiry>ul {
	list-style-type: none;
	display: flex;
	margin: 0;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 0;
}

#mddNav>ul>li.inquiry>ul>li {
	flex-grow: 1;
	margin: 0;
}

#mddNav>ul>li.inquiry>ul>li>a {
	display: block;
	color: #fff;
	height: 38px;
	line-height: 38px;
	text-align: center;
	text-decoration: none;
}

#mddNav>ul>li.inquiry>ul>li.White {
	background-color: #fff;
}

#mddNav>ul>li.inquiry>ul>li.White>a {
	color: #ED6103;
}

/*pc*/
@media only screen and (min-width: 850px) {
	#mddNav {
		position: relative;
		z-index: 100;
		width: 100%;
		height: auto;
		margin: 0 0 0 auto;
		padding-right: 20px;
		display: block;
	}

	#mddNav>ul {
		display: flex;
		justify-content: flex-end;
		margin: 0 auto;
		max-width: 100%;
		text-align: center;
		max-height: 88px;
	}

	#mddNav>ul>li {
		width: auto;
		max-width: 100%;
	}

	#mddNav>ul>li>a {
		color: #3E3E3E;
		font-weight: bold;
		height: auto;
		line-height: 70px;
		border: #fff 1px solid;
		transition: all 0.2s linear;
		padding: 16px 10px 0px 10px;
	}

	#mddNav>ul>li>a.open::after {
		content: none;
	}

	#mddNav>ul>li:hover>a {
		background-color: #f4f4f4;
		border-bottom: 3px solid #efefef;
	}


	#mddNav>ul>li.inquiry {
		display: none;
	}
}

@media only screen and (min-width: 1281px) {
	#mddNav {
		padding: 0 20px 0px 450px;
	}

	#mddNav>ul {
		justify-content: center;
	}
}

/* mddWrap
------------------------------------- */
#mddNav .mddWrap {
	width: 100%;
	overflow: hidden;
	display: none;
	background-color: #f4f4f4;
	text-align: center;
	height: auto;
}

#mddNav .mddWrap a {
	display: block;
}

#mddNav .mddWrap .mddInner {
	margin: 0 auto;
	padding-top: 10px;
	width: 100%;
	height: auto;
	line-height: 1.5em;
}

#mddNav .mddWrap {
	content: none;
}

@media only screen and (min-width: 850px) {

	#mddNav .mddWrap {
		content: normal;
	}

	#mddNav .mddWrap {
		position: absolute;
		top: 88px;
		left: 0;
		z-index: 300;
		height: auto;
		max-height: 100vh;
		padding-bottom: 30px;
	}

	#mddNav .mddWrap .mddInner {
		text-align: left;
		margin: 20px 0 auto;
	}
}


/*　商品カテゴリーナビメニュー*/
.mddInner {}

.mddInner ul.side_menu_list {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0;
}

.mddInner ul.side_menu_list li {
	display: block;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid #ED6103;
}

.mddInner ul.side_menu_list li>a {
	display: inline-block;
	width: 100%;
	color: #ED6103;
	padding: 0;
	height: 64px;
	line-height: 64px;
	text-align: center;
	text-decoration: none;
}

.mddInner ul.side_menu_list li.list>a {
	position: relative;
}

.mddInner ul.side_menu_list li.list>a.open::after {
	font-weight: 900;
	content: "＋";
	position: absolute;
	right: 50px;
	color: #ed6103;
}

.mddInner ul.side_menu_list li.list>a.open.active::after {
	font-weight: 900;
	content: "－";
	position: absolute;
	right: 50px;
	color: #ed6103;
}

.mddInner ul.side_menu_list li.list div.child {
	/*孫要素*/
	width: 100%;
	overflow: hidden;
	display: none;
	background-color: #fff;
	text-align: center;
	height: auto;
}

@media only screen and (min-width: 850px) {

	/*pc*/
	.mddInner {
		background-color: transparent;
	}

	.mddInner ul.side_menu_list {
		display: flex;
		margin: 0 auto;
		width: 1187px;
		max-width: 100%;
		padding: 2px 50px;
	}

	.mddInner ul.side_menu_list li {
		border-bottom: none;
	}

	.mddInner ul.side_menu_list li.list {
		font: 1.1em sans-serif;
		position: relative;
		width: calc(100% / 3);
		float: left;
		margin: 8px 0 8px 0;
		padding: 0 0 0 1em;
		text-align-last: left;
	}

	.mddInner ul.side_menu_list li.list.wrap02 {
		width: calc(100% / 2);
	}

	.mddInner ul.side_menu_list li.list::after {
		font-weight: 900;
		content: "〉";
		position: absolute;
		top: 25%;
		right: 10px;
		color: #DDDDDD;
	}

	.mddInner ul.side_menu_list li.list>a {
		color: #3E3E3E;
		height: auto;
		line-height: 2.875;
	}

	.mddInner ul.side_menu_list li.list>a::before {
		content: '';
		/* 空白の要素を作る */
		width: 90%;
		height: 2px;
		background-color: #DDDDDD;
		display: block;
		position: absolute;
		top: 80%;
		left: 0;
		bottom: -2px;
	}

	.mddInner ul.side_menu_list li.list:hover>a,
	.mddInner ul.side_menu_list li.list:hover::after {
		color: #ed6103;
		text-decoration: none;
		transition: transform 0.3s;
		/*変形の時間*/
	}

	.mddInner ul.side_menu_list li.list:hover>a::after {
		position: absolute;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #ed6103;
		bottom: -2px;
		top: 80%;
		transform: scale(0, 1);
		transform-origin: right top;
		/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
		transition: transform 0.3s;
		/*変形の時間*/
	}

	.mddInner ul.side_menu_list li.list:hover>a:hover::after {
		transform: scale(1, 1);
		/*ホバー後、x軸方向に1（相対値）伸長*/
		transform-origin: left top;
		/*左から右に向かう*/
	}

	.mddInner ul.side_menu_list li.list:hover>div.child {
		/*pc孫要素を表示*/
		display: flex;
		height: 60px;
		width: 100vw;
		background-color: transparent;
	}

	/* 商品カテゴリーナビメニュー  孫要素 pc */
	.mddInner ul.side_menu_list li.list div.child>ul {
		display: flex;
		position: fixed;
		inset: auto 0;
		margin: auto;
		width: 1067px;
		max-width: 100%;
		background-color: #fff;
		padding: 0 2%;
		z-index: 450;
	}

	.mddInner ul.side_menu_list li.list div.child>ul>li {
		width: fit-content;
		margin: auto;
	}

	.mddInner ul.side_menu_list li.list>div.child li>a {
		color: #3E3E3E;
		width: 100%;
		height: 100%;
	}

	.mddInner ul.side_menu_list li.list>div.child li:hover>a {
		color: #ed6103;
		text-decoration: none;
	}

	.mddInner ul.side_menu_list li.list>div.child li:hover {
		border-bottom: solid 1px #ed6103;

	}

	.mddInner ul.side_menu_list li.list>a.open::after {
		position: absolute;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #ed6103;
		bottom: -2px;
		top: 80%;
		transform: scale(0, 1);
		transform-origin: right top;
		/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
		transition: transform 0.3s;
		/*変形の時間*/
	}

	.mddInner ul.side_menu_list li.list>a.open.active::after {
		content: none;
	}
}

/*　sub-menu　お問い合わせの中身のスタイル*/

ul.sub-menu {
	display: flex;
	list-style: none;
	position: relative;
	justify-content: center;
}

ul.sub-menu:after {
	content: '';
	display: block;
	clear: both;
}

ul.sub-menu li {
	padding: 8px 25px;
	border-bottom: 0;
}

ul.sub-menu li a {
	display: block;
	position: relative;
	font-weight: bold;
	padding: 0;
	text-decoration: none;
	color: #3E3E3E;
}

ul.sub-menu li a:hover {
	color: #e68609;
}


/*==================================================
 goTop
===================================*/

.goTop {
	display: block;
	position: fixed;
	bottom: 50px;
	right: 10px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	background-color: #FF9576;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	z-index: 1000;

	/*デフォルトで非表示にする*/
	opacity: 0;
	visibility: hidden;
}

@media only screen and (min-width: 850px) {
	.goTop {
		bottom: 50px;
		right: 70px;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}

.goTop:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.goTop:hover {
	background-color: rgba(255, 149, 118, 0.7);
}

.goTop img {}

/*このクラスが付与されると表示する*/
.active {
	opacity: 1;
	visibility: visible;
}

/*==================================================
スライダー
===================================*/
.slider-wrap {
	position: relative;
	z-index: 10;
}

.slider {
	width: 100%;
	margin: 0 auto;
}

.slider img {
	height: auto;
	margin: auto;
	/*max-height: 50%;*/
	max-width: 100%;
	object-fit: cover;
	width: 100vw;
	padding: 0;
}

@media only screen and (min-width: 850px) {
	.slider-wrap {
		position: relative;
		z-index: 10;
	}

	.slider {
		/*横幅94%で左右に余白を持たせて中央寄せ*/
		width: 94%;
		margin: 0 auto;
	}

	.slider img {
		width: 910px;
		max-width: 94vw;
		/*スライダー内の画像を●●vwにしてレスポンシブ化*/
		height: auto;
		border-radius: 8px;
		/*画像に丸みを持たす*/
	}

	.slider .slick-slide {
		transform: scale(0.85);
		/*左右の画像のサイズを85%に*/
		transition: all .6s;
		/*拡大や透過のアニメーションを0.5秒で行う*/
		opacity: 0.5;
		/*透過50%*/
	}

	.slider .slick-slide.slick-center {
		transform: scale(1);
		/*中央の画像のサイズだけ等倍に*/
		opacity: 1;
		/*透過なし*/
	}
}

/*スライダーテキスト------------------------------------------------------------*/

.slider-txt {
	width: 100%;
	text-align: center;
}

.slider-txt li a {
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 15px;
}

.slider-txt h2 {
	position: relative;
	text-align: center;
	padding: 0.25em 1em;
	border: solid 2px #fff;
	border-radius: 3px 0 3px 0;
}

.slider-txt h2:before,
.slider-txt h2:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border: solid 2px #fff;
	border-radius: 50%;
}

.slider-txt h2:after {
	right: 7px;
}

.slider-txt h2:before {
	left: 7px;
}

.slider-txt div.slick-track {
	background-color: #fff;
	padding: 0 0 5px 0;
}

div.txt {
	background-color: #ED6F1B;
	display: table-cell;
	padding: 40px 15px 15px 15px;
	font-size: 14px;
	font-weight: bold;
	line-height: 2.22;
	letter-spacing: 0;
	width: 100vw;
	/*スライダー内の画像を●●vwにしてレスポンシブ化*/
	height: 200px;
	border-radius: 8px;
	/*画像に丸みを持たす*/

}

.slider-txt samp.cat {
	position: absolute;
	margin: 10px;
	padding: 0 0.2em;
	width: 120px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 5px;
	background-color: #fff;
	color: #fc802e;
	text-align: center;
	white-space: nowrap;
	top: 20px;
	left: 0;
}

.slider-txt samp.cat-g {
	position: absolute;
	margin: 10px;
	padding: 0 0.2em;
	width: 120px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 5px;
	background-color: #fff;
	color: #006400;
	text-align: center;
	white-space: nowrap;
	top: 20px;
	left: 0;
}

div.txt p {
	text-align: center;
}

.slider-txt img {
	height: auto;
	width: 100%;
}

@media only screen and (min-width: 850px) {
	.slider-txt {
		width: 100%;
		text-align: center;
	}

	div.txt {
		font-size: 18px;
		max-width: 776px;

	}

	.slider-txt samp.cat {
		left: auto;
		top: auto;
	}

	.slider-txt samp.cat-g {
		left: auto;
		top: auto;
	}
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	/*絶対配置にする*/
	top: 42%;
	cursor: pointer;
	/*マウスカーソルを指マークに*/
	outline: none;
	/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;
	/*矢印の色*/
	border-right: 2px solid #666;
	/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {
	/*戻る矢印の位置と形状*/
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {
	/*次へ矢印の位置と形状*/
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	width: 18px;
	height: 18px;
	padding: 0;
	background-color: transparent;
	border: 1px solid #ED6103;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
	color: #ED6103;
	font-weight: 500;
	font-size: 13px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	cursor: pointer;
}

.slick-dots .slick-active button {
	background: #ED6103;
	/*ドットボタンの現在地表示の色*/
}

/*パンくずリスト------------*/
.topicpath {
	margin: -24px auto;
	padding: 0 10px;
	font-size: 12px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
	content: ">";
	margin: 0 .6em;
	color: #777;
}

@media only screen and (min-width: 850px) {
	.topicpath {
		margin: 0 auto;
		padding: 13px 32px;
	}
}

/* メイン--------------------------------------------------------- */
main {
	margin-bottom: 100px;
}

main .outer-wrap {
	display: flex;
	justify-content: center;
}

main .background-f4 {
	background-color: #F4F4F4;
}

main .outer-wrap h2 {
	border-left-width: 2em;
}

main .outer-wrap ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 10px;
	list-style: none;
}

main .outer-wrap ul li {
	margin-top: 32px;
}

@media only screen and (min-width: 850px) {

	main .outer-wrap ul li {
		width: calc((100% - 80px) / 4);
		margin: 48px 10px 0 0;
	}

	main .outer-wrap ul li:nth-child(4n) {
		margin-right: 0;
	}

	main .outer-wrap ul li.wrap02 {
		width: calc((100% - 80px) / 2);
		margin: 48px 10px 0 0;
	}

	main .outer-wrap ul li.wrap02:nth-child(2n) {
		margin-right: 0;
	}

	main .outer-wrap ul li.wrap03 {
		width: calc((100% - 80px) / 3);
		margin: 48px 10px 0 0;
	}

	main .outer-wrap ul li.wrap03:nth-child(3n) {
		margin-right: 0;
	}

	main .outer-wrap ul li.wrap04-3 {
		width: calc(((100% - 80px) / 4)*3);
		margin: 48px 10px 0 0;
	}

	main .outer-wrap ul li.wrap04-3:nth-child(2n) {
		margin-right: 0;
	}
}

main .outer-wrap ul li a {
	display: block;
	text-decoration: none;
}

main .outer-wrap ul div.photo {
	text-align: center;
	border: solid 1px #d3d3d3;
	border-radius: 0 8px 8px 8px;
}

main .outer-wrap ul li a:hover div.photo {
	border: solid 2px #ED6103;

}

main .outer-wrap ul div.photo img {
	width: 100%;
	height: auto;
	border-bottom: solid 1px #d3d3d3;
	border-radius: 0 8px 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main .outer-wrap .category-inner {
	margin-top: 40px;
	padding: 40px 10px 40px 10px;
	width: 1187px;
	max-width: 100%;
}

main .outer-wrap .category-inner h3 {
	padding: 20px 10px 0 10px;
}

main .outer-wrap .category-inner-top {
	padding: 40px 10px 40px 10px;
	width: 1187px;
	max-width: 100%;
}

div.info {
	display: flex;
	margin-top: 16px;
}

div.info samp.cat {
	padding: 0 0.2em;
	width: 100px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 5px 5px 0 0;
	background-color: #ed6103;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}

main .outer-wrap ul li a:hover div.info samp.cat {
	background-color: #ed4d03;
	color: #fff;
}

main .outer-wrap .category-inner div.info>h3 {
	height: 24px;
	line-height: 24px;
	color: #444444;
	font-size: 1em;
	font-weight: bold;
	margin-left: 3%;
	padding: 0;
}

main .outer-wrap .category-inner div.photo h3 {
	line-height: 24px;
	color: #444444;
	font-size: 1em;
	font-weight: bold;
	margin: auto;
	padding: 0;
}

samp.desc {
	font-size: 1em;
	margin-top: 12px;
	display: inline-block;
	color: #555555;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: left;
}

main .outer-wrap ul li a:hover samp.desc {
	background-color: #fff;
	color: #ed6103;
	border-radius: 8px;
}

/* コンテンツ
------------------------------------------------------------------------*/
main .top-test {
	background-image: url(../img/top/1843376_s.jpg);
	background-position: center;
	background-color: #7A3202;
	max-width: 100%;
}

main .top-test2 {
	max-width: 100%;
	text-align: center;
}

/*table---*/
main table {
	margin-top: 20px;
	border-collapse: collapse;
	width: 100%;
}

main th {
	display: block;
	color: #fff;
	background-color: #ed6103;
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
	font-weight: normal;
}

main th.map {
	display: block;
	padding: 0;
	border-bottom: none;
	background-color: transparent
}

main td {
	display: block;
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
}

main .outer-wrap td ul {
	display: block;
}

main .outer-wrap td li {
	margin: 0;
	width: 100%;
}

@media only screen and (min-width: 850px) {
	main th {
		display: table-cell;
		width: 25%;
	}

	main td {
		display: table-cell;
	}

	main th.map {
		width: 600px;
		height: 400px;
	}
}

main .thoughts {
	margin-top: 10px;
	padding: 20px;
	color: #F4F4F4;
	text-align: left;
	font-size: large;
	background-color: #ed6103;
	border: #ed6103 1px solid;
	border-radius: 8px;
}

main .thoughts.gray {
    color: #3E3E3E;
    background-color: #f9f9f9; /* ★真っ白ではなく、ごく薄いグレーで高級感を */
    border: none;              /* ★枠線を思い切って消す */
    border-left: 5px solid #ed6103; /* ★左側だけにアクセントを入れる（引用風） */
    border-radius: 4px;        /* 角丸は控えめに */
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* ほんの少しだけ浮かせる */
    padding: 30px;             /* 余白をたっぷり取る */
}

/* 最初の1行目だけ目立たせる */
main .thoughts.gray p:first-child {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ed6103;
    margin-bottom: 10px;
}

@media only screen and (min-width: 850px) {
	main .thoughts {
		text-align: center;
		font-weight: bold;
	}
}

/*---table*/


main .content-wrap {
	padding: 10px;
	width: 1187px;
	max-width: 100%;
	margin: auto;
}

main .content-wrap h1 {
	margin: 0;
	text-align: center;
	line-height: 1.5;
	font-size: 32px;
	background-color: coral;
	color: white;
	padding: 5px 0;
}

main .content-wrap h2 {
	margin: 5px;
	padding: 32px 0 0 20px;
	line-height: 2;
	border-bottom: #ed6103 1px solid;
}

main .content-wrap h3 {
	margin: 5px;
	padding: 10px 0 0 10px;
}

span.marker {
	border-bottom: #ed6103 1px solid;
}

main .content-wrap samp.red {
	color: red;
}

main .content-wrap h2.top15 {
	margin-top: 15px;
}

main .content-wrap p {
	padding: 5px 20px;
}

main .content-wrap ul,
main .content-wrap ol {
	padding: 5px 0px 5px 30px;
}

@media only screen and (min-width: 850px) {
	main .content-wrap h1 {
		border-radius: 8px;
		padding: 20px 0;
	}

	main .content-wrap ul

	/* , main .content-wrap ol */
		{
		list-style-position: inside;
	}
}

/*フローチャート*/

.stepbar {
	margin: 0 auto;
	width: 90%;
}

.stepbar .stepbarwrap {
	margin: 2em 0;
	position: relative;
}

.stepbar .stepbarwrap .steptitle {
	display: inline-flex;
	align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
	display: inline-block;
	width: 3em;
	height: 3em;
	content: "";
	border-radius: 50%;
	background-color: #ed6103;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 0;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
	display: inline-block;
	line-height: 1.2em;
	font-size: 0.8em;
	font-weight: bold;
	position: relative;
	top: 0.9em;
}

.stepbar .stepbarwrap .steptitle .title {
	margin: 0.5em 0.5em 0.5em 3em;
	font-weight: bold;
	font-size: 1.2em;
}

.stepbar .stepbarwrap .steptxt {
	padding-left: 3.5em;
}

.stepbar .stepbarwrap .stepline {
	width: 1px;
	height: calc(100% + 1em);
	background-color: #ed6103;
	position: absolute;
	top: 1em;
	left: 1.5em;
	z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
	display: none;
}

main .content-wrap h2.title {
	padding: 0;
	line-height: 1.5;
}

main .content-wrap .steptxt h3 {
	padding: 10px 10px 6px 10px;
	border-radius: 5px;
	border: 1px orange solid;

}

main .content-wrap span b {
	color: red;
}

@media only screen and (min-width: 960px) {
	.stepbar {
		width: 80%;
	}

	.stepbar .stepbarwrap .steptitle .title {
		font-size: 1.5em;
	}

	.stepbar .stepbarwrap .steptxt {
		padding-left: 5em;
	}

}

/*改行の為のspan設定*/
main .content-wrap h1 samp,
main .content-wrap h2 samp,
main .content-wrap h3 samp,
main .content-wrap h4 samp,
main .content-wrap p samp,
.scrollto-section samp {
	display: inline-block;
	font-size: inherit;
	font-family: none;
}

main .content-wrap img {
	padding: 5px;
	max-width: 100%;
	text-align: center;
}

/*ページ内リンク*/
main .page-menu-inner {
	margin: 0 auto;
	width: 1187px;
	max-width: 100%;
	padding: 0 50px;
	position: relative;
	display: none;
}

main .page-menu-inner.active {
	display: block;
}

.scrollto-section {
	display: flex;
	flex-wrap: wrap;
}

.scrollto-section.active {
	width: 100%;
	background-color: white;
	position: fixed;
	left: 0;
	top: 64px;
	/* height: calc(100% - 120px); */
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 999;
}

.scrollto-section a {
	text-decoration: none;
	border: 1px solid;
	font-weight: bold;
	padding: 6px;
	margin-top: 4px;
	text-align: center;
	width: 100%;
	color: #797979;
}

.scrollto-section a:hover {
	color: #ed6103;
}

.anc::before {
	content: "";
	margin-top: -32px;
	height: 32px;
	display: block;
	visibility: hidden;
}

#footerArea button {
	border: none;
	outline: none;
	background: transparent;
}

@media only screen and (min-width: 960px) {
	main .page-menu-inner {
		display: block;
	}

	.scrollto-section {
		margin: -8px;
		width: calc(100% + 16px);
	}

	.scrollto-section a {
		width: calc((100% - 80px) / 3);
		flex-grow: 1;
		margin: 8px;
	}

	.anc::before {
		margin-top: -88px;
		height: 88px;
	}
}

/* footer
------------------------------------------------------------------------ */

#footer {
	padding: 0;
	position: relative;
	background-color: #F4F4F4;
}

#footer .inner {
	padding-top: 40px;
	text-align: center;
}

#footer img {
	max-width: 100%;
}

#fLogo {
	background-color: #ed6103;
	text-align: center;
}

#fLogo>.inner {
	padding-top: 14px;
	padding-bottom: 10px;
	margin: auto;
	margin-bottom: 44px;
	width: 98%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

small {
	color: #FFDBC9;
}

.grid {
	display: none;
}

@media only screen and (min-width: 850px) {
	#fLogo>.inner {
		margin-bottom: 0;
	}

	.grid {
		display: flex;
		justify-content: center;
		color: #3E3E3E;
		margin: 20px 0 50px 0;
	}

	.grid a {
		text-decoration: none;
		color: #3E3E3E;

	}

	.grid ul {
		list-style-type: none;
		padding: 10px 0 0 10px;
	}

	.grid div.wrap03 {
		width: calc((100% - 60px) / 3);
		margin-right: 10px;
	}

	.grid div.wrap03:nth-child(3n) {
		margin-right: 0;
	}

	.footer__navi-heading {
		font-weight: 600;
		padding-bottom: 7px;
		border-bottom: 1px solid #D2D2D2;
	}

	.footer__navi {
		font: sans-serif;
		list-style: none;
		text-align: left;
		display: inline-grid;
	}

	.footer__navi li {
		margin-bottom: 0.75rem;
	}

	.footer__navi li a {
		padding: 7px 0;
	}

	.footer__navi li ul li::before {
		content: "┗ ";
	}

	.grid div.wrap03 div.inquiry {
		width: 100%;
		margin-top: 24px;
		padding: 24px 24px 24px 24px;
		color: #fff;
		background-color: #7A3202;
		border-bottom: 0;
		border-radius: 5px;
	}

	.grid div.wrap03 div.inquiry div.sp-address {
		display: block;
		margin: 10px;
		text-align: center;
		padding: 10px;
	}
}

/*スマホ用フッター固定メニュー*/
div#footerArea {
	position: fixed;
	left: 0;
	bottom: 0;
	background: white;
	width: 100%;
}

#footerArea ul {
	display: flex;
}

#footerArea li {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 5px;
	list-style: none;
	text-align: center;
}

#footerArea a span {
	display: block;
	font-size: 4px;
}

#footerArea img {
	height: 40px;
}

.in-page {
	cursor: pointer
}

div#footerArea {
	padding-bottom: env(safe-area-inset-bottom);
}

@media only screen and (min-width: 850px) {

	/*スマホ用フッター固定メニュー*/
	div#footerArea {
		display: none;
	}
}

/* 入力エラー発生時の背景色 */
.input-error {
	background-color: #ffe6e6;
	transition: background-color 0.5s ease;
}

.input-normal {
	background-color: white;
	transition: background-color 0.5s ease;
}