﻿/* ---------------------------------------	
共通（原則、不変）
---------------------------------------	
*/
body {
	color: #333333;
	/* font-family: "Shippori Mincho", serif; */
}

.Mincho {
	font-family: "Noto Serif JP", serif !important;
}

.l-contents__inner {
	/* margin-top: 40px !important; */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.page-id-16 .l-contents__inner,
.page-id-17 .l-contents__inner,
.page-id-18 .l-contents__inner {
	margin-top: 0px !important;
}

.smb-section__body {
	/* margin-top: 0px !important; */
}


/* ---------------------------------------	
アイコン
---------------------------------------	
*/

.arrow {
	position: relative;
	display: inline-block;
	width: 11.1px;
	height: 18.1px;
}

.arrow::before,
.arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 1.5px);
	right: 0;
	width: 14px;
	height: 3px;
}



/* パネル初期設定---------------------------------- */
/* パネルの影を消す */
.smb-panels__item {
	box-shadow: none;
}

.smb-panels__item:hover {
	box-shadow: none;
}




/* ---------------------------------------	
フォントサイズ（最初にここを書き出す）
----------------------------------------
*/

/* セクションタイトル */
.section-title {
	font-size: 36px !important;
	margin-bottom: 0px !important;
}

/* セクションサブタイトル */
.section-sub-title {
	font-size: 26px !important;
}

/* コンテンツタイトル */
.contents-title {
	font-size: 24px !important;
}

/* リード文 */
.lead-text {
	font-size: 18px !important;
}

.text1 {
	font-size: 18px !important;
}

.text2 {
	font-size: 16px !important;
}

.text3 {
	font-size: 14px !important;
}


/* ---------------------------------------	
下層ページのアイキャッチ
----------------------------------------
*/

/* 下層ページアイキャッチ画像の高さ */
.c-page-header {
	height: 320px !important;
}


/* アイキャッチのタイトル */
.c-page-header__title {
	font-size: 36px;
	font-weight: bold;
	/* text-shadow: 4px 4px 4px #0B2B20; */
	position: relative;
	font-family: "Noto Serif JP", serif !important;
	letter-spacing: 0.15em;
}

/* タイトルの下にサブタイトル。idを都度編集 */
.page-id-16 .c-page-header__title::after {
	position: absolute;
	content: "COMPANY PROFILE";
	bottom: -38px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #D4AF37;
	white-space: nowrap;
	font-family: "Noto Sans JP", serif !important;
	letter-spacing: 0.15em;
}

.page-id-17 .c-page-header__title::after {
	position: absolute;
	content: "ABOUT SERVICE";
	bottom: -38px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #D4AF37;
	white-space: nowrap;
	font-family: "Noto Sans JP", serif !important;
	letter-spacing: 0.15em;
}

.page-id-18 .c-page-header__title::after {
	position: absolute;
	content: "TERM";
	bottom: -38px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #D4AF37;
	white-space: nowrap;
	font-family: "Noto Sans JP", serif !important;
	letter-spacing: 0.15em;
}

.page-id-19 .c-page-header__title::after {
	position: absolute;
	content: "CONTACT";
	bottom: -38px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #D4AF37;
	white-space: nowrap;
	font-family: "Noto Sans JP", serif !important;
	letter-spacing: 0.15em;
}

@media (max-width: 430px) {
	.c-page-header__title {
		font-size: 36px;
	}

	.c-page-header__bgimage>img,
	.c-page-header__bgimage>picture>img {
		object-position: 65% 50%;
	}
}



/* ---------------------------------------	
ボタン
---------------------------------------	
*/


/* ホバーで色が変わるパターン */
.btn {
	transition: 0.4s;
	border: none;
	position: relative;
}

.btn:hover {
	border-color: white !important;
	color: white !important;
	z-index: 10;
}

.btn:hover a {
	background-color: #333333 !important;
	color: white !important;
	border: solid 3px #333333 !important;
	z-index: 10;
}

.btn a {
	border: solid 3px #333333 !important;
	color: #333333 !important;
	font-size: 16px;
	/* ホバー時に暗くなる事象の解消 */
	filter: unset !important;
}

.btn a:hover {
	color: white !important;
}

/* 矢印アイコン */
.btn::before {
	position: absolute;
	content: "";
	/* background: url(https://ryo-web-catalyst.com/sample-site5/wp-content/uploads/2025/07/btn-arrow-b.png); */
	background: url(https://loveletter.ne.jp/wp-content/uploads/2025/07/btn-arrow-b.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 52%;
	/* 設定箇所➀ */
	right: 10px;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 13px;
	z-index: 10;
}

.btn:hover::before {
	position: absolute;
	content: "";
	background: url(https://loveletter.ne.jp/wp-content/uploads/2025/07/btn-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 52%;
	/* 設定箇所➀ */
	right: 10px;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 13px;
	z-index: 10;
}


/* ホバーで動くパターン */
.btn {
	/* width: 200px !important; */
	transition: 0.4s;
	border: none;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn:hover {
	/* color: white !important;
	z-index: 10; */
	transform: translateY(10px);
}

.btn a {
	color: white !important;
	background-color: #FF8D69 !important;
	font-size: 16px;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

.btn a:hover {
	filter: unset !important;
}



/* ---------------------------------------	
ヘッダー	
---------------------------------------	
*/
/* headerにあてると投稿ページのトップにも反映されてしまう */
.l-header {
	background-color: white !important;
	margin: 0;
	padding: 0px 0px;
}

.l-1row-header {
	width: 100%;
}

/* メニュー間の間隔 */
.l-header li {
	margin-left: 26px !important;
}

/* ヘッダーメニューのフォントサイズ */
.l-header li a {
	font-size: 14px !important;
	padding: 0px !important;
}

.l-header__drop-nav .p-drop-nav li {
	padding: 0px !important;
	margin-left: 16px !important;
}

/* ヘッダーメニューの補足説明のフォントサイズ調整 */
.l-header li small {
	font-size: 12px !important;
}

/* ヘッダーの中身のコンテンツ幅の設定 */
.l-header__content {
	/* max-width: 1260px !important; */
	/* margin: 0 auto; */
	margin: 0px 0px 0px auto !important;
	/* お問い合わせを右寄せしたいなら、padding-leftを40pxにする。 */
	padding: 0 0px 0px 40px;
}

.l-header .c-fluid-container {
	padding: 0px;
}

.l-header .c-row {
	margin: 0px !important;
}

header .c-row__col {
	padding: 0px !important;
}

/* ロゴを入れてる箱。ロゴにホバーして始めてポインター切り替え*/
header .l-1row-header__branding {
	padding: 0px !important;
	/* display: flex; */
}

/* ロゴのサイズ分だけに幅を調整 */
.c-site-branding__title {
	display: flex;
}

/* ヘッダーメニューを色塗りしたい場合。実サイトから"item-num"を確認 */
.l-header .menu-item-28 a {
	color: white !important;
	display: flex;
	height: 60px;
	width: 120px;
	background-color: #1A2B4C;
	border: 2px solid #1A2B4C;
	transition: 0.4s;
}

.l-header .menu-item-28 a:hover {
	color: black !important;
	background-color: white;
	border: 2px solid #1A2B4C;
}

@media (max-width: 900px) {
	.l-header {
		padding: 10px 0px;
	}

	.c-site-branding__title .custom-logo {
		width: 160px !important;
	}
}

@media (max-width: 430px) {
	.l-header__content {
		padding: 0 20px;
	}
}


/* ---------------------------------------	
下層サブメニューバー
※メニューの中に、サブメニューを入れ込むケース
---------------------------------------	
*/
/* 表示時間 */
.p-global-nav .c-navbar__submenu[aria-hidden=false] {
	/* --_transition-delay: 0.1s; */
}

/* ▲の色 */
.p-global-nav .c-navbar__item[aria-haspopup=true]:before {
	/* transition: 0.1s; */
	border-bottom-color: navy;
}

/* サブメニューバーエリア */
.c-navbar__submenu {
	width: 200px !important;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
	border-radius: 6px;
	/* background-color: rgba(20, 100, 86, 0.7); */
	background-color: #F4F7F4 !important;
}

.c-navbar__submenu li {
	margin: 10px 28px 10px 0px !important;
	position: relative;
}

.c-navbar__submenu li a {
	display: inline-block;
	padding-left: 20px !important;
	position: relative;
	color: #00523A !important;
	font-weight: 600;
}

/* 右矢印 before afterでセット */
.c-navbar__submenu li a::before {
	content: "";
	position: absolute;
	top: calc(53% - 1.5px);
	right: -20px;
	width: 6px;
	height: 2px;
	border-radius: 9999px;
	background-color: #00523A;
	transform-origin: calc(100% - 1.5px) 50%;
	transform: rotate(45deg);
}

.c-navbar__submenu li a::after {
	content: "";
	position: absolute;
	top: calc(58% - 1.5px);
	right: -20px;
	width: 6px;
	height: 2px;
	border-radius: 9999px;
	background-color: #00523A;
	transform-origin: calc(100% - 1.5px) 50%;
	transform: rotate(-45deg);
}

/* 出てくるブロックを右側にずらす。ずらさないと真ん中に出てくる */
.p-global-nav .c-navbar__item>.c-navbar__submenu {
	transform: translateX(-15%);
}

/* ---------------------------------------	
ドロワーナビ	
---------------------------------------	
*/

/* タブレット以下の幅で表示されるハンバーガーメニューを開いたときの背景色 */
#drawer-nav {
	backdrop-filter: blur(5px);
	background: linear-gradient(90deg, rgba(8, 85, 194, 0.85) 0%, rgba(17, 70, 145, 0.85) 67%, rgba(27, 54, 92, 0.85) 100%);
	/* background: rgba(229, 246, 225, 0.7); */
}


/* ハンバーガーメニュー押下後の×の色 */
.c-drawer .c-hamburger-btn__bar {
	/* background-color: #3333; */
}

/* ハンバーガーメニュー押下後のMENUの色 */
.c-hamburger-btn__label {
	/* color: #3333; */
}

/* ドロワーメニューの配置。ハンバーガーメニュー除く。paddingを編集 */
.c-drawer__inner {
	padding-left: 60px !important;
	padding-right: 400px !important;
	margin-top: 0px !important;
}

/* ハンバーガーメニューをクリックした後の「×」の位置の調整 */
.c-drawer__controls {
	left: 0 !important;
	right: 0 !important;
	padding-right: 40px;
}

/* ナビメニューの編集。英語で書かないとidが文字化けする */
#drawer-nav .c-drawer__menu {
	padding-top: 50px !important;
	display: flex;
	flex-direction: column;
}

/* リストのトップに配置した画像 */
.drawer_nav-img {
	width: 100%;
	background-color: white;
}

/* 子メニューを出すための▼を消す */
.c-ic-angle-right:before {
	display: none !important;
}

.c-drawer__submenu {
	visibility: visible !important;
	display: block !important;
	padding-top: 18px !important;
	height: auto !important;
}

#drawer-nav .menu-item-28 {
	/* border: none !important; */
	margin-bottom: 0px !important;
}

/* リストの装飾 */
#drawer-nav li {
	font-size: 18px;
	line-height: 20px;
	padding: 0px;
	margin-bottom: 30px;
	/* display: inline-block; */
	border-bottom: 1px solid white;
	color: white;
}

@media (max-width: 430px) {
	.c-drawer__controls {
		padding-right: 20px;
	}

	.c-drawer__inner {
		padding-left: 30px !important;
		padding-right: 120px !important;
		padding-top: 50px !important;
	}
}


/* ---------------------------------------	
フッターナビ（スマホ）
---------------------------------------	
*/

.p-footer-sticky-nav .menu-item-47 {
	background-color: #D4AF37;
}

.p-footer-sticky-nav .menu-item-48 {
	background-color: #1E1E1E;
}

.p-footer-sticky-nav .c-navbar__item>a {
	display: flex;
	color: white;
	font-size: 14px;
	padding: 10px 0px;
}

.p-footer-sticky-nav a>svg {
	display: block;
	margin: 0px 10px 0px 0px !important;
	width: 24px;
	height: 24px;
	color: white;
}


/* ---------------------------------------	
ドロップナビ
---------------------------------------	
*/
/* スクロールで表示されるドロップナビ */
.l-header__drop-nav .p-drop-nav {
	background-color: white !important;
	margin: 0;
	/* padding-top: 10px;
	padding-bottom: 10px; */
}

.l-header__drop-nav .p-drop-nav .c-container {
	padding: 4px 40px !important;
	/* 個々の縦方向で高さを微調整する */
	max-width: 1180px !important;
	/* コンテンツ幅1180px + 左右padding40px */
	margin: 0 auto;
}

.l-header__drop-nav .p-drop-nav li {
	padding: 0px !important;
}

.l-header__drop-nav .p-drop-nav li {
	margin-left: 36px !important;
	/* ここと153行が同じ数値にならないとずれる */
	display: flex;
	/* padding-top: 14px !important; */
}

.p-drop-nav .c-site-branding {
	padding: 0px !important;
	margin: 0px !important;
}

/* 実サイトから"item-num"を確認 */
.p-drop-nav .menu-item-35 a {
	background-color: #f5d547;
	padding: 2px 16px 3px 16px !important;
	border-radius: 20px;
	transition: 0.4s;
}

/* 実サイトから"item-num"を確認 */
.p-drop-nav .menu-item-35 a:hover {
	background-color: white;
	color: #FF6810;
}



/* ---------------------------------------	
フッター	
---------------------------------------	
*/
/* ウィジェットのフッターのみ背景色を付けられる */
.l-footer {
	background-color: #102944;
	color: white;
	border: none !important;
	/* margin-top: 30px!important; */
}

.l-footer--default .l-footer-widget-area {
	max-width: 1260px !important;
	/* コンテンツ幅1180px + 左右padding40px */
	margin: 0 auto;
	padding: 20px 40px 0px !important;
	height: 60px !important;
}

/* ©を除いたフッターメニューの上部の間隔を広げたい場合は、padding-topとheightをそれぞれ均等にpxを加える。
ベースはpadding-topが10pxでheightが50px*/
/* フッターメニューの下部の間隔を広げたい場合は、c-copyrightのpadding-topを調整する。*/

/* コピーライト */
.c-copyright {
	padding: 30px 0px 8px !important;
	/* height: 30px!important; */
	text-align: center;
	background-color: #102944;
}

.footer-box {
	display: flex;
	justify-content: space-between;
	height: 100%;
	align-items: center;
}

.l-footer .l-footer-widget-area__item {
	margin-bottom: 0px !important;
	height: 100%;
	padding: 0px !important;
}

.l-footer .c-fluid-container {
	padding: 0;
	height: 100%;
}

.l-footer .c-widget {
	height: 100%;
}

.l-footer .c-row--lg-margin-l {
	height: 100%;
	width: 100%;
	margin: 0 auto !important;
}

.l-footer .footer-logo {
	width: 200px !important;
	margin: 0px !important;
	/* background-color: white; */
	/* ロゴを中央に配置 */
	display: flex;
	align-items: center;
	padding: 0px 10px;
}

.l-footer .widget_nav_menu {
	margin: 0px !important;
}

.l-footer ul {
	display: flex;
	height: 40px !important;
	align-items: center;
}

.footer-contents-box {
	height: 240px;
}

.footer-contents-box2 {
	width: 390px;
	gap: 16px !important;
	margin: 0 auto;
}

.footer-contents-box2 a {
	color: white;
	transition: 0.4s;
	font-size: 12px;
}

.footer-contents-box2 a:hover {
	color: rgb(180, 180, 180);
}



.l-footer .svg-inline--fa {
	width: 26px;
	height: 26px;
}

.l-footer .copy-right {
	font-size: 12px;
	line-height: 14px;
	margin-top: 10px !important;
}


/* 特定のページのウィジェット削除 */
.page-id-20 .l-footer-widget-area {
	/* display: none; */
}

.l-footer__body {
	padding: 10px !important;
	text-align: center;
}


/* フッターメニューテキストの幅調整 */
.l-footer .menu-global-nav-container li {
	margin-left: 12px !important;
	margin-right: 12px !important;
	margin-top: 0px !important;
}


.l-footer ul li {
	font-size: 12px;
	margin: 0px !important;
	padding-left: 20px;
	position: relative;
}

/* .l-footer ul li::before {
	position: absolute;
	content: "－";
	font-size: 12px;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
} */

@media (max-width: 430px) {
	.l-footer .widget_nav_menu {
		display: none;
	}
}

/* ---------------------------------------	
フッターナビ（スマホ）
---------------------------------------	
*/

.p-footer-sticky-nav .menu-item-47 {
	background-color: #D4AF37;
}

.p-footer-sticky-nav .menu-item-48 {
	background-color: #00523A;
}

.p-footer-sticky-nav .c-navbar__item>a {
	display: flex;
	color: white;
	font-size: 14px;
	padding: 10px 0px;
}

/* アイコン画像 */
.p-footer-sticky-nav a>svg {
	display: block;
	margin: 0px 10px 0px 0px !important;
	width: 24px;
	height: 24px;
	color: white;
}



/* ----------------------------------------------------------------------------	
TOPページ
-------------------------------------------------------------------------------	
*/
/* ---------------------------------------	
FV
---------------------------------------	
*/

.top_fv {
	height: 600px;
}

/* サブキャッチコピー */
.top_fv .text {
	color: #D4AF37 !important;
	font-size: 14px !important;
	letter-spacing: 0.15em;
	margin-bottom: 16px !important;
	font-weight: 500;
}

/* メインタイトル h1 */
.top_fv .title {
	color: #ffffff !important;
	font-size: clamp(1.8rem, 4.5vw, 3.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	letter-spacing: 0.08em;
	margin-top: 8px !important;
	margin-bottom: 40px !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	white-space: nowrap;
}

/* ボタングループ */
.top_fv .pc-btn {
	display: flex !important;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 0;
}

/* お問い合わせボタン（ゴールドグラデーション） */
.top_fv .btn1 .smb-btn {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #ffffff !important;
	color: #ffffff !important;
	border: 2px solid #A07818 !important;
	border-radius: 0 !important;
	padding: 14px 26px !important;
	font-weight: 500;
	letter-spacing: 0.05em;
	outline: 1px solid rgba(255, 255, 255, 0.55);
	outline-offset: -7px;
	transition: color 0.3s, border-color 0.3s, outline-color 0.3s;
	filter: unset !important;
}

.top_fv .btn1 .smb-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #A87820 0%, #D4AF37 35%, #F5D060 55%, #D4AF37 75%, #A87820 100%);
	z-index: -1;
	transition: opacity 0.3s;
	pointer-events: none;
}

.top_fv .btn1 .smb-btn:hover {
	color: #D4AF37 !important;
	border-color: #D4AF37 !important;
	outline-color: transparent;
	filter: unset !important;
}

.top_fv .btn1 .smb-btn:hover::before {
	opacity: 0;
}

/* 商品概要ボタン（透明ボーダー白） */
.top_fv .btn2 .smb-btn {
	background: transparent !important;
	color: #ffffff !important;
	border: 1px solid #ffffff !important;
	border-radius: 0 !important;
	padding: 14px 26px !important;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: background 0.3s, color 0.3s;
	filter: unset !important;
}

.top_fv .btn2 .smb-btn:hover {
	background: #ffffff !important;
	color: #1A2B4C !important;
	filter: unset !important;
}

@media (max-width:900px) {
	.top_fv {
		height: 600px;
	}

	.smb-section--wide {
		--smb-section--min-height: 600px;
	}
}

@media (max-width:800px) {}


@media (max-width: 768px) {}


@media (max-width: 430px) {
	.top_fv .c-container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* ---------------------------------------	
About
---------------------------------------	
*/
.top_about {
	padding-left: 40px;
	padding-right: 40px;
}

.top_about {
	position: relative;
}

.top_about::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background: rgba(26, 43, 76, 0.05) !important;
	z-index: -10;
}


.top_about .box {
	align-items: stretch;
}

/* テキスト側の見出し */
.top_about .text-box .title {
	color: #1A2B4C !important;
	font-size: 1.75rem !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
	white-space: nowrap;
}

.top_about .text-box .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px 0 0;
}

/* 本文テキスト */
.top_about .text-box .text {
	color: #6B7280 !important;
	line-height: 1.8;
	margin-bottom: 32px !important;
}

/* 会社概要を見るボタン（テキストリンク風） */
.top_about .btn3 .smb-btn {
	background: transparent !important;
	color: #1A2B4C !important;
	border: none !important;
	border-bottom: 1px solid #1A2B4C !important;
	border-radius: 0 !important;
	padding: 4px 24px 4px 0 !important;
	font-weight: 500;
	width: auto !important;
	transition: color 0.3s, border-color 0.3s;
	filter: unset !important;
}

.top_about .btn3 .smb-btn:hover {
	color: #D4AF37 !important;
	border-bottom-color: #D4AF37 !important;
	filter: unset !important;
}

/* 画像ボックスのデコレーション枠 */
.top_about .img-box {
	position: relative;
}

.top_about .img-box::before {
	content: '';
	position: absolute;
	top: -12px;
	left: -12px;
	right: 12px;
	bottom: -12px;
	border: 1px solid rgba(26, 43, 76, 0.1);
	z-index: 0;
	border-radius: 2px;
}

.top_about .img-box .img {
	position: relative;
	z-index: 1;
}

.top_about .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 430px) {
	.top_about {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* ---------------------------------------	
Reason
---------------------------------------	
*/
.top_reason {
	padding-left: 40px;
	padding-right: 40px;
}

/* セクションタイトル（白・センター・ゴールドアンダーライン） */
.top_reason .title {
	color: #ffffff !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

.top_reason .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* リード文 */
.top_reason .leade-text {
	color: #ffffff !important;
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px !important;
	line-height: 1.8;
}

/* パネル（カード）本体 */
.top_reason .smb-panels__item {
	position: relative !important;
	overflow: hidden;
	border-radius: 8px !important;
	background: #ffffff !important;
	border: 1px solid #F3F4F6;
	padding: 48px 32px 32px !important;
	text-align: center;
	transition: box-shadow 0.5s !important;
}

.top_reason .smb-panels__item:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.top_reason .smb-panels__item__body {
	padding: 0 !important;
}

/* 番号バッジ（左上ゴールド） */
.top_reason .num {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	background: #D4AF37;
	color: #ffffff;
	font-weight: bold;
	font-size: 18px !important;
	padding: 8px 18px !important;
	border-radius: 0 0 16px 0;
	margin: 0 !important;
	line-height: 1.4;
	z-index: 10;
}

/* アイコンコンテナ（Tailwindクラスの代替スタイル） */
.top_reason .smb-panels__item__body>div {
	width: 96px;
	height: 96px;
	border-radius: 9999px;
	background-color: rgba(243, 244, 246, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 48px;
	color: #1A2B4C;
	transition: color 0.5s, transform 0.5s;
}

.top_reason .smb-panels__item:hover .smb-panels__item__body>div {
	color: #D4AF37;
	transform: scale(1.1);
}

/* カード見出し */
.top_reason .content-title {
	color: #1A2B4C !important;
	font-size: 1.25rem !important;
	font-weight: bold !important;
	text-align: center;
	border-bottom: 1px solid #F3F4F6;
	padding-bottom: 16px !important;
	margin-bottom: 16px !important;
}

/* カード本文 */
.top_reason .panel .text {
	color: #6B7280 !important;
	font-size: 0.875rem !important;
	line-height: 1.8;
	text-align: center;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.top_reason .panels {
		max-width: 600px !important;
	}
}

@media (max-width: 430px) {
	.top_reason {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* ---------------------------------------	
Features
---------------------------------------	
*/

.top_feature {
	position: relative;
	padding-left: 40px;
	padding-right: 40px;
}

/* 疑似要素で右側にグレー背景を配置 */
.top_feature::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background-color: #F3F4F6;
	z-index: 0;
	pointer-events: none;
}

/* 子要素を疑似要素の上に表示 */
.top_feature .smb-section__inner {
	position: relative;
	z-index: 1;
}

/* セクションタイトル */
.top_feature .title {
	color: #1A2B4C !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

.top_feature .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* リード文 */
.top_feature .leade-text {
	color: #6B7280 !important;
	text-align: center;
	max-width: 760px;
	margin: 0 auto 80px !important;
	line-height: 1.8;
}

/* 各コンテンツ行（Zパターン） */
.top_feature .box {
	margin-bottom: 80px !important;
	align-items: center !important;
	/* gap: 48px; */
}

/* 画像ボックス */
.top_feature .img-box {
	position: relative;
}

.top_feature .img-box::before {
	content: '';
	position: absolute;
	inset: -16px;
	border-radius: 4px;
	z-index: 0;
	transition: transform 0.5s;
}

/* 1・3番目ボックス（画像左）：ゴールドアクセント */
.top_feature .smb-section__body>div:nth-of-type(1) .img-box::before,
.top_feature .smb-section__body>div:nth-of-type(3) .img-box::before {
	background: rgba(212, 175, 55, 0.2);
	transform: rotate(2deg);
}

/* 2番目ボックス（画像右）：ネイビーアクセント */
.top_feature .smb-section__body>div:nth-of-type(2) .img-box::before {
	background: rgba(42, 60, 99, 0.1);
	transform: rotate(-2deg);
}

/* ホバーで回転が戻る */
.top_feature .img-box:hover::before {
	transform: rotate(0deg);
}

.top_feature .img-box .img {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.top_feature .img-box .img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: transform 0.7s;
}

.top_feature .img-box:hover .img img {
	transform: scale(1.05);
}

/* テキストボックス（ゴールド左ボーダー） */
.top_feature .text-box {
	position: relative;
	padding-left: 24px !important;
	border-left: 4px solid #D4AF37;
}

/* 透かし番号 */
.top_feature .text-box .num {
	position: absolute !important;
	font-size: 120px !important;
	font-weight: bold;
	/* color: rgba(0, 0, 0, 0.06) !important; */
	color: rgba(212, 175, 55, 0.4) !important;
	z-index: 0;
	line-height: 1;
	right: -10px;
	bottom: 80px;
	pointer-events: none;
	margin: 0 !important;
}

/* コンテンツタイトル */
.top_feature .text-box .content-title {
	color: #1A2B4C !important;
	font-size: 1.75rem !important;
	font-weight: 700 !important;
	line-height: 1.4;
	margin-bottom: 24px !important;
	position: relative;
	z-index: 1;
}

/* 本文テキスト */
.top_feature .text-box .text {
	color: #6B7280 !important;
	line-height: 1.8;
	font-size: 1rem !important;
	position: relative;
	z-index: 1;
	margin: 0 !important;
}

/* Voicelyを詳しく見るボタン */
.top_feature .btn4 .smb-btn {
	background: #1A2B4C !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 16px 40px !important;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: background 0.3s, box-shadow 0.3s;
	filter: unset !important;
}

.top_feature .btn4 .smb-btn:hover {
	background: #2A3C63 !important;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
	filter: unset !important;
}

.top_feature .smb-buttons {
	margin-top: 48px;
}

@media (max-width: 900px) {
	.column-reverse {
		flex-direction: column-reverse !important;
	}

	.top_feature .box {
		max-width: 600px !important;
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.top_feature .box {
		margin-bottom: 60px !important;
	}

	.top_feature .img-box .img img {
		height: 240px;
	}

	.top_feature .text-box .content-title {
		font-size: 1.5rem !important;
	}
}

@media (max-width: 430px) {
	.top_feature {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.top_feature .leade-text {
		margin-bottom: 48px !important;
	}

	.top_feature .text-box {
		padding-left: 16px !important;
	}

	.top_feature .text-box .num {
		right: -10px;
		top: 0px;
	}
}


/* ---------------------------------------
CTA（contact セクション）
---------------------------------------
*/

.contact .smb-section__body {
	position: relative;
	z-index: 1;
}

/* CTAタイトル */
.contact .cta-title {
	color: #ffffff !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

/* CTA本文 */
.contact .smb-section__body>p {
	color: #D1D5DB !important;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 32px !important;
}

/* お問い合わせボタン（ゴールドグラデーション） */
.contact .btn1 .smb-btn {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #ffffff !important;
	color: #ffffff !important;
	border: 2px solid #A07818 !important;
	border-radius: 0 !important;
	padding: 16px 40px !important;
	font-weight: 500;
	letter-spacing: 0.05em;
	outline: 1px solid rgba(255, 255, 255, 0.55);
	outline-offset: -7px;
	transition: color 0.3s, border-color 0.3s, outline-color 0.3s;
	filter: unset !important;
}

.contact .btn1 .smb-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #A87820 0%, #D4AF37 35%, #F5D060 55%, #D4AF37 75%, #A87820 100%);
	z-index: -1;
	transition: opacity 0.3s;
	pointer-events: none;
}

.contact .btn1 .smb-btn:hover {
	color: #D4AF37 !important;
	border-color: #D4AF37 !important;
	outline-color: transparent;
	filter: unset !important;
}

.contact .btn1 .smb-btn:hover::before {
	opacity: 0;
}

/* HR区切り線 */
.contact hr {
	border-color: rgba(255, 255, 255, 0.3) !important;
	margin: 32px 0 !important;
}

/* 受付時間テキスト */
.contact .smb-section__body>p[style*="font-size:12px"] {
	color: rgba(255, 255, 255, 0.7) !important;
	text-align: center;
}

@media (max-width: 430px) {
	.contact {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* ---------------------------------------	
会社概要
---------------------------------------	
*/
/* =======================================
sub_greeting（挨拶セクション：左画像・右テキスト）
======================================= */

.sub_greeting {
	padding: 80px 40px;
	background: #ffffff;
}

/* 2カラム */
.sub_greeting .box {
	align-items: center;
	gap: 64px;
}

/* 画像ボックスのデコレーション */
.sub_greeting .img-box {
	position: relative;
}

.sub_greeting .img-box::before {
	content: '';
	position: absolute;
	inset: -16px;
	background: rgba(243, 244, 246, 0.5);
	transform: translate(-16px, -16px);
	border-radius: 4px;
	z-index: 0;
}

.sub_greeting .img-box .img {
	position: relative;
	z-index: 1;
}

.sub_greeting .img-box img {
	width: 100%;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

/* 見出し */
.sub_greeting .text-box .title {
	color: #1A2B4C !important;
	font-size: 1.75rem !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

/* ゴールド左アクセントライン */
.sub_greeting .text-box .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px 0 0;
}

/* 本文 */
.sub_greeting .text-box .text {
	color: #6B7280 !important;
	line-height: 1.8;
	font-size: 1.125rem !important;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.sub_greeting .box {
		gap: 64px;
		flex-direction: column-reverse;
		max-width: 600px;
	}
}

@media (max-width: 430px) {
	.sub_greeting {
		padding: 60px 20px;
	}
}


/* =======================================
sub_company（会社情報テーブルセクション）
======================================= */

.sub_company {
	padding: 80px 40px;
	background: rgba(243, 244, 246, 0.4);
}

/* セクションタイトル（中央・ゴールドアンダーライン） */
.sub_company .title {
	color: #1A2B4C !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 48px !important;
}

.sub_company .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* 情報テーブル全体 */
.sub_company .smb-information {
	background: #ffffff;
	border-top: 2px solid #1A2B4C;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	max-width: 800px;
	margin: 0 auto;
}

/* 各行 */
.smb-information__item {
	border-bottom: 1px solid #F3F4F6;
}

.last .smb-information__item {
	border-bottom: none;
}

.sub_company .smb-information__item .c-row {
	margin: 0 !important;
}

/* 項目名（左列） */
.sub_company .smb-information__item__label {
	color: #1A2B4C;
	font-weight: 500;
	background-color: #F9FAFB;
	padding: 20px 24px !important;
	font-size: 0.9rem;
}

/* 内容（右列） */
.sub_company .smb-information__item__body {
	color: #374151;
	padding: 20px 24px !important;
	line-height: 1.8;
}

.sub_company .smb-information__item__body p {
	margin: 0 !important;
}

.sub_company .smb-information__item>.c-row>.c-row__col:first-child {
	padding: 0px !important;
	margin-bottom: 0px !important;
	margin-right: 0px !important;
}

.sub_company .smb-information__item>.c-row>.c-row__col:last-child {
	flex-basis: calc(100% - 240px);
	max-width: calc(100% - 240px);
	padding: 0px !important;
	margin-bottom: 0px !important;
}

/* 行の下線：first-childのみ表示、last-childはなし */
.sub_company .last>.c-row>.c-row__col {
	border-bottom: none !important;
	padding-bottom: 1.5rem;
}


.sub_company .last>.c-row>.c-row__col {
	border: none !important;
	padding-bottom: 1.5rem;
}


@media (max-width: 430px) {
	.sub_company {
		padding: 60px 20px;
	}

	.sub_company .smb-information__item__label,
	.sub_company .smb-information__item__body {
		padding: 12px 16px !important;
	}

	.sub_company .smb-information__item>.c-row>.c-row__col {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}

	.sub_greeting .text-box .title {
		font-size: 1.5rem !important;
	}
}


/* ---------------------------------------	
商品概要
---------------------------------------	
*/

/* =======================================
sub_about（Voicelyとは：リード文＋3画像横並び）
======================================= */

.sub_about {
	padding: 80px 40px;
	background: #ffffff;
}

/* セクションタイトル */
.sub_about .title {
	color: #1A2B4C !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

.sub_about .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* リード文 */
.sub_about .lead-text {
	color: #6B7280 !important;
	text-align: center;
	line-height: 1.8;
	font-size: 1.125rem !important;
	max-width: 760px;
	margin: 0 auto 48px !important;
}

/* 3画像横並び */
.sub_about .box {
	gap: 24px;
	align-items: stretch;
}

.sub_about .img-box .img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) {
	.sub_about .box {
		max-width: 500px;
		gap: 48px;
	}

	.sub_about .img-box .img {
		height: 500px;
	}

	.sub_about .img-box .img img {
		height: 100%;
	}
}

@media (max-width: 430px) {
	.sub_about {
		padding: 60px 16px;
	}

	.sub_about .box {
		gap: 20px;
	}

	.sub_about .img-box .img {
		height: 350px;
	}

	.sub_about .img-box .img img {
		height: 100%;
	}
}


/* =======================================
sub_problem（こんなお悩みはありませんか：リスト＋画像）
======================================= */

.sub_problem {
	padding: 80px 40px;
	background: rgba(243, 244, 246, 0.3);
}

/* セクションタイトル */
.sub_problem .title {
	color: #1A2B4C !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

.sub_problem .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* リード文 */
.sub_problem .lead-text {
	color: #6B7280 !important;
	text-align: center;
	line-height: 1.8;
	max-width: 640px;
	margin: 0 auto 48px !important;
}

/* テキスト側（リスト枠） */
.sub_problem .text-box {
	background: #ffffff;
	border-top: 4px solid #1A2B4C;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	padding: 32px !important;
}

/* リスト */
.sub_problem .lists {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.sub_problem .list {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid #F3F4F6;
	color: #374151;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 !important;
}

.sub_problem .list:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* ゴールドのチェックアイコン（疑似要素） */
.sub_problem .list::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #D4AF37;
	font-size: 1.375rem;
	margin-top: 2px;
	flex-shrink: 0;
}

/* 画像側 */
.sub_problem .img-box img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 430px) {
	.sub_problem {
		padding: 60px 20px;
	}

	.sub_problem .text-box {
		padding: 20px !important;
	}
}


/* =======================================
sub_service（Voicelyでできること：パネルカード2列）
======================================= */

.sub_service {
	padding: 80px 40px;
	background: #ffffff;
}

/* セクションタイトル */
.sub_service .title {
	color: #1A2B4C !important;
	font-size: 1.875rem !important;
	font-weight: 700 !important;
	text-align: center;
	letter-spacing: 0.08em;
	margin-bottom: 24px !important;
}

.sub_service .title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: #D4AF37;
	margin: 16px auto 0;
}

/* リード文（HTMLのtypo: leade-text を両方対応） */
.sub_service .leade-text,
.sub_service .lead-text {
	color: #6B7280 !important;
	text-align: center;
	line-height: 1.8;
	max-width: 760px;
	margin: 0 auto 48px !important;
}

/* パネルカード */
.sub_service .smb-panels__item {
	border: 1px solid #F3F4F6;
	border-radius: 4px;
	padding: 0 !important;
	overflow: hidden;
	/* background: #ffffff; */
	background: rgba(226, 226, 226, 0.15);
	transition: box-shadow 0.3s !important;
}

.sub_service .smb-panels__item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.sub_service .smb-panels__item__body {
	padding: 0 !important;
}

/* パネル見出し */
.sub_service .content-title {
	color: #ffffff !important;
	background-color: #1A2B4C;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	padding: 20px 24px !important;
	margin: 0 !important;
	line-height: 1.5;
}

/* リスト個別padding */
.sub_service .lists {
	padding: 10px 24px 0 !important;
	margin: 20px !important;
}

/* 画像 */
.sub_service .img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 16px;
}

/* 本文 */
.sub_service .text {
	color: #6B7280 !important;
	font-size: 0.875rem !important;
	line-height: 1.8;
	margin-bottom: 24px !important;
}

/* 活用イメージ枠 */
.sub_service .smb-panels__item__body>.box {
	background: #e5e7eb;
	padding: 16px !important;
	border-radius: 4px;
	margin: 16px 16px 16px !important;
}

/* 「【活用イメージ】」ラベル */
.sub_service .text2 {
	color: #1A2B4C;
	font-weight: 700;
	font-size: 0.875rem !important;
	margin-bottom: 4px !important;
}

/* 活用イメージ本文 */
.sub_service .text3 {
	color: #374151;
	font-size: 0.875rem !important;
	line-height: 1.7;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.sub_service .panels {
		max-width: 600px;
	}
}

@media (max-width: 430px) {
	.sub_service {
		padding: 60px 16px;
	}

}

/* ---------------------------------------	
利用規約
---------------------------------------	
*/
.term {
	padding-left: 40px !important;
	padding-right: 40px !important;
}

@media (max-width: 430px) {
	.term {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* ---------------------------------------	
ご予約・お問い合わせ
---------------------------------------	
*/
.contact {
	padding: 0px 40px 60px;
}

.smf-form--business .smf-item__col--label {
	flex: 0 0 19em;
	max-width: 19em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.smf-form--business .smf-item__col--controls {
	flex: 1 1 calc(100% - 19em);
	max-width: calc(100% - 19em);
	padding-right: 0px !important;
}

.smf-form .smf-text-control__control {
	font-family: "Shippori Mincho" !important;
	max-width: 245px !important;
	width: 100% !important;
}

.smf-action .smf-button-control__control {
	/* background: #132F18!important; */
	/* color: white; */
	font-family: "Shippori Mincho" !important;
	letter-spacing: 0.15rem;
	/* border-radius: 0px; */
}


@media (max-width:900px) {}

@media (max-width:430px) {
	.sub_contact {
		padding: 0px 20px 60px;
	}

	.smf-form--business .smf-item__col--label {
		max-width: 100%;
		padding: 20px !important;
	}

	.smf-form--business .smf-item__col--controls {
		max-width: 100%;
		padding: 20px 0px 20px 20px !important;
	}
}


/* ---------------------------------------	
privacy-policy
---------------------------------------	
*/
.privacy-sub_title {
	font-size: 20px;
}

.privacy-policy {
	padding-left: 40px !important;
	padding-right: 40px !important;
}

.privacy-policy-box .smf-item--divider .smf-item__col {
	max-width: 100% !important;
}

.privacy-policy-box .smf-checkboxes-control__control {
	text-align: center;
}

.privacy-policy-text {
	height: 250px;
	width: 100%;
	padding: 16px;
	border: 1px solid #CCC;
	overflow: auto;
	margin: 40px auto 20px;
	background: #ffffff;
}

.privacy-policy-text h3 {
	margin-bottom: 30px !important;
}

/* チェックボックス */
.left .smf-checkboxes-control__control {
	text-align: left !important;
}

.smf-error-messages {
	text-align: center !important;
	margin-top: -60px !important;
	margin-bottom: 60px !important;
}

form[data-screen="confirm"] .privacy-policy-box {
	display: none;
}

.desired-date .smf-item__controls {
	display: flex;
	justify-content: start;
}

.desired-date .smf-placeholder {
	margin: 0px 40px 0px 0px !important;
}




/* ---------------------------------------	
media-text タイトルタグ「none」にすれば、自由に作れる
タブレットで画面切り替えver.
---------------------------------------	
*/
.mt-section {
	padding: 80px 40px;
}

.mt-section .mt-box {
	margin-top: 40px !important;
}

/* コンテンツ幅の調整（テキスト） */
.mt-section .c-row__col--md-1-3 {
	--_item-width: 50%;
}

/* コンテンツ幅の調整（画像） */
.mt-section .c-row__col--md-2-3 {
	--_item-width: 50%;
}

@media (max-width:430px) {
	.mt-section {
		padding: 60px 20px;
	}

	/* コンテンツ幅の調整（テキスト） */
	.mt-section .c-row__col--md-1-3 {
		--_item-width: 100%;
		/* margin-bottom: ; */
	}

	/* コンテンツ幅の調整（画像） */
	.mt-section .c-row__col--md-2-3 {
		--_item-width: 100%;
	}
}

/* ---------------------------------------	
media-text タイトルタグ「none」にすれば、自由に作れる
---------------------------------------	
*/

.media-text1 {
	padding: 80px 40px;
}

.media-text1-1 h3 {
	font-size: 1.6rem !important;
}

.media-text1 .text {
	font-size: 1rem !important;
}

.media-text1 .smb-section__body {
	margin-top: 40px;
}

/* コンテンツ幅の調整（テキスト） */
.media-text1-1 .c-row__col--lg-1-3 {
	/* --_item-width:50%; */
}

/* コンテンツ幅の調整（画像） */
.media-text1-1 .c-row__col--lg-2-3 {
	/* --_item-width:50%; */
}



.media-text2 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.media-text2 h2 {
	font-size: 5rem !important;
	line-height: 5rem !important;
	padding-left: 5%
}

.media-text2 .smb-section__subtitle {
	font-size: 1rem !important;
	padding-left: 5%;
}

.media-text2-1 {
	padding-left: 5%;
}

.media-text2-2 {
	margin-top: 40px !important;
	padding-right: 5%;
}

.media-text2 h3 {
	font-size: 1.6rem !important;
}

.media-text2 .sme-text-color {
	font-size: 2rem;
}

.media-text2 .text {
	font-size: 1rem !important;
}

.media-text2 .box {
	padding: 20px 30px;
}

.media-text2 .lists {
	margin-top: 0px;
	font-size: 1rem;
}

.media-text2 .smb-media-text__figure {
	width: 100% !important;
}

.media-text2 .smb-media-text__contents-wrapper {
	/* 	height:80vh; */
}

.media-text2 .c-row--top {
	align-items: stretch !important;
}

.media-text2 .smb-media-text__figure img {
	/*	display:flex;
	align-items:stretch; */
	height: 100% !important;
	object-fit: cover;
}


/* 分割のタイミングに応じてブレイクポイントを変更 */
@media (max-width: 1023px) {
	.media-text1-1 .c-row__col--lg-1-3 {
		/* --_item-width:100%; */
	}

	.media-text1-1 .c-row__col--lg-2-3 {
		/* --_item-width:100%; */
	}
}

/* ---------------------------------------	
バナー
---------------------------------------	
*/
.top_banner {
	padding: 80px 40px;
}

/* 独自カードレイアウト */
.top_banner .column {
	box-shadow: 0px 0px 20px 16px rgba(17, 17, 26, 0.08);
	padding: 0px;
	position: relative;
}

.top_banner .mask {
	position: absolute;
	z-index: 10;
	height: 100%;
	width: 100% !important;
	opacity: 0;
	transition: 0.6s;
}

.top_banner .mask:hover {
	opacity: 0.4;
}

.top_banner .wp-block-snow-monkey-blocks-btn {
	width: 100%;
	height: 100%;
}

.top_banner .mask a {
	z-index: 10;
	height: 100%;
	width: 100%;
	/* ホバー時のフィルターカラー */
	background-color: #333333 !important;
}

.top_banner .img {
	margin-top: 0px !important;
	overflow: hidden !important;
}

.top_banner .box {
	position: relative;
	aspect-ratio: 1 / 1 !important;
}

.top_banner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
	width: 100%;
	margin-top: 0px !important;
	color: white;
	z-index: 20;
}

.top_banner .text a {
	text-decoration: none
}

.top_banner .banner-box {}



@media (max-width:430px) {
	.top_banner {
		padding: 60px 20px;
	}

	.top_banner .wp-block-snow-monkey-blocks-items-banner {
		margin-bottom: 40px !important;
	}
}

/* ---------------------------------------	
faq-section
---------------------------------------	
*/

.faq-box {
	/* padding: 0px!important; */
	margin-top: 80px !important;
}

.faq {
	/* border: none!important; */
}

/* Qのタイトル */
.smb-accordion__item__title__label {
	color: #27875D;
	font-size: 20px !important;
}

.smb-accordion__item__body {
	padding-bottom: 20px !important;
}


/* 探偵業FAQ */

.faq-btn {
	padding: 60px 40px;
}

.faq-btn .smb-panels__item {
	background: transparent !important;
}

.faq-btn .smb-panels__item__body {
	padding: 18px;
}

.faq-box {
	background-color: white !important;
	padding-top: 64px;
	padding-bottom: 26px;
}

.faq-section {
	padding: 80px 40px;
}

.faq-section p {
	line-height: 1.8 !important;
}

.faq-items-box {
	padding-top: 40px !important;
	padding-bottom: 0px !important;
}

.faq-items {
	border: none !important;
	padding-left: 80px;
	padding-right: 80px;
}

.faq-items .smb-accordion__item__title__label {
	color: #27875D;
	font-size: 20px !important;
}

.faq-cta .smb-accordion__item__body {
	padding-bottom: 20px !important;
}


/* Qの装飾 */
.is-style-RJE_R002LP_faq_items>.smb-accordion__item>.smb-accordion__item__title>.smb-accordion__item__title__label:before {
	color: #FF6F42 !important;
	top: 5px !important;
}

/* Aの装飾 */
.is-style-RJE_R002LP_faq_items>.smb-accordion__item>.smb-accordion__item__body:before {
	color: #FF6F42 !important;
	top: 0;
}

.faq-lists {
	margin-top: 0px !important;
}

.faq-lists li {
	list-style: disc !important;
	margin-top: 0px !important;
	line-height: 24px;
}

.faq-section .space {
	margin-top: 8px !important;
}

.faq-section .space2 {
	margin-top: 6px !important;
}

@media (max-width:1023px) {
	.faq-items {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
}

@media (max-width:430px) {
	.faq-btn {
		padding: 60px 20px;
	}

	.faq-section {
		padding: 60px 20px;
	}

	.faq-box {
		background-color: white !important;
		padding-top: 46px;
		padding-bottom: 26px;
	}

	.faq-items {
		border: none !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.faq-items .smb-accordion__item__title__label {
		font-size: 16px !important;
	}

	.is-style-RJE_R002LP_faq_items>.smb-accordion__item>.smb-accordion__item__title>.smb-accordion__item__title__label:before {
		color: #FF6F42 !important;
		top: -1px !important;
	}

	.faq-items-box {
		padding-top: 20px !important;
		padding-bottom: 0px !important;
	}
}



/* ---------------------------------------	
privacy-policy
---------------------------------------	
*/
.privacy-sub_title {
	font-size: 20px;
}

.privacy-policy {
	padding-left: 40px !important;
	padding-right: 40px !important;
}

.privacy-policy-box .smf-item--divider .smf-item__col {
	max-width: 100% !important;
}

.privacy-policy-text {
	height: 250px;
	width: 100%;
	padding: 16px;
	border: 1px solid #CCC;
	overflow: auto;
	margin: 40px auto 20px;
	background: #ffffff;
}

.privacy-policy-text h3 {
	margin-bottom: 30px !important;
}

.smf-checkboxes-control__control {
	text-align: center !important;
	margin-bottom: 0px !important;
}

.smf-error-messages {
	text-align: center !important;
	margin-top: -60px !important;
	margin-bottom: 60px !important;
}

form[data-screen="confirm"] .privacy-policy-box {
	display: none;
}

/* ---------------------------------------	
特商法
---------------------------------------	
*/

.sub_page {
	padding: 80px 40px;
}

.sub_page li {
	list-style: disc !important;
}

.page-id-59 .c-page-header {
	height: 200px !important;
}

.page-id-59 .c-page-header__title {
	color: #333333;
	text-shadow: none;
}

.page-id-59 .c-page-header__title::before {
	display: none;
}

@media (max-width:430px) {
	.sub_page {
		padding: 60px 20px;
	}

	.page-id-59 .c-page-header__title {
		font-size: 28px;
	}
}



/* ---------------------------------------	
投稿ページ（アーカイブ）
---------------------------------------	
*/

/* アーカイブページのページネーションの下に余白を作る */
.c-pagination {
	margin-bottom: 40px !important;
}

/* アーカイブページでページネーションがない時にも下に余白を作る */
.c-entries {
	margin-bottom: 40px !important;
}

/* アーカイブページで右サイドバーの下に余白を作る */
.l-contents__sidebar {
	padding-bottom: 40px !important;
}

/* 記事ページのサイドバーのタイトル */
.l-contents__sidebar h2 {
	color: #1b365c;
}

/* 投稿ページの横幅 */
.blog .l-contents__container {
	padding: 0px 40px;
}

/* 投稿記事の横幅 */
.post-template-default .l-contents__container {
	padding: 0px 40px;
}

@media (max-width:430px) {


	/* 投稿ページの横幅 */
	.blog .l-contents__container {
		padding: 0px 20px;
	}

	/* 投稿記事の横幅 */
	.post-template-default .l-contents__container {
		padding: 0px 20px;
	}
}



/* ---------------------------------------	
投稿記事
---------------------------------------	
*/
.c-entry-summary__figure .c-entry-summary__term {
	display: none;
}

/* 追加CSSに書くべき */
.c-entry-category-box {
	display: none;
}

.side-bar-title {
	font-size: 24px !important;
}

.c-meta__item--author {
	display: none;
}

.c-meta__item--categories {
	display: none;
}

.c-entry-lists li {
	list-style: disc !important;
}

.c-entry-side_bar-list li {
	list-style: disc !important;
	margin-left: 18px;
}

.c-entry-title2 {
	padding: 0.5em !important;
	/*文字周りの余白*/
	background: rgba(39, 135, 93, 0.05) !important;
	/*背景色*/
	border-left: solid 5px #27875d !important;
	/*左線（実線 太さ 色）*/
}

.l-contents__sidebar {
	height: max-content;
	position: sticky;
	top: 160px;
}

.c-entry-title3 {
	border-bottom: solid 3px #27875d !important;
	padding: 4px 12px !important;
	display: inline-block !important;
	background: rgba(39, 135, 93, 0.05) !important;
	border-radius: 5px;
}

@media (max-width:430px) {
	.single-post .l-contents__container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.c-entry-side_bar-list {
		padding-left: 24px !important;

	}
}