@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* Base
------------------------------------------------------------------------------*/* {
*, ::before, ::after {
	box-sizing: border-box;
}
html {
	height: 100%;
	font-size: 16px;
}
body {
	margin: 0;
	padding: 0;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}
h1,h2,h3,h4,h5,
div,p,dl,dt,dd,
ul,ol,
figure,form {
	margin: 0;
	padding: 0;
}


/* hr --------------------*/
hr {
	width: auto;
	height: 1px;
	border-width: 1px 0 0;
	border-style: solid;
	border-color: #ccc;
	margin: 20px auto;
}

/* iframe ----------------------*/
iframe {
	width: 100%;
	border: none;
}
.ifrm-container {
	display: inline-block;
	width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling:touch;
	margin: auto;
}
.ifrm-container iframe {
	display: block;
	width: 100%;
	height: 100%;
}

/* テキスト関係 --------------------*/
.left		{ text-align: left; }
.center		{ text-align: center; }
.right		{ text-align: right; }
.f-left		{ float: left;	margin: 5px 10px 10px 0; }
.f-right	{ float: right;	margin: 5px 0 10px 10px; }
.f-clear	{ clear: both; }
.red		{ color: red; }
.blue		{ color: blue; }
.celeste	{ color: #0095bf; }
.green		{ color: green; }
.pink		{ color: #ff8080; }
.orange		{ color: orange; }
.purple		{ color: purple; }
.grey		{ color: grey; }
.brown		{ color: brown; }
.big		{ font-size: 1.3rem; }
.small		{ font-size: 0.8rem; }
.italic		{
	font-family: "游ゴシック", "Yu Gothic", sans-serif;
	font-style: italic;
}
.oblique	{
	font-family: "游ゴシック", "Yu Gothic", sans-serif;
	font-style: oblique;
}

.com {
	overflow: hidden;
	width: 100%;
	padding: 6px;
}


/* image --------------------*/
img	{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border: none;
	vertical-align: bottom;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-touch-callout: none;
	touch-callout: none;
}
/* 画像を指定サイズに固定切り抜き */
.image__fit {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-top: 75%;
}
.image__fit img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* イメージ無しで空間だけ表示 */
.image__fit.noimage {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	padding-top: 75%;
}
.image__fit.noimage::before {
	content: "No Image";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(0.85em, 2vw ,1em);
	color: #ccc;
	font-weight: bold;
}


/* table --------------------*/
table {
	border: 1px solid #bbb;
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto;
}
th, td {
	border: 1px solid #ccc;
	padding: 5px;
}
.scroll-table {
	overflow: auto;
	white-space: nowrap;
}

/* link --------------------*/
a {
	color: #06f;
	text-decoration: none;
/*	transition: 0.5s;*/
	outline: none;
}
a:hover {
	color: #f60;
}
a:focus {
	outline: none;
}
button {
	cursor: pointer;
}

/* ulタグ --------------------*/
/* liタグ */ 
ul {
	list-style-type: none;
}

/* オリジナルマークを付与可 */
[data-mark] {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.4em;
	width: fit-content;
}
[data-mark]::before {
	content: attr(data-mark);
	color : var(--color, inherit);
/*	color: inherit;*/
	font-weight: inherit;
	grid-column: 1;
}

[data-mark][data-align="center"] {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

[data-mark][data-align="right"] {
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}

/* olタグ */ 
ol {
	counter-reset: my-counter;
	list-style-type: none;
}
ol li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.6em;
	width: fit-content;
}
ol li::before {
	content: counter(my-counter);
	counter-increment: my-counter;
	color: inherit;
	font-weight: inherit;
	grid-column: 1;
}
ol.r-paren li {
	gap: 0.1em;
}
ol.r-paren li::before {
	content: counter(my-counter) "）";
}


/* アイコンを付与 -------------------- */
[data-icon]::before {
	content: "";
	display: inline-block;
	width: 2em;
	height: 2em;
	vertical-align: middle;
	margin-top: -0.15em;
	margin-right: 0.25em;
	background-image: url("../images/icon/icon-question.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	filter: invert(66%) sepia(13%) saturate(1769%) hue-rotate(28deg) brightness(97%) contrast(85%);

}
/* アイコン種類 */

/* flex / grid --------------------*/
/* flex box/grid box 共通設定(デフォルトはflexbox) */
[data-column] {
	--data-column: 3;
	display: flex;
	flex-wrap: wrap;
	--gap: 6px;
	gap: var(--gap);
}
[data-column="1"] { --data-column: 1; }
[data-column="2"] { --data-column: 2; }
[data-column="3"] { --data-column: 3; }
[data-column="4"] { --data-column: 4; }
[data-column="5"] { --data-column: 5; }
[data-column="6"] { --data-column: 6; }

[data-column]:not(.grid) > * {
	width: calc((100% - (var(--data-column) - 1) * var(--gap)) / var(--data-column));
}
[data-column], [data-column] > * {
	transition: none !important;
}

/* grid -------------------------------*/ 
.grid[data-column] {
	display: grid;
	grid-template-columns: repeat(var(--data-column), 1fr);
	align-items: start;
}
.grid > * {
	grid-column: span 1;
	grid-row: span 1;
}

/* アコーディオンメニュー(クリック型) --------------------*/
input[type="radio"].ac-trigger {
	display: none;
}
.ac-item {
/*	border-bottom: 1px solid #ddd;*/
}
.ac-label {
	display: block;
	cursor: pointer;
	user-select: none;
}
.ac-label::before {
}
.ac-content-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
}
input[type="radio"]:checked + .ac-label + .ac-content-wrapper,
.ac-item.is-hover:hover .ac-content-wrapper {
	grid-template-rows: 1fr;
}

.ac-item.is-hover .ac-label {
	cursor: pointer;
}
.ac-content-inner {
	overflow: hidden;
}

/* アコーディオンメニュー(ホバー型) --------------------*/
.nav-cascade-root {
	margin: 0;
}

.nav-cascade-item {
	position: relative;
	display: block;
}

.nav-cascade-root > .nav-cascade-item > .nav-cascade-link {
	display: inline-block;
	padding: 0;
}

/*  子・孫メニュー共通（白いボックス） */
header .head-navi .nav-cascade-menu {
	position: absolute;
	z-index: 10000;
	top: 100%;
	left: 0;
	padding-top: 15px;
	background-color: #fff;
	background-clip: content-box;
	width: max-content;
	min-width: 160px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: none !important;
}

/* 表示制御 */
.nav-cascade-item:hover > .nav-cascade-menu.is-first-layer {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.nav-cascade-item.is-ready > .nav-cascade-menu {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* 孫・ひ孫の配置 */
.nav-cascade-menu .nav-cascade-item > .nav-cascade-menu {
	top: 0;
	left: 100%;
	margin-left: -8px;
	padding-left: 10px;
	padding-top: 0;
}
.nav-cascade-menu .nav-cascade-menu.is-reverse {
	left: auto !important;
	right: 100% !important;
	margin-left: 0;
	margin-right: -8px;
	padding-left: 0;
	padding-right: 10px;
}

/* 判定用領域 */
header .head-navi .nav-cascade-menu::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	width: 100%;
	height: 15px;
}

/* リストアイテム：背景を白に固定 */
.nav-cascade-menu li {
	background-color: #ffffff;
	padding: 0;
	margin: 0;
	display: block;
	width: 100%;
}

/* リンクデザイン（ホバー・current共通） */
.nav-cascade-menu .nav-cascade-link {
	display: block;
	width: 100%;
	padding: 12px 20px;
	color: #333;
	background-color: #fff;
	border-bottom: 1px solid #efefef;
	text-decoration: none;
	white-space: nowrap;
	text-align: left;
}

/* 全てのリンクに対して、ホバー時またはcurrentクラスがある時に緑背景にする */
.nav-cascade-menu .nav-cascade-link:hover,
.nav-cascade-menu .nav-cascade-item:hover > .nav-cascade-link,
.nav-cascade-menu .nav-cascade-link.current {
	background-color: #eee;
}

/* 矢印 */
.nav-cascade-item:has(.nav-cascade-menu) > .nav-cascade-link::after {
	content: '▼';
	display: inline-block;
	margin-left: 8px;
}
.nav-cascade-menu .nav-cascade-item:has(.nav-cascade-menu) > .nav-cascade-link::after {
	transform: rotate(-90deg);
}



/* ページ遷移 --------------------*/
/* 「さらに読み込む」機能 */
.is-hidden-load {
	display: none !important;
}
.js-load-more-btn {
	display: block;
	background: #63AB45;
	border: 0;
	border-radius: 6px;
	min-width: 200px;
	padding: 10px;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.05em;
	font-weight: bold;
	margin: 20px auto;
	cursor: pointer;
}

/* カスタムセレクタ(プルダウン) */
.custom-select-wrapper {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin-bottom: 20px;
	cursor: pointer;
}
.custom-select-wrapper select {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.select-trigger {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	outline: none;
}
.select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	margin-top: 5px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	z-index: 30;
	display: none; 
}
.custom-select-wrapper.is-open .select-options {
	display: block;
}
.select-item {
	padding: 12px 20px;
	transition: background 0.2s;
}
.select-item:hover {
	background: #f5f5f5;
}
.select-arrow {
	margin-left: auto;
	border: solid #999;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
}
.custom-select-wrapper.is-open .select-arrow {
	transform: rotate(-135deg) translateY(-2px);
}

.select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	margin-top: 5px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	z-index: 30;
	max-height: 250px;
	overflow-y: auto;
	display: none;
}
.custom-select-wrapper.is-open .select-options {
	display: block;
}

/* ページネーション */
.pagination {
	display: flex;
	justify-content: center;
	margin: 20px auto;
}
.pagination>* {
	border-left: 1px solid #666;
	padding: 5px;
}
.pagination>*:last-child {
	border-right: 1px solid #666;
}
.pagination>* a,
.pagination>* b {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 10px 20px;
}

/* ページトップに移動 */
.pagetop {
	position: fixed;
	bottom: 18px;
	right: 18px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pagetop.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.pagetop a {
	z-index: 110;
	display: inline-block;
	background: rgba(37,37,170,0.75);
	border-radius: 24px;
	width: 100px;
	padding: 8px;
	text-align: center;
	font-size: 0.9em;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.pagetop a::before {
	content: "▲";
	margin-right: 5px;
}
.pagetop a:hover {
	color: yellow;
	text-decoration: none;
}
/* パンくず */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
	font-size: 0.8rem;
}
.breadcrumb li:not(:last-child)::after {
	content: "＞";
	margin-left: 5px;
	margin-right: 4px;
	font-size: 0.8em;
}


/* article / section --------------------*/
section + section {
	margin-top: 30px;
}
article + article {
	margin-top: 40px;
}

/* 基本レイアウト
==========================================================*/
#wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 1000px;
	min-height: 100vh;
	height: 100%;
	margin: 0 auto;
	padding: 0;
}
header {
	position: relative;
	width: 100%;
	margin: auto;
}
.contents {
	position: relative;
	display: flex;
	flex: 1;
	gap: 35px;
	width: 100%;
	padding: 10px 10px 30px;
}
.main {
	position: relative;
	flex: 1;
/*	border: 1px solid blue;*/
	margin-left: 25px;
}
.sidebar {
	width: 216px;
}
footer {
	width: 100%;
	margin-top: auto;
}

/* header
---------------------------------------------------------*/
header {

}
header .head-navi {
	display: flex;
	justify-content: center;
	background: url(../imgs/btn_back.jpg) repeat-x;
	height: 38px;
	width: 100%;
}
header .head-navi ul {
	display: flex;
	height: 100%;
	margin: 0 auto;
}
header .head-navi ul li {
	position: relative;
	width: 126px;
	margin-right: 3px;
}
header .head-navi ul li:last-child {
	margin-right: 0;
}
header .head-navi ul li:first-child {
	margin-left: 3px;
}
header .head-navi ul li img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
header .head-navi ul li:first-child::before,
header .head-navi ul li::after {
	content: "";
	position: absolute;
	display: block;
	background: url(../imgs/btn_space.jpg) no-repeat;
	height: 100%;
	width: 3px;
}
header .head-navi ul li::after {
	right: -3px;
}
header .head-navi ul li:first-child::before {
	left: -3px;
}
header .head-navi ul li img.img-hover {
	opacity: 0;
}
header .head-navi ul li:hover img.img-hover,
header .head-navi ul li.current img.img-hover {
	opacity: 1;
}
header .head-navi ul li:hover img.img-default {
	opacity: 0;
}


/* main image
---------------------------------------------------------*/
.main-image {
	position: relative;
/*	display: flex;
	flex-direction: column;
	justify-content: center;*/
	width: 100%;
	margin: 5px auto 25px;
	text-align: center;
}

/* contents
---------------------------------------------------------*/
.contents {
	border-width: 0 1px;
	border-style: solid;
	border-color: #D4D4D4;
}


/* main ----------------------------------*/
.main {
	padding-bottom: 50px;
}
.pagetop {
	position: absolute;
	right: 0;
	bottom: 0;
}
.pagetop a {
	background: none;
	width: fit-content;
	z-index: 1;
}
.pagetop a::before,
.pagetop a::after {
	display: none;
}



/* sidebar ----------------------------------*/
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.sidebar .side-contact dd {
	border-width: 0 1px 1px;
	border-style: solid;
	border-color: #c0c0c0;
	padding: 10px;
	font-size: 0.85rem;
	font-weight: bold;
}
.sidebar .side-contact dd .contact-form {
	margin-left: 6px;
	color: #747474;
}
.sidebar .side-contact dd .contact-form span {
	text-decoration: underline;
}
.sidebar .side-contact dd .contact-form::after {
	content: "≫";
	color: #333;
}
.sidebar .side-contact dd [data-mark]::before {
	width: 42px;
	gap: 0;
	text-align: right;
}
.sidebar .side-bnr {
	text-align: center;
}
.sidebar .side-bnr li+li {
	margin-top: 10px;
}
.sidebar .side-shop {
	border: 1px solid #c0c0c0;
	margin-top: auto;
	padding: 5px;
}
.sidebar .side-shop .shop-image {
	text-align: center;
	margin: 0 auto 10px;
}
.sidebar .side-shop .shop-name {
	text-align: center;
	margin: 0 auto 4px;
	font-size: 0.85rem;
	font-weight: bold;
}
.sidebar .side-shop .shop-info {
	display: grid;
	grid-template-columns: 60px 1fr;
	align-items: start;
	font-size: 0.75rem;
	font-weight: bold;
}
.sidebar .side-shop .shop-info dt {
	text-align: right;
}


/* footer
---------------------------------------------------------*/
footer {
	text-align: center;
	background: #000;
	color: #fff;
}
footer small {
	font-size: 0.75rem;
	font-weight: bold;
}
footer small::before {
	content: "Copyright";
	margin-right: 5px;
}
footer small::after {
	content: "All Rights Reserved.";
	margin-left: 5px;
}


footer small img {
	width: 1px;
	height: 1px;
}

/* タブレット
---------------------------------------------------------------------------*/
@media screen and (max-width: 800px) {

	/* flex box /grid box(横並びブレイクポイント) -----------*/
	[data-column="5"],
	[data-column="6"] {
		--data-column: 4 !important;
	}

}


@media screen and (max-width: 700px) {
	/* flex box /grid box(横並びブレイクポイント) -----------*/
	[data-column="4"],
	[data-column="5"],
	[data-column="6"] {
		--data-column: 3 !important;
	}

}

@media screen and (max-width: 600px) {
	/* flex box /grid box(横並びブレイクポイント) -----------*/
	[data-column="3"],
	[data-column="4"],
	[data-column="5"],
	[data-column="6"] {
		--data-column: 2 !important;
	}

}


/* スマートフォン
---------------------------------------------------------------------------*/
@media screen and (max-width: 500px) {
	/* flex box /grid box(横並びブレイクポイント) -----------*/
	[data-column] {
		--data-column: 1 !important;
		display: block !important;		/* 1列時はレイアウトを解除 */
	}
	[data-column] > * {
		width: 100% !important;
		grid-column: auto !important;
		grid-row: auto !important;
	}

}

