/* ---------------------------------------	
共通（原則、不変）
---------------------------------------	
*/

body {
	color: #333333;
}

.l-contents__inner {
	margin-top: 0px !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.smb-section__body {
	margin-top: 0px !important;
}

/* アーカイブページのページネーションの下に余白を作る */
.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;
}

.c-page-header__title {
	color: white;
	font-size: 50px;
}

.Zen-Kaku-Gothic-New {
	font-family: Zen Kaku Gothic New;
}

.Zen-Old-Mincho {
	font-family: "Zen Old Mincho";
}

@media (max-width:430px){
	.c-page-header__title {
		font-size: 36px;
	}
}

/* ---------------------------------------	
共通（レスポンシブで変更）
---------------------------------------	
*/

.section-sub-title {
	font-size: 24px !important;
}

/* リード文は個別に段落を設定する*/
.lede-text {
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	margin-top: 40px !important
}

.l-header li a {
	font-size: 14px !important;
}

/* ヘッダーメニューの補足説明のフォントサイズ調整 */
.l-header li small {
	font-size: 12px !important;
}

@media (max-width:430px) {
	.lede-text {
		/* text-align: left; */
	}
}

/* ---------------------------------------	
ボタン
---------------------------------------	
 */

.btn {
	/* width: 200px !important; */
	transition: 0.4s;
	border: none;
	position: relative;
}

.btn a {
	border: solid 3px #333333 !important;
	color: #333333 !important;
	font-size: 16px;
	/* ホバー時に暗くなる事象の解消 */
	filter: unset !important;
}

/* .btn::before {
	position: absolute;
	content: "";
	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 {
	border-color: white !important;
	color: white !important;
	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:hover a {
	background-color: #333333 !important;
	color: white !important;
	border: solid 3px #333333 !important;
	z-index: 10;
}

.btn a:hover {
	color: white !important;
}


/* ---------------------------------------	
ヘッダー	
---------------------------------------	
*/
/* headerにあてると投稿ページのトップにも反映されてしまう */
.l-header {
	background-color: #000000 !important;
	margin: 0;
	padding: 4px 0;
}

/* メニュー間の間隔 */
.l-header li {
	margin-left: 28px !important;
}

/* 文字にホバーしたときのみリンクに飛ぶ */
.l-header li a {
	padding: 0px !important;
}

/* ヘッダーの中身のコンテンツ幅の設定 */
.l-header__content {
	max-width: 1260px !important;
	/* コンテンツ幅1180px + 左右padding40px */
	margin: 0 auto;
	padding: 0 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;
}

/* 実サイトから"item-num"を確認 */
.l-header .menu-item-35 {
	background-color: #f5d547;
}

@media (max-width: 430px) {
	.l-header__content {
		padding: 0 20px;
	}
}

/* ---------------------------------------	
ドロワーナビ	
---------------------------------------	
*/

/* タブレット以下の幅で表示されるハンバーガーメニューを開いたときの背景色 */
#drawer-nav {
	backdrop-filter: blur(5px);
	background-color: rgba(0, 0, 0, 0.7);
}

/* ドロワーメニューの配置。ハンバーガーメニュー除く。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 ul {
	padding-top: 50px !important;
	display: flex;
	flex-direction: column;
}

/* リストの装飾 */
#drawer-nav li {
	font-size: 20px;
	line-height: 20px;
	padding: 0px;
	margin-bottom: 30px;
	display: inline-block;
	border-bottom: 1px solid white;
}

/* リストのトップに配置した画像 */
.drawer_nav-img {
	width: 40%;
	background-color: white;
}

@media (max-width: 430px) {
	.c-drawer__controls {
		padding-right: 20px;
	}

	.c-drawer__inner {
		padding-left: 30px !important;
		padding-right: 160px !important;
	}
}

/* ---------------------------------------	
ドロップナビ
---------------------------------------	
*/
/* スクロールで表示されるドロップナビ */
.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: 16px !important;
	/* ここと153行が同じ数値にならないとずれる */
	/* display: inline-block; */
	/* 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: black;
	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: 30px 40px 0px !important;
	height: 70px !important;
}

/* フッターメニューの上部の間隔を広げたい場合は、padding-topとheightそれぞれ均等にpxを加える。
ベースはpadding-topが10pxでheightが50px*/
/* フッターメニューの下部の間隔を広げたい場合は、c-copyrightのpadding-topを調整する。*/

/* コピーライト */
.c-copyright {
	padding: 30px 0px 4px !important;
	/* height: 30px!important; */
	text-align: center;
}

.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 .widgettitle {
	font-size: 18px !important;
	color: ;
}

.l-footer .footer-logo {
	width: 60px !important;
	margin: 0px !important;
	background-color: white;
	/* ロゴを中央に配置 */
	display: flex;
	align-items: center;
}

.l-footer .text-box {
	display: flex;
	justify-content: start;
	align-items: center;
}

.l-footer .widget_nav_menu {
	margin: 0px !important;
}

.l-footer ul {
	display: flex;
	height: 40px !important;
	align-items: center;
}

.l-footer .footer-menu ul li {
	margin-top: 0px !important;
	font-size: 12px;
	margin-right: 26px !important;
	position: relative;
}

.l-footer .footer-menu ul li::before {
	position: absolute;
	content: "";
	border: 1px solid white;
	height: 80%;
	width: 1px;
	right: -13px;
	top: 50%;
	transform: translateY(-50%);
}

.l-footer .footer-menu ul li:last-child::before {
	display: none;
}

.l-footer .svg-inline--fa {
	width: 26px;
	height: 26px;
}

.l-footer .copy-right {
	font-size: 12px;
	line-height: 14px;
	margin-top: 10px !important;
}

.c-copyright {
	background-color: black;

	padding: 10px 0;
}

/* 特定のページのウィジェット削除 */
.page-id-20 .l-footer-widget-area {
	display: none;
}

/* ここのpaddingでウィジェットメニューの高さを調整する */
.l-footer__body {
	padding: 10px !important;
	text-align: center;
}


/* グローバルナビを横並び中央にする。"-global-nav-"はメニュー名 */
.l-footer .menu-global-nav-container {
	display: flex;
	justify-content: center;
	/* padding: 4px 0px!important; */
}

/* フッターメニューテキストの幅調整 */
.l-footer .menu-global-nav-container li {
	margin-left: 12px !important;
	margin-right: 12px !important;
	margin-top: 0px !important;
}

@media (max-width:950px){
	#menu-global-nav-2{
		display: none;
	}

	.l-footer .footer-logo {
		width: 45px !important;
	}
}



/* ----------------------------------------------------------------------------	
TOPページ
-------------------------------------------------------------------------------	
*/
/* ---------------------------------------	
FV
---------------------------------------	
*/

.fv1 {
	height: 670px !important;
	padding: 20px 40px 80px 40px;
	position: relative;
}


.fv1 .title .has-sm-l-font-size {
	font-size: 34px !important;
	font-weight: bold !important;
	/* line-height: 10px; */
	width: 100%;
	margin-bottom: 10px !important;
}

.fv1 .title .has-sm-3-xl-font-size {
	font-size: 57px !important;
	font-weight: bold !important;
	/* line-height: 10px; */
	width: 100%;
	margin-bottom: 10px !important;
	position: relative;
}

.fv1 .title .has-sm-3-xl-font-size::before {
	position: absolute;
	content: "・・・・・・";
	top: -47px;
	left: 0;
	font-size: 57px !important;
	font-weight: normal !important;
}

.fv1 .title .has-sm-2-xl-font-size {
	font-size: 43px !important;
	font-weight: bold !important;
	line-height: 10px;
	width: 100%;
	margin-bottom: 10px !important;
}

/* タイトルの小文字部分 */
.fv1 .text {
	font-size: 32px !important;
	font-weight: normal !important;
	/* line-height: 1.2; */
	background-color: rgba(100, 100, 100, 0.6);
	display: inline-block;
}

@media (max-width: 900px) {
	.fv1 .text {
		font-size: 28px !important;
	}
}


@media (max-width: 430px) {
	.fv1 {
		padding: 20px 20px 20px;
		height: 790px !important;
		align-items: start;
		/* デバイスによって高さが異なるためvhは不適切。デザインが崩れる */
		/* height: 80vh !important; */
	}

	.fv1 .title {
		text-align: center !important;
	}

	.fv1 .title .has-sm-l-font-size {
		text-align: center;
		font-size: 24px !important;
		margin-bottom: 10px !important;
	}

	.fv1 .title .has-sm-3-xl-font-size {
		text-align: center;
		font-size: 47px !important;
		margin-bottom: 10px !important;
		position: relative;
	}

	.fv1 .title .has-sm-3-xl-font-size::before {
		top: -37px;
		font-size: 47px !important;
	}

	.fv1 .title .has-sm-2-xl-font-size {
		font-size: 28px !important;
		margin-bottom: 10px !important;
	}

	.fv1 .text-box {
		text-align: center;
	}

	.fv1 .text {
		font-size: 22px !important;
		margin-top: 370px !important;
		line-height: 1.5 !important;
	}
}

/* ---------------------------------------	
メッセージ１
---------------------------------------	
*/
.top_catch-ms1 {
	/* background: #969696; */
	background: linear-gradient(180deg, rgba(150, 150, 150, 1) 0%, rgba(103, 103, 103, 1) 10%, rgba(72, 71, 71, 1) 44%);
	padding: 45px 0px;
}

.top_catch-ms1 .text {
	color: white !important;
	font-size: 32px;
	line-height: 1.2;
}

@media (max-width:800px) {
	.top_catch-ms1 {
		padding: 45px 20px;
	}

	.top_catch-ms1 .text {
		font-size: 30px;
	}
}

@media (max-width:430px) {
	.top_catch-ms1 .text {
		font-size: 26px;
	}
}

/* ---------------------------------------	
イントロ
---------------------------------------	
*/
.top_intro {
	padding: 80px 40px;
}

.top_intro .text {
	padding-left: 30px;
	margin-left: 30px;
	font-size: 20px;
	position: relative;
	border-bottom: 1px dashed #333333;
	display: inline-block;
}

.top_intro .text::before {
	position: absolute;
	content: "";
	background: url(https://ginza-fg.ne.jp/wp-content/uploads/2025/10/list-check.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	height: 20px;
	width: 20px;
}

.top_intro .text2 {
	font-size: 20px;
	margin-top: 40px !important;
}

.top_intro .tb-block {
	display: none;
}

@media (max-width:900px) {
	.top_intro .text-box {
		display: flex !important;
		flex-direction: column !important;
		align-items: start;
	}

	.top_intro .text {
		padding-left: 30px;
		margin-left: 0px !important;
		margin-right: 0px !important;
		font-size: 28px;
	}

	.top_intro .tb-block {
		display: block !important;
		margin-top: 100px !important;
		margin-bottom: 100px !important;
	}

	.top_intro .pc-block {
		display: none !important;
	}

	.top_intro .text2 {
		font-size: 24px !important;
	}
}

@media (max-width:430px) {
	.top_intro {
		padding: 80px 20px;
	}

	.top_intro .text {
		padding-left: 30px;
		margin-left: 0px !important;
		margin-right: 0px !important;
		font-size: 17px;
	}

	.top_intro .text2 {
		/* text-align: left; */
		font-size: 20px !important;
	}

}

/* ---------------------------------------	
メッセージ２
---------------------------------------	
*/
.top_catch-ms2 {
	background: #FF6F21;
	background: linear-gradient(180deg, rgba(255, 111, 33, 1) 0%, rgba(255, 150, 92, 1) 50%, rgba(255, 111, 33, 1) 100%);
	padding: 45px 0px;
}

.top_catch-ms2 .text {
	color: white !important;
	font-size: 32px;
	line-height: 1.2;
}

@media (max-width:430px) {
	.top_catch-ms2 {
		padding: 45px 20px0px;
	}

	.top_catch-ms2 .text {
		color: white !important;
		font-size: 30px;
		line-height: 1.2;
	}
}

/* ---------------------------------------	
メッセージ３
---------------------------------------	
*/
.top_catch-ms3 {
	/* background: #FF6F21;
	background: linear-gradient(180deg, rgba(255, 111, 33, 1) 0%, rgba(255, 150, 92, 1) 50%, rgba(255, 111, 33, 1) 100%); */
	padding: 80px 0px;
}

.top_catch-ms3 .text {
	/* color: white !important; */
	font-size: 32px !important;
	font-weight: bold;
	line-height: 1.1;
}

.top_catch-ms3 .text .has-sm-xl-font-size {
	/* color: white !important; */
	font-size: 40px !important;
	font-weight: bold;
	line-height: 1.1;
}

@media (max-width:430px) {
	.top_catch-ms3 {
		padding: 80px 20px;
	}

	.top_catch-ms3 .text {
		text-align: left;
		font-size: 24px !important;
		font-weight: bold;
		line-height: 1.1;
	}

	.top_catch-ms3 .text .has-sm-xl-font-size {
		/* color: white !important; */
		font-size: 36px !important;
		font-weight: bold;
		line-height: 1.1;
	}
}

/* ---------------------------------------	
選ばれる理由
---------------------------------------	
*/

.top_reason {
	padding: 80px 40px;
}

/* セクションタイトル */
.top_reason .section-title {
	font-size: 32px !important;
	position: relative;
}

.top_reason .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.top_reason .section-title .has-sm-l-font-size {
	font-size: 20px !important;
	line-height: 1.2 !important;
}

.top_reason .section-title .has-sm-xl-font-size {
	font-size: 46px !important;
	line-height: 1.2 !important;
}

.top_reason .panels {
	margin-top: 60px !important;
}

/* パネルのデフォルト設定の影を消す */
.top_reason .panel .smb-panels__item {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

/* 1つのパネルの大きさを変える。0pxじゃないとsectionのpadding左右より内側にくる*/
.top_reason .panel .smb-panels__item__body {
	padding: 0px !important;
	position: relative;
}

.top_reason .panel .numbering {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	color: blue;
	font-weight: 1000;
}

.top_reason .panel .numbering .sme-text-color {
	font-size: 2rem;
}

.top_reason .panel .title {
	margin-top: 0px !important;
	padding: 20px;
	font-size: 24px;
	font-weight: 700;
}

.top_reason .img {
	margin-top: 0px !important;
}

.top_reason .panel .text {
	font-size: 1rem;
	line-height: 1.4rem;
	/* 	letter-spacing:; */
}

@media (max-width: 430px) {
	.top_reason {
		padding: 80px 20px;
	}

	.panel1 {
		padding: 80px 20px;
	}

	.panel2 {
		padding: 80px 20px;
	}

	.panel3 {
		padding: 80px 20px;
	}
}

/* ---------------------------------------	
実績
---------------------------------------	
*/
.top_works {
	padding: 80px 40px;
}

/* セクションタイトル */
.top_works .section-title {
	font-size: 32px !important;
	position: relative;
}

.top_works .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.top_works .works-box {
	margin-top: 60px !important;
}

.top_works .box {
	text-align: center;
}

.top_works .sub-title {
	margin-top: 10px !important;
	margin-bottom: 16px !important;
	display: inline-block;
	border-bottom: 2px solid #2F7B07;
	padding: 0 10px;
	font-size: 20px !important;
	line-height: 2;
}

.top_works .text2 {
	font-size: 20px;
	margin-top: 60px !important;
}

@media (max-width:800px) {
	.top_works .sub-title {
		font-size: 28px !important;
	}

	.top_works .text2 {
		font-size: 24px;
		margin-top: 60px !important;
	}

	.top_works .box {
		margin-top: 60px !important;
	}
}

@media (max-width:430px) {
	.top_works {
		padding: 80px 20px;
	}

	.top_works .sub-title {
		font-size: 24px !important;
	}

	.top_works .text2 {
		text-align: left !important;
		font-size: 18px;
		margin-top: 60px !important;
	}

	.top_works .box {
		margin-top: 30px !important;
	}
}

/* ---------------------------------------	
注文
---------------------------------------	
*/

.top_order {
	padding: 80px 40px;
}

/* セクションタイトル */
.top_order .section-title {
	font-size: 32px !important;
	position: relative;
}

.top_order .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.top_order .panels {
	margin-top: 60px !important;
}

.top_order .img {
	width: 160px;
	height: 160px;
}

.top_order .title {
	margin-top: 20px !important;
}

@media (max-width:430px) {
	.top_order {
		padding: 80px 20px;
	}

}


/* ---------------------------------------	
配送エリア
---------------------------------------	
*/
.top_delivery {
	padding: 80px 40px;
}

/* セクションタイトル */
.top_delivery .section-title {
	font-size: 32px !important;
	position: relative;
}

.top_delivery .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.top_delivery .area-box {
	padding: 30px !important;
}

.top_delivery .sub-title {
	padding-left: 34px;
	margin-left: 30px;
	font-size: 28px;
	position: relative;
	display: inline-block;
}

.top_delivery .sub-title::before {
	position: absolute;
	content: "";
	background: url(https://ginza-fg.ne.jp/wp-content/uploads/2025/10/top_area-icon.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 51%;
	left: 0px;
	transform: translateY(-50%);
	height: 30px;
	width: 30px;
}

@media (max-width:430px) {
	.top_delivery {
		padding: 80px 20px;
	}

	.top_delivery .area-box {
		padding: 20px 16px !important;
	}

	.top_delivery .smb-media-text__contents-wrapper {
		padding: 0px;
	}
}

/* ---------------------------------------	
お問い合わせ
---------------------------------------	
*/
.contact {
	padding: 80px 40px;
}

/* セクションタイトル */
.contact .section-title {
	font-size: 32px !important;
	position: relative;
}

.contact .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.contact .section-title {
	margin-top: 0px !important;
}

.cta-box-pc {
	margin-top: 60px !important;
}

.cta-box-sp {
	margin-top: 60px !important;
	display: none;
}

.contact .section-sub-title {
	color: #FF7D35;
	font-size: 20px !important;
	position: relative;
	display: inline-block;
}

.contact .section-sub-title::before {
	position: absolute;
	content: "";
	background: url(https://ginza-fg.ne.jp/wp-content/uploads/2025/10/cta-left-line.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 50%;
	left: -10px;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
}

.contact .section-sub-title::after {
	position: absolute;
	content: "";
	background: url(https://ginza-fg.ne.jp/wp-content/uploads/2025/10/cta-right-line.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 50%;
	right: -30px;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
}

@media (max-width:430px) {
	.contact {
		padding: 80px 20px;
	}

	.cta-box-pc {
		display: none;
	}

	.cta-box-sp {
		margin-top: 60px !important;
		display: block;
	}
}

/* ---------------------------------------	
会社概要ページ
---------------------------------------	
*/
.sub_company-mission {
	padding: 80px 40px;
}

.sub_company-mission .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_company-mission .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.mission-box {
	padding: 40px 0px !important;
}

.mission-box .sub-title {
	font-size: 22px;
	position: relative;
}

.mission-box .sub-title::before {
	position: absolute;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 0% !important;
	transform: translateY(-50%) !important;
}


.sub_company-mission .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_company-mission .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.sub_company-info {
	padding: 80px 40px;
}

.sub_company-info .section-title {
	font-size: 32px !important;
	display: inline-block;
	padding: 4px 40px 6px;
	background-color: #066200;
	color: white;
	position: relative;
	margin-bottom: 0px !important;
}

.sub_company-info .company-table {
	background-color: white;
	padding: 16px;
}


@media (max-width:430px) {
	.sub_company-mission {
		padding: 80px 14px;
	}

	.sub_company-mission .section-small-title {
		font-size: 28px !important;
	}

	.sub_company-info {
		padding: 80px 14px;
	}

	.sub_company-info .section-title {
		font-size: 32px !important;
		display: inline-block;
		width: 100%;
		padding: 4px 40px 6px;
	}
}


/* ---------------------------------------	
弊社の強みページ
---------------------------------------	
*/
.sub_strength-top {
	padding: 80px 40px;
}

.sub_strength-top .section-title .has-sm-l-font-size{
	font-size: 20px !important;
	font-weight: medium!important;
	position: relative;
}

.sub_strength-top .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_strength-top .section-title .has-sm-xl-font-size{
	font-size: 48px !important;
	position: relative;
}


.sub_strength-top .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.sub_strength-top .box {
	margin-top: 60px !important;
	box-shadow: 0px 4px 4px rgba(100, 100, 100, 0.8);
}

.sub_strength-top .c-row__col--lg-1-3 {
	--_item-width: 50% !important;
}

.sub_strength-top .c-row__col--lg-2-3 {
	--_item-width: 50% !important;
	background-color: white;
	padding: 30px;
}


.sub_strength-reason {
	padding: 80px 40px;
}

.sub_strength-reason .section-title {
	font-size: 28px !important;
	position: relative;
}

.sub_strength-reason .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}


.sub_strength-reason .works-box {
	margin-top: 60px !important;
}

.sub_strength-reason .box {
	text-align: center;
	position: relative;
}

.sub_strength-reason .num-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 75px;
	height: 75px;
	z-index: 10;
}

.sub_strength-reason .sub-title {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px !important;
	margin-bottom: 16px !important;
	display: inline-block;
	color: #066200;
	padding: 0 10px;
}

.sub_strength-reason .text {
	text-align: left;
	padding: 0 10px;
}


.sub_strength-quality .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_strength-quality .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}


.sub_strength-quality .box {
	margin-top: 60px !important;
}

.sub_strength-quality .sub-title {
	color: white;
	background-color: #066200;
	display: inline-block;
	padding: 0px 16px 2px;
}

.sub_strength-quality .c-row__col--lg-1-3 {
	--_item-width: 50% !important;
}

.sub_strength-quality .c-row__col--lg-2-3 {
	--_item-width: 50% !important;
	padding: 30px;
}


@media (max-width:950px) {
	.sub_strength-top {
		padding: 80px 140px;
	}

	.sub_strength-top .c-row__col--lg-1-3 {
		--_item-width: 100% !important;
	}

	.sub_strength-top .c-row__col--lg-2-3 {
		--_item-width: 100% !important;
		padding: 0 20px 30px;
	}

	.sub_strength-quality {
		padding: 80px 140px;
	}

	.sub_strength-quality .c-row__col--lg-1-3 {
		--_item-width: 100% !important;
	}

	.sub_strength-quality .c-row__col--lg-2-3 {
		--_item-width: 100% !important;
	}
}

@media (max-width:800px) {
	.sub_strength-reason .box {
		margin-top: 40px !important;
	}

	.sub_strength-reason {
		padding: 80px 140px;
	}

	.sub_strength-reason .sub-title {
		font-size: 28px !important;
	}

	.sub_strength-reason .text {
		font-size: 22px;
		padding: 0 10px;
	}
}

@media (max-width:430px) {
	.sub_strength-top {
		padding: 80px 20px;
	}

	.sub_strength-top .section-title .has-sm-l-font-size{
		font-size: 16px !important;
		font-weight: medium!important;
		position: relative;
	}
	
	.sub_strength-top .section-title {
		font-size: 28px !important;
		position: relative;
	}
	
	.sub_strength-top .section-title .has-sm-xl-font-size{
		font-size: 40px !important;
		position: relative;
	}

	.sub_strength-top .box .sub-title {
		text-align: center!important;
	}

	.sub_strength-reason {
		padding: 80px 20px;
	}

	.sub_strength-reason .text {
		font-size: 22px;
		padding: 0 10px;
	}

	.sub_strength-quality {
		padding: 80px 20px;
	}

	.sub_strength-quality .lede-text{
		text-align: center;
	}

	.sub_strength-quality .c-row__col--lg-2-3 {
		padding: 30px 0px 16px;
	}
}


/* ---------------------------------------	
取扱商品ページ
---------------------------------------	
*/
.sub_product-top {
	padding: 80px 40px;
}

.sub_product-top .section-title {
	font-size: 28px !important;
	position: relative;
}

.sub_product-top .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.sub_product-top .works-box {
	margin-top: 60px !important;
}

.sub_product-top .box {
	text-align: center;
	position: relative;
}

.sub_product-top .sub-title {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px !important;
	margin-bottom: 16px !important;
	display: inline-block;
	color: #066200;
	padding: 0 10px;
}

.sub_product-top .smb-panels__item {
	box-shadow: none !important;
	background-color: transparent !important;
}


@media (max-width:430px) {
	.sub_product-top {
		padding: 80px 20px;
	}

	.sub_product-top .lede-text {
		text-align: center;
	}

	.sub_product-top .text {
		text-align: center;
	}
}

/* ---------------------------------------	
お取引の流れ
---------------------------------------	
*/
.sub_flow-top {
	padding: 80px 40px;
}

.sub_flow-top .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_flow-top .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.sub_flow-top .flow {
	margin-top: 60px !important;
}


.flow .box {
	position: relative;
	padding: 0px;
	margin-bottom: 80px !important;
}

.flow .img {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	/* width: 100px; */
	/* height: 100px; */
	z-index: 10;
}

.flow .text-group {
	padding: 30px 40px;
	box-shadow: 1px 4px 4px rgba(100, 100, 100, 0.8);
	background-color: white;
}

.flow .arrow {
	position: relative;
}

.flow .arrow::before {
	position: absolute;
	content: "";
	background-image: url(https://ginza-fg.ne.jp/wp-content/uploads/2025/10/sub_flow-arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -90px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
}

.flow .sub-title {
	font-size: 28px;
	font-weight: bold;
	color: #FF7D35;
}




@media (max-width:430px) {
	.sub_flow-top {
		padding: 80px 20px 40px;
	}

	.sub_flow-top .sub-title {
		margin-bottom: 10px !important;
	}

	.flow .img {
		left: 26px;
	}
}


/* ---------------------------------------	
現在の仕入れ方法
---------------------------------------	
*/
.sub_purchase-top {
	padding: 80px 40px;
}

.sub_purchase-top .section-title {
	font-size: 32px !important;
	position: relative;
}

.sub_purchase-top .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.sub_purchase-top .c-row__col--lg-1-3 {
	--_item-width: 50% !important;
}

.sub_purchase-top .c-row__col--lg-2-3 {
	--_item-width: 50% !important;
}

.sub_purchase-top .sub-title {
	font-size: 24px;
	display: inline-block;
	border-bottom: 1px dotted #333333;
}


@media (max-width:950px) {
	.sub_purchase-top {
		padding: 80px 140px;
	}

	.sub_purchase-top .space{
		margin-top: 40px!important;
	}

	.sub_purchase-top .c-row__col--lg-1-3 {
		--_item-width: 100% !important;
	}

	.sub_purchase-top .c-row__col--lg-2-3 {
		--_item-width: 100% !important;
		padding: 0 20px 30px;
	}

	.sub_purchase-top .smb-media-text__contents-wrapper{
		margin-top: 10px!important;
	}

}

@media (max-width:430px){
	.sub_purchase-top {
		padding: 80px 20px;
	}

	.sub_purchase-top .box-space{
		margin-top: 60px!important;
	}
	
	.sub_purchase-top .text{
		margin-top: 20px!important;
	}

	.sub_purchase-top .c-row__col--lg-2-3 {
		padding: 0 0px 30px;
	}

	.sub_purchase-top .space{
		margin-top: 10px!important;
	}
}


/* ---------------------------------------	
お問い合わせ
---------------------------------------	
*/

.contact-form {
	padding: 80px 40px;
}

.contact-form .section-title {
	font-size: 32px !important;
	position: relative;
}

.contact-form .section-title::before {
	position: absolute !important;
	content: "" !important;
	width: 100px !important;
	height: 1px !important;
	background-color: #333333 !important;
	bottom: -10px !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.contact-form .lede-text {
	margin-bottom: 100px !important;
}

@media (max-width:430px) {
	.contact-form {
		padding: 80px 20px;
	}
}



/* ---------------------------------------	
privacy-policy
---------------------------------------	
*/
/* .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;
}

.smf-checkboxes-control__control {
	text-align: center !important;
	margin-bottom: 60px !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;
}


/* ---------------------------------------	
レスポンシブ	
---------------------------------------	
*/