@charset "utf-8";

/* =======================================

        CommonElements

======================================= */

/* リセット */
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	line-height: 1.8;
	color: #222222;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 70px;
}

.gramond {
	font-family: 'EB Garamond', serif;
	letter-spacing: 0.1em;
}
.mincyo{
	font-family: Garamond,游明朝 Regular,"Yu Mincho Regular",YuMincho Regular,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

.wf-hannari { font-family: "Hannari"; }
.wf-notosansjapanese { font-family: "Noto Sans Japanese"; }

.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: block; }

.pc_none {
	display: none;
}

/* クリックで電話を無効 */
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

.cmn980 {
	width: 980px;
	margin:auto;
}
.cmn1110 {
	width: 1110px;
	margin:auto;
}
.cmn1100 {
	width: 1100px;
	margin: auto;
}

.cmn1200 {
	width: 1200px;
	margin:auto;
}


/*header - 新しいレイアウト
--------------------------------------------*/

/* ヘッダーコンテナ */
.header-new-layout {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 30px;
}

/* ロゴ */
.header-logo {
	flex-shrink: 0;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.header-logo a {
	display: flex;
	align-items: center;
	line-height: 1;
}

.header-logo img {
	height: 45px !important;
	width: auto !important;
	display: block !important;
	max-width: 200px !important;
}

/* PC用ナビゲーション */
.header-nav {
	flex: 1;
	display: flex;
}

.header-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
}

.header-menu > li {
	position: relative;
	list-style: none !important;
}

.header-menu > li::before,
.header-menu > li::after {
	display: none !important;
	content: none !important;
}

.header-menu > li > a {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-menu > li > a:hover {
	background: rgba(255, 255, 255, 0.15);
}

.header-menu > li > a.current {
	color: #fff;
	font-weight: bold;
}

/* サブメニュートグル矢印 */
.sub-menu-toggle {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	margin-left: 6px;
	transition: transform 0.3s ease;
	vertical-align: middle;
}

/* サブメニュー */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	list-style: none;
	margin: 0;
	padding: 5px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.header-menu > li.has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li {
	list-style: none !important;
	border-bottom: 1px solid #f0f0f0;
}

.sub-menu li::before,
.sub-menu li::after {
	display: none !important;
	content: none !important;
}

.sub-menu li:last-child {
	border-bottom: none;
}

.sub-menu li a {
	display: block;
	padding: 10px 18px;
	color: #333;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
}

.sub-menu li a:hover {
	background: #f5f5f5;
	padding-left: 23px;
	color: #d32f2f;
}

.sub-menu li a.current {
	color: #d32f2f;
	background: #fff5f5;
	font-weight: 500;
}

/* 右側のアクションボタン */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-tel a,
.header-contact a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 13px;
}

.header-tel a {
	color: #fff;
	background: transparent;
	/* border: 1px solid rgba(255, 255, 255, 0.3); */
}

.header-tel a:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.header-tel img {
	width: 16px;
	height: 16px;
}

.header-contact a {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-contact a:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.header-contact img {
	width: 16px;
	height: 16px;
}

/* ハンバーガーメニューボタン（スマホ用） */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 35px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10001;
}

.hamburger-btn span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* ドロワーメニュー（スマホ用） */
.drawer-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #fff;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 9999;
	overflow-y: auto;
	padding-top: 70px;
}

.drawer-menu.active {
	right: 0;
}

.drawer-menu-list {
	list-style: none;
	margin: 0;
	padding: 15px 0;
}

.drawer-menu-list > li {
	border-bottom: 1px solid #e0e0e0;
}

.drawer-menu-list > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	color: #222;
	text-decoration: none;
	font-weight: 500;
}

.drawer-menu-list > li > a.current {
	color: #d32f2f;
	background: #fff5f5;
}

.sub-menu-toggle-sp {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.3s ease;
}

.drawer-menu-list > li.active > a > .sub-menu-toggle-sp {
	transform: rotate(180deg);
}

.drawer-menu-list .sub-menu {
	position: static;
	box-shadow: none;
	background: #f8f8f8;
	margin: 0;
	padding: 0;
	opacity: 1;
	visibility: visible;
	transform: none;
	display: none;
}

.drawer-menu-list > li.active > .sub-menu {
	display: block;
}

.drawer-menu-list .sub-menu li a {
	padding: 11px 18px 11px 35px;
	font-size: 13px;
}

/* ドロワーメニュー内のコンタクトリンク */
.drawer-contact-links {
	padding: 18px;
	border-top: 2px solid #e0e0e0;
	margin-top: 18px;
}

.drawer-line,
.drawer-tel,
.drawer-contact {
	margin-bottom: 12px;
}

.drawer-line a,
.drawer-tel a,
.drawer-contact a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 13px;
	background: #f5f5f5;
	text-decoration: none;
	color: #222;
	font-size: 13px;
}

.drawer-line a {
	background: #06C755;
	color: #fff;
}

.drawer-tel a {
	background: #fff;
	border: 2px solid #ffd485;
}

.drawer-contact a {
	background: #ffd485;
	font-weight: bold;
}

.drawer-line img,
.drawer-tel img,
.drawer-contact img {
	width: 18px;
	height: 18px;
}

/*footer
--------------------------------------------*/

#footer {
	background: #e9e9e9;
	padding: 65px 0 0;
}

#footer .flex {
	display: flex;
	justify-content: space-between;
	padding: 0 50px;
}

#footer .f_detail_area {
	display: flex;
}

#footer .f_detail_area .f_logo {
	margin: 0 75px 0 5px;
}

#footer .f_nav_area ul {
	-moz-columns: 2;
	     columns: 2;
	-moz-column-gap: 4em;
	     column-gap: 4em;
}

#footer .f_nav_area ul li {
	margin-bottom: 1.5em;
}

#footer .f_nav_area ul li a:hover {
	text-decoration: underline;
}

.copy {
	background: #000;
	margin: 30px 0 0;
	padding: 45px 0;
}

.copy small {
	color: #fff;
	text-align: center;
	display: block;
}





/* =======================================

        CommonElements（下層）

======================================= */

.page_ttl {
	width: 100%;
	padding: 80px;
	box-sizing: border-box;
	/* background: url(/design/themes/ドメイン/img/cmn/page_mainvbg.jpg) no-repeat center center / cover; */
}

.page_ttl .title {
	color: #000;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 30px;
}

/* パンくず */
#breadcrumb {
	padding: 5px 0;
}

#breadcrumb li {
	font-size: 15px;
	display: inline;
	position: relative;
}

#breadcrumb li + li {
	padding-left: 2.5em;
}

#breadcrumb li + li:after {
	content: '|';
	position: absolute;
	left: 1em;
	top: 50%;
	transform: translateY(-50%);
}

#breadcrumb li a:hover {
	opacity: 0.9;
}


/* コンテンツ(共通パーツ)
--------------------------------------------*/

/* 外部js用 */

/* コンテンツ */
.inbox {
	width: 1100px;
	margin: 0 auto;
}

.inbox section {
	margin: 100px 0 0;
}

/* table  */
.cmn_table dl {
	position: relative;
	border-bottom: 1px solid #ddd;
}

.cmn_table dl:first-child {
	border-top: 1px solid #ddd;
}

.cmn_table dl dt,
.cmn_table dl dd {
	vertical-align: top;
	display: table-cell;
	box-sizing: border-box;
}

.cmn_table dl dt {
	width: 180px;
	color: #222;
	text-align: left;
	padding: 15px 20px;
	background-color: #f5f2ed;
}

.cmn_table dl dd {
	width: 820px;
	padding: 15px 20px;
}


/*404ページ
--------------------------------------------*/

#not_found {
	width: 100%;
}

#not_found .midashi_02 {
	text-align: center;
	margin: 0 0 50px;
}

#not_found p {
	text-align: center;
}

#not_found .found_map {
	text-align: center;
	margin: 50px 0 0;
}



.grecaptcha-badge{
	z-index:10000;
	bottom: 95px!important;
}

/* =======================================
   1200px以下：ハンバーガーメニュー表示
======================================= */
@media screen and (max-width: 1200px) {
	/* PC用ナビを非表示 */
	.header-nav.pc-nav {
		display: none !important;
	}

	/* TEL・お問い合わせボタンを非表示 */
	.header-tel,
	.header-contact {
		display: none !important;
	}

	/* ハンバーガーボタンを表示 */
	.hamburger-btn {
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-around !important;
	}

	/* ハンバーガーボタンの線を白色に */
	.hamburger-btn span {
		display: block !important;
		background: #fff !important;
	}

	/* バツ印を黒色に */
	.hamburger-btn.active span {
		background: #000 !important;
	}

	/* リストの「・」を削除 */
	.header-menu,
	.header-menu > li,
	.sub-menu,
	.sub-menu li {
		list-style: none !important;
	}

	.header-menu > li::before,
	.header-menu > li::after,
	.sub-menu li::before,
	.sub-menu li::after {
		display: none !important;
		content: none !important;
	}

	/* ヘッダーコンテナの調整 */
	.header-container {
		padding: 12px 20px !important;
		justify-content: space-between !important;
	}

	/* ロゴを左に */
	.header-logo {
		order: 1;
		margin-right: 0 !important;
	}

	/* ハンバーガーメニューを右端に */
	.header-actions {
		order: 2;
		margin-left: auto !important;
	}

	/* ロゴサイズ調整 */
	.header-logo img {
		height: 40px !important;
	}
}
