@charset "UTF-8";

/**
 * オフィスクサマ サイトCSS（v2：見やすさ・親しみやすさ強化版）
 *
 * 【v1からの主な変更点】
 *  ① 基本フォントサイズ拡大：1.65rem → 1.7rem（経営者層の可読性向上）
 *  ② line-height 1.75 → 1.85（長文の読みやすさ向上）
 *  ③ letter-spacing 0.04em → 0.05em（和文の視認性UP）
 *  ④ 暖色系セカンダリ追加（ゴールド/クリーム）で安心感
 *  ⑤ 影を温かい茶系に統一（黒系シャドウから脱却）
 *  ⑥ 角丸を全体的に大きく（無機質→親しみやすい印象）
 *  ⑦ 見出しデザイン強化（block_header_2/4 の存在感UP）
 *  ⑧ ボタンに微妙な立体感とホバー浮き上がり効果
 *  ⑨ FAQ（contents_faq01）のデザイン刷新
 *  ⑩ #fixbtn（固定CTA）の訴求力大幅向上
 *  ⑪ フォーム入力欄を柔らかい印象に
 *  ⑫ パンくず・サイドバーの視認性改善
 *  ⑬ 段落間余白を 1em → 1.25em に拡大
 *  ⑭ ホバーで「動き」を追加（translateY 等）
 *  ⑮ font-family に Noto Sans JP を優先（Webフォント前提）
 */

:root{
	/* メインパレット */
	--i_bg_color: #fff;
	--i_txt_color: #3a3530;                        /* やや柔らかい暗色に調整 */
	--i_main_color: #eb892d;
	--i_main_dark: #c66f1a;                        /* 新規：濃いオレンジ */
	--i_sub_color: #eecb0c;
	--i_sub2_color: #f5efe5;                       /* やや温かいクリーム */
	--i_btn_color: #eb892d;
	--i_btn_hover_color: #f5a253;                  /* よりやさしいホバー */
	--i_btn_txt_color: #fff;
	--i_btn_hover_txt_color: #fff;
	--i_shadow_color: rgba(80, 60, 40, 0.08);      /* 温かい茶系の影 */
	--i_shadow_warm: rgba(235, 137, 45, 0.18);     /* 新規：暖色シャドウ */
	--i_border_color: rgba(58, 53, 48, 0.12);
	--i_noimg_bg_color: #ede2d3;

	/* ④ 暖色系新パレット */
	--i_cream: #fdfaf3;
	--i_cream_dark: #efe6d3;
	--i_gold: #c8a55c;
	--i_gold_light: #f3e8c8;

	/* 強調・注意 */
	--i_accent: #d04a1a;                           /* 新規：赤系アクセント */
	--i_success: #2a7a52;                          /* 新規：緑（信頼） */

	/* フォント */
	--font-base: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
	--font-heading: var(--font-base);
	--font-mincho: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;

	/* トランジション */
	--t-fast: 0.2s ease-out;
	--t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	--t-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

	/* ⑥ 角丸 */
	--r-sm: 4px;
	--r-md: 8px;
	--r-lg: 12px;
	--r-xl: 18px;
	--r-pill: 100px;

	/* シャドウ階層 */
	--shadow-sm: 0 1px 3px var(--i_shadow_color);
	--shadow-md: 0 4px 14px var(--i_shadow_color);
	--shadow-lg: 0 10px 30px var(--i_shadow_color);
	--shadow-cta: 0 6px 20px var(--i_shadow_warm);
}

/*------------------------------------------------------------------*/
/*-----------------------------base---------------------------------*/
/*------------------------------------------------------------------*/

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body{
	font-family: var(--font-base);
	font-size: 1.7rem;                            /* ① 1.65→1.7rem */
	line-height: 1.85;                            /* ② 1.75→1.85 */
	letter-spacing: 0.05em;                       /* ③ 0.04→0.05em */
	font-feature-settings: "palt" 1, "pkna" 1;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: var(--i_txt_color);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;          /* 文字レンダリング向上 */
	-moz-osx-font-smoothing: grayscale;
}
body, main{
	background: var(--i_bg_color);
}

strong, b, .strong { font-weight: 700; color: var(--i_main_dark); }

h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;                              /* 1.4→1.5 */
	letter-spacing: 0.03em;
}

body.ft04{
	--font-heading: var(--font-mincho);
}
h1, h2, h3, h4, h5, h6,
.block_header_1 p, .block_header_2 p, .block_header_3 p,
.block_header_4 p, .block_header_5 p, .block_header_6 p,
.contents_faq01 dt::before, .contents_faq01 dd::before,
header .tel a, header .tel span,
.widget_tel .inner_item_tel a, .widget_tel .inner_item_tel span,
#lv, #setting_modal .heading_design *,
nav, .btn, .contents_btn01, .submit, .mv_text, .fixbtn, footer{
	font-family: var(--font-heading);
}

#top::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 45%;
	min-width: 320px;
	height: 300px;
	background: linear-gradient(135deg, var(--i_sub2_color) 0%, var(--i_cream) 100%);
	pointer-events: none;
	opacity: 0.75;
}
#top.index:before{
	height: 65vh;
	height: 65dvh;
}
@media screen and (max-width: 900px){
	#top:before{
		min-width: 210px;
		width: 70%;
		height: 55vh;
		height: 55dvh;
	}
}
@media screen and (max-width: 850px){
	html{
		font-size: 60.606%;
	}
	body{
		letter-spacing: 0.03em;
	}
}

a{
	text-decoration: none;
	color: var(--i_txt_color);
	transition: color var(--t-fast), opacity var(--t-fast);
}
a:hover{
	color: var(--i_main_color);
}
a:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
	outline: 2px solid var(--i_main_color);
	outline-offset: 3px;
	border-radius: 3px;
}

section[style*=" color:"]:not([style*=" color: inherit"]) a,
div[style*=" color:"]:not([style*=" color: inherit"]) a{
	color: inherit;
}

/* ⑬ 段落間余白を拡大 */
main p:not(:last-child){
	margin-bottom: 1.25em;
}

.composite_box01 .inner_item_img img{
	object-position: 50% 50%;
}

@media screen and (max-width: 850px){
	#sidebar{
		border: 5px solid var(--i_sub2_color);
		border-radius: var(--r-md);
	}
}
.no_img{
	background: var(--i_noimg_bg_color, rgba(200,200,200,0.3));
}

@media (prefers-reduced-motion: reduce){
	*,
	*::before,
	*::after{
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/*----------------------------loader----------------------------*/

#load div:nth-of-type(1){
	background: #fff;
}
#load .loader,
.popup .loader{
	border: 1px solid var(--i_main_color);
}
#load .loader,
#load .loader::before,
.popup .loader,
.popup .loader::before{
	border-top-color: var(--i_main_color);
}
#load .loader::before,
#load .loader::after,
.popup .loader::before,
.popup .loader::after{
	left: -1px;
	top: -1px;
}
#load img{
	max-width: 230px;
}
@media screen and (max-width: 650px){
	#load img{
		max-width: 200px;
	}
}

/*----------------------------header----------------------------*/

header{
	font-size: 1.4rem;
	color: var(--i_txt_color);
}
header .wraper{
	max-width: 1300px;
}
body.scrolled header{
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);                    /* スクロール時の透過感 */
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px var(--i_shadow_color);
}
header h1{
	line-height: 1.5;
	font-size: 1.3rem;
	font-weight: 400;
	color: #7a6f64;
	fill: var(--i_txt_color);
}
body.scrolled header .logo{
	padding: 20px 0;
}
header .logo,
header .logo a{
	max-width: 250px;
}
body.scrolled header .logo a img{
	max-height: 45px;
}
header .header_contents .header_col1{
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
header .header_contents .header_col1 .tel{
	position: relative;
	font-size: 2.4rem;
	line-height: 1;
	padding-left: 28px;
	font-weight: 700;
	fill: var(--i_main_color);
	color: var(--i_main_dark);
}
header .header_contents .header_col1 .tel svg{
	fill: var(--i_main_color);
}
header .header_contents .header_col1 .btn .translate a svg,
header .burger li.sp_translate a svg,
header .header_contents .header_sns li svg{
	fill: var(--i_txt_color);
}
header .sp_menu a div span,
header .sp_menu a div:before,
header .sp_menu a div:after{
	background: var(--i_txt_color);
}
header .header_contents .header_col1 .tel svg{
	width: 24px;
	height: 24px;
	top: calc(50% - 12px);
	left: 0;
}
header .header_contents .header_col1 .btn>a{
	display: block;
	text-align: center;
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
	padding: 9px 18px;
	transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
	letter-spacing: 0.08em;
	font-weight: 700;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
}
header .header_contents .header_col1 .btn>a:hover{
	opacity: 1;
	background: var(--i_btn_hover_color);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
header .header_contents .header_col1 .btn .translate a svg{
	max-width: 74%;
	max-height: 74%;
	margin: 13% auto 0;
}
header .header_contents .header_col1 .btn .translate a:hover{
	opacity: 0.85;
}
header#pattern1 nav,
header#pattern3 nav{
	position: relative;
}
header nav *{
	color: var(--i_txt_color);
}
header nav ul.nav_1st{
	width: 100%;
	max-width: 1300px;
}
header nav ul.nav_1st>li{
	box-sizing: border-box;
	position: relative;
}
header nav ul.nav_1st>li:after{
	content: "";
	width: 1px;
	height: 40%;
	position: absolute;
	top: 30%;
	left: 0;
	border-left: 1px solid var(--i_border_color);
}
header nav ul.nav_1st>li:last-child:before{
	content: "";
	width: 1px;
	height: 40%;
	position: absolute;
	top: 30%;
	right: 0;
	border-left: 1px solid var(--i_border_color);
}
header nav ul.nav_1st>li>a{
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
	padding-left: 1vw;
	padding-right: 1vw;
}
header nav ul.nav_1st>li>a:before{
	position: absolute;
	display: block;
	content: "";
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	height: 3px;                                   /* 2→3px */
	bottom: 0px;
	left: 0;
	background: var(--i_main_color);
	border-radius: 2px;
	pointer-events: none;
	opacity: 0;
	transform: scaleX(0.6);
	transition: opacity var(--t-base), transform var(--t-base);
}
header nav ul.nav_1st>li>a:hover:before{
	opacity: 1;
	transform: scaleX(1);
}
header nav ul.nav_1st>li>a span{
	line-height: 3;
	letter-spacing: 0.1em;
	transition: color var(--t-base);
	font-size: 1.6rem;
}
header nav ul.nav_1st>li>a:hover span{
	color: var(--i_main_color);
}
header#pattern2 nav ul.nav_1st>li>a span{
	line-height: 3;
}
body.margin header nav ul.nav_1st>li>a span{
	line-height: 4;
}

header nav ul.nav_2nd{
	padding-top: 20px;
}
header nav ul.nav_1st>li:hover ul.nav_2nd{
	padding-top: 15px;
	box-shadow: var(--shadow-md);
	border-radius: var(--r-md);
}
header nav ul.nav_2nd>li{
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--i_border_color);
}
header nav ul.nav_2nd>li:nth-last-of-type(1){
	border-bottom: none;
}
header nav ul.nav_2nd li a{
	padding: 12px 22px;
	font-weight: 600;
	font-size: 1.4rem;
	transition: background var(--t-fast);
}
header nav ul.nav_2nd li a:hover{
	background: var(--i_sub2_color);
}
header nav ul.nav_2nd>li>a{
	padding-right: 30px;
}
header nav ul.nav_2nd>li>a:after{
	height: 6px;
	width: 6px;
	transform: rotate(-45deg);
	border-right: 1.5px solid var(--i_main_color);
	border-bottom: 1.5px solid var(--i_main_color);
	top: calc(50% - 3px);
	right: 20px;
}
header nav ul.nav_3rd{
	padding-left: 20px;
}
header nav ul.nav_3nd li a{
	padding: 5px 20px;
}
header nav ul.nav_3rd>li>a:after{
	height: 1px;
	width: 4px;
	background: var(--i_main_color);
	top: calc(50% - 0.5px);
	left: 5px;
}

@media screen and (max-width: 900px){
	body.scrolled header .logo{
		padding: 10px 0;
	}
	header.open:after,
	header .header_contents{
		background: rgba(255, 255, 255, 0.95);
	}
	header .burger li.sp_translate a svg{
		height: 28px;
		width: 28px;
		margin: 10% auto;
	}
	header .header_sns,
	header .header_contents .header_col1,
	header .header_contents .header_col2{
		border-top: 1px solid rgba(255,255,255,0.2);
		border-bottom: 1px solid var(--i_border_color);
	}
	header .header_sns{
		border-bottom: none;
	}
	header .header_sns:empty,
	header .header_contents .header_col1:empty,
	header .header_contents .header_col2:empty{
		border: none;
	}
	header .header_contents .header_col1 .tel,
	header .header_contents .header_col1 .btn{
		float: none;
	}
	header .header_contents .header_col2{
		display: block;
	}
	header nav{
		border-bottom: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st{
		border-bottom: 1px solid rgba(255,255,255,0.2);
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st li{
		border-bottom: 1px solid var(--i_border_color);
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	header nav ul.nav_1st>li:before,
	header nav ul.nav_1st>li:after{
		display: none;
	}
	header nav ul.nav_1st>li i:before,
	header nav ul.nav_1st>li i:after{
		background: var(--i_main_color);
	}
	header nav ul.nav_2nd{
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_2nd>li{
		box-shadow: none;
	}
	header nav ul.nav_2nd>li *{
		color: var(--i_txt_color);
	}
	header nav ul.nav_3rd{
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_3rd>li:nth-last-of-type(1){
		border-bottom: none;
	}
	header .logo a{
		max-width: 200px;
	}
	header nav ul.nav_1st>li>a:hover:before{
		transform: scale(0, 0);
	}
	header#pattern1 nav,
	header#pattern3 nav{
		border-bottom: 0;
		border-top: 0;
	}
	header .header_contents .header_col1 .btn > a{
		padding: 9px 18px;
	}
	header nav ul.nav_1st>li>a:hover{
		background: none;
	}
	header nav ul.nav_1st>li>a span{
		color: var(--i_txt_color);
	}
	header#pattern2 nav ul.nav_1st{
		border-bottom: 0;
	}
	header .wraper > .inner{
		min-height: 45px;
	}
	header nav ul.nav_1st>li:hover ul.nav_2nd{
		box-shadow: none;
	}
}

/*----------------------------余白設定（呼吸感アップ）----------------------------*/

main>section:first-child:not([class*="pt"]),
main>div:first-child:not([class*="pt"]),
div[class*='pb']+.contents_related,
section[class*='pb']+.contents_related,
div[class*='pb']+.contents_related_tags,
section[class*='pb']+.contents_related_tags{
	padding-top: 70px;                             /* 60→70 */
}
main>section:not([class*="pt"]),
main>div:not([class*="pt"]),
aside>section:not([class*="pt"]),
aside>div:not([class*="pt"]){
	padding-bottom: 70px;                          /* 60→70 */
}
@media screen and (max-width: 800px){
	main>section:first-child:not([class*="pt"]),
	main>div:first-child:not([class*="pt"]),
	div[class*='pb']+.contents_related,
	section[class*='pb']+.contents_related,
	div[class*='pb']+.contents_related_tags,
	section[class*='pb']+.contents_related_tags{
		padding-top: 45px;
	}
	main>section:not([class*="pt"]),
	main>div:not([class*="pt"]),
	aside>section:not([class*="pt"]),
	aside>div:not([class*="pt"]){
		padding-bottom: 45px;
	}
}

/*----------------------------見出し----------------------------*/

section .content_wrapper>.heading:first-child:last-child{
	margin-bottom: 0;
}

section:not([class*="pt"]) .content_wrapper>.heading:first-child:last-child{
	margin-bottom: 0;
}

.heading.block_header_1,
.heading.block_header_6{
	margin-bottom: 35px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
}
.heading.block_header_1 p:before,
.heading.block_header_6 .h:before{
	position: absolute;
	display: block;
	content: "";
	background: linear-gradient(90deg, var(--i_main_color) 0%, var(--i_gold) 100%);
	width: 60px;                                    /* 50→60 */
	bottom: 0;
	height: 4px;                                    /* 3→4 */
	left: calc(50% - 30px);
	border-radius: 2px;
}
.heading.block_header_1.align-left p:before,
.heading.block_header_6.align-left .h:before{
	left: 0;
}
.heading.block_header_1.align-right p:before,
.heading.block_header_6.align-right .h:before{
	left: auto;
	right: 0;
}
.heading.block_header_1.align-left p:after,
.heading.block_header_6.align-left .h:after{
	left: 0;
}
.heading.block_header_1.align-right p:after,
.heading.block_header_6.align-right .h:after{
	left: auto;
	right: 0;
}
.heading.block_header_1 p,
.heading.block_header_6 .h{
	font-weight: 700;
	font-size: 3.7rem;
	line-height: 1.4;
	position: relative;
	padding-top: 0;
	letter-spacing: 0.08em;
	padding-bottom: 16px;                          /* 13→16 */
	margin-bottom: 12px;
	color: var(--i_txt_color);
}

section[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:before,
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:before,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:before,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:before{
	background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
}
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:after,
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:after,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p:after,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h:after{
	background: rgba(255,255,255,0.4);
}
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p,
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_1 p,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_6 .h{
	color: #fff;
}
.heading.block_header_1 .h,
.heading.block_header_6 p{
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--i_main_color);
}
@media screen and (max-width: 800px){
	.heading.block_header_1,
	.heading.block_header_6{
		margin-bottom: 25px;
		padding-top: 15px;
	}
	.heading.block_header_1 p,
	.heading.block_header_6 .h{
		font-size: 2.9rem;
		padding-bottom: 12px;
		margin-bottom: 10px;
	}
	.heading.block_header_1 .h,
	.heading.block_header_6 p{
		font-size: 1.6rem;
	}
	.heading.block_header_1 p:before,
	.heading.block_header_6 .h:before{
		width: 48px;
		left: calc(50% - 24px);
	}
}

/* ⑦ block_header_2 デザイン強化 */
.heading.block_header_2{
	margin-bottom: 35px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--i_sub2_color);
}
section[style*="color: rgb(255, 255, 255);"] .heading.block_header_2,
div[style*="color: rgb(255, 255, 255);"] .heading.block_header_2{
	border-bottom-color: rgba(255,255,255,0.3);
}
.heading.block_header_2.align-center:before{
	display: none;
}
.heading.block_header_2.align-left:before{
	left: 0;
}
.heading.block_header_2.align-right:before{
	right: 0;
}
.heading.block_header_2 .h{
	display: inline-block;
	font-weight: 700;
	font-size: 2.2rem;                              /* 2→2.2rem */
	line-height: 1.55;
	position: relative;
	padding-left: 18px;                             /* 13→18 */
	padding-bottom: 6px;
	margin-bottom: 6px;
	letter-spacing: 0.05em;
	color: var(--i_txt_color);
}
.heading.block_header_2 .h:before,
.heading.block_header_2 .h:after{
	display: block;
	content: '';
	position: absolute;
}
.heading.block_header_2 .h:before{
	top: .35em;
	left: 0;
	width: 6px;                                     /* 縦バー化 */
	height: 1.2em;
	background: linear-gradient(180deg, var(--i_main_color) 0%, var(--i_gold) 100%);
	border-radius: 3px;
	border: none;
}
.heading.block_header_2 p{
	font-size: 1.4rem;
	padding-left: 18px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--i_main_dark);
}
.news_archive .heading.block_header_2,
.glossary_archive .heading.block_header_2,
.widget_gallery01 .heading.block_header_2,
.gallery_archive .heading.block_header_2{
	border: none;
}

@media screen and (max-width: 800px){
	.heading.block_header_2{
		margin-bottom: 22px;
	}
	.heading.block_header_2 .h{
		font-size: 2rem;
		padding-left: 14px;
	}
	.heading.block_header_2 p{
		padding-left: 14px;
	}
	.heading.block_header_2 .h::before{
		width: 5px;
		height: 1.2em;
		top: .35em;
	}
}

.heading.block_header_3{
	overflow: hidden;
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	padding: 12px 22px;
	margin-bottom: 30px;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
}
.heading.block_header_3:before{
	display: block;
	content: "";
	width: calc(100% - 10px);
	height: 1px;
	position: absolute;
	top: auto;
	bottom: 4px;
	left: 5px;
	background: rgba(255,255,255,0.6);
}
.heading.block_header_3 .h{
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	color: #fff;
}
.heading.block_header_3 p{
	font-size: 1.4rem;
	color: rgba(255,255,255,0.92);
}
@media screen and (max-width: 800px){
	.heading.block_header_3{
		padding: 8px 14px;
		margin-bottom: 22px;
	}
	.heading.block_header_3 .h{
		font-size: 2rem;
	}
	.heading.block_header_3 p{
		font-size: 1.3rem;
	}
}

/* ⑦ block_header_4 デザイン強化 */
.heading.block_header_4{
	margin-bottom: 18px;
	padding-left: 22px;                            /* アクセント追加 */
	position: relative;
}
.heading.block_header_4:before{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0.3em;
	width: 14px;
	height: 14px;
	background: var(--i_main_color);
	transform: rotate(45deg);
	border-radius: 2px;
}
.heading.block_header_4 .h{
	font-size: 2.2rem;                              /* 2.1→2.2 */
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 6px;
	color: var(--i_main_dark);
	letter-spacing: 0.04em;
}
.heading.block_header_4 p{
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--i_txt_color);
	opacity: 0.75;
}

.heading.block_header_5{
	margin-bottom: 15px;
}
.heading.block_header_5 .h{
	display: inline;
	font-weight: 600;
	font-size: 1.75rem;                             /* 1.7→1.75 */
	margin-bottom: 10px;
	letter-spacing: 0.05em;
}
.heading.block_header_5 p{
	display: inline;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.heading.block_header_5 p:before{
	content: "　/　";
}
#sidebar .heading.block_header_5 {
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	padding: 8px 18px;
	position: relative;
	color: #fff;
	border-radius: var(--r-sm);
}

/*----------------------------背景パララックス----------------------------*/

.parallax{
	box-shadow: 0 0 8px var(--i_shadow_color) inset;
}

/*----------------------------⑧ ボタン（立体感UP）----------------------------*/

.contents_btn01 a,
.glossary_archive .content_wrapper .heading.block_header_2 a:after,
main form .submit{
	color: var(--i_btn_txt_color) !important;
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	position: relative;
	display: inline-block;
	padding-left: 14px;
	padding-right: 14px;
	text-align: center;
	border-radius: var(--r-pill);                  /* 角丸→ピル形 */
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: var(--shadow-sm);
	transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
main form .submit span{
	display: block;
	position: relative;
}
.contents_btn01 a:before,
main form .submit span:before{
	position: absolute;
	content: " ";
	width: 7px;
	height: 7px;
	top: calc(50% - 4px);
	left: 8px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: rotate(45deg);
	transition: left var(--t-fast);
	z-index: 10;
}
.contents_btn01 a:hover,
.glossary_archive .content_wrapper .heading.block_header_2 a:hover:after,
main form .submit:hover{
	background: linear-gradient(135deg, var(--i_btn_hover_color) 0%, var(--i_main_color) 100%);
	color: var(--i_btn_hover_txt_color) !important;
	transform: translateY(-2px);
	box-shadow: var(--shadow-cta);
}
.contents_btn01 a:hover:before,
main form .submit span:hover:before{
	left: 13px;
}
.contents_btn01 a[target=_blank] span:before,
.contents_btn01 a[target=_blank] span:after{
	border: 1px solid #fff;
}
.contents_btn01 a span{
	text-align: center;
	line-height: 1.5;
	font-size: 1.55rem;                             /* 1.5→1.55 */
}
main form .submit{
	position: relative;
	display: inline;
	padding: 0;
}
main .widget_gallery01 .contents_btn01 a,
main .gallery_archive .inner_item .contents_btn01 a,
main .gallery_single .inner_item .contents_btn01 a,
main * .contents_btn01 a {
	overflow: visible;
	margin-bottom: 10px;
}
main form .submit span input {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	display: block;
	background: transparent;
}
.widget_form form .submit input{
	font-family: inherit;
}
#fixbtn .inner > div {
	padding: 10px 18px;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea{
	-webkit-appearance: none;
	appearance: none;
	border-radius: var(--r-sm);
}

@media screen and (max-width: 500px){
	#fixbtn .inner > div {
		padding: 10px 2px;
	}
}


/*--------------------------------MV--------------------------------*/

#mv_outer{
	position: relative;
}
#mv{
	width: 100%;
	height: 82vh;
	height: 82dvh;
	min-height: 500px;
}
#mv:after{
	pointer-events: none;
	z-index: 6;
	width: 90%;
	margin-left: 10%;
	background: linear-gradient(45deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.1) 50%, transparent);
}
#mv .mv_img li{
	width: 90%;
	margin-left: 10%;
}
#mv .mv_text{
	height: 90%;
	align-items: flex-end;
	width: 100%;
	left: 0;
	bottom: 10%;
}
#mv .mv_text>div{
	max-width: none;
	box-sizing: border-box;
	width: 95%;
	padding-bottom: 15px;
}
#mv .mv_text h2{
	font-size: 4.2rem;                              /* 4→4.2 */
	line-height: 1.15;
	letter-spacing: 0.1em;
	font-weight: 700;
	position: relative;
	display: inline-block;
	color: var(--i_txt_color);
}
#mv .mv_text p{
	padding-top: 22px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--i_main_dark);
}
#mv .mv_scroll{
	display: none;
}
#mv .mv_pointer {
	width: 100%;
	height: auto;
	position: absolute;
	top: 100px;
	bottom: auto;
	left: 0;
	padding: 0;
	text-align: center;
}
#mv .mv_pointer li{
	display: block;
	height: 40px;
	margin: 0;
	counter-increment: mvImg;
}
#mv .mv_pointer li:after{
	content: "0" counter(mvImg);
	position: absolute;
	left: 100px;
	opacity: 0.5;
	transition: opacity var(--t-slow);
	font-size: 0.9em;
	letter-spacing: 0.05em;
	color: var(--i_txt_color);
}
#mv .mv_pointer li.current:after{
	opacity: 1;
	font-weight: 700;
}
#mv .mv_pointer li:before{
	background: rgba(180, 180, 180, 0.4);
	width: 40px;
	height: 1px;
	position: absolute;
	transition: width var(--t-slow), background var(--t-slow);
	margin-top: 13px;
}
#mv .mv_pointer li.current:before{
	width: 80px;
	background: var(--i_main_color);
}
#mv .mv_arrow {
	display: none;
}
@media screen and (max-aspect-ratio: 1/1){
	#mv{
		height: 70vh;
		height: 70dvh;
	}
}
@media screen and (max-width: 1300px){
	#mv .mv_pointer li:before{
		width: 20px;
	}
	#mv .mv_pointer li.current:before{
		width: 40px;
	}
	#mv .mv_pointer li:after{
		left: 60px;
	}
}
@media screen and (max-width: 900px){
	#mv_outer{
		padding-top: 0;
	}
}
@media screen and (max-width: 800px){
	#mv .mv_pointer{
		top: 60px;
	}
}
@media screen and (max-width: 600px){
	#mv .mv_text h2{
		line-height: 1.5;
	}
	#mv .mv_pointer li:before{
		width: 0;
	}
	#mv .mv_pointer li.current:before{
		width: 10px;
	}
	#mv .mv_pointer li:after{
		left: 20px;
	}
	#mv .mv_text p{
		padding-top: 8px;
	}
}
@media screen and (max-width: 650px){
	#mv .mv_text h2{
		font-size: 6.2vw;
	}
}
@media screen and (max-width: 480px){
	#mv .mv_text > div{
		width: 95%;
	}
	#mv .mv_img li{
		width: 85%;
		margin-left: 15%;
	}
	#mv::after{
		width: 85%;
		margin-left: 15%;
		background: linear-gradient(to top, rgba(255,255,255,0.85) 20%, rgba(255,255,255,0.1) 50%, transparent);
	}
	#mv .mv_text>div{
		border-bottom: none;
		padding-bottom: 0;
		border-image: none;
	}
}

/*--------------------------------LV（下層ページヘッダー）--------------------------------*/

#lv{
	background: linear-gradient(135deg, #4f4841 0%, #3a3530 100%);
	height: 320px;                                  /* 300→320 */
	padding-bottom: 0;
	width: 100%;
	position: relative;
	overflow: hidden;
}
#lv::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(235, 137, 45, 0.15) 0%, transparent 60%);
	pointer-events: none;
}
#lv_outer{
	position: relative;
}
header.over+#lv_outer #lv{
	min-height: 320px;
}
#lv div{
	opacity: 0.35;
}
#lv p{
	left: 0;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
#lv p span{
	display: inline-block;
	font-size: 3.8rem;                              /* 3.7→3.8 */
	font-weight: 700;
	text-align: center;
	position: relative;
	word-break: break-all;
	line-height: 1.25;
	letter-spacing: 0.1em;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
@media screen and (max-width: 800px){
	#lv{
		height: 210px;
	}
	#lv p span{
		font-size: 2.7rem;
	}
}

/*----------------------------パンくず（視認性UP）----------------------------*/

#pan{
	padding: 8px 0;
	border-bottom: 1px solid var(--i_border_color);
	background: var(--i_cream);
}
#pan li{
	font-size: 1.25rem;
	padding: 5px 0 3px 30px;
	color: var(--i_txt_color);
}
#pan li:before,
#pan li:after{
	border-top: 1.5px solid var(--i_main_color);
	border-right: 1.5px solid var(--i_main_color);
}
#pan li a:hover{
	color: var(--i_main_color);
}

/*----------------------------other parts----------------------------*/

.default_ul li:before{
	border-top: 2px solid var(--i_main_color);
	border-right: 2px solid var(--i_main_color);
	height: 6px;
	width: 6px;
	transform: rotate(45deg);
	top: 9px;
	left: 0;
}

.category1 li a{
	border: 1.5px solid var(--i_border_color);
	border-radius: var(--r-pill);
	font-size: 1.4rem;
	color: var(--i_txt_color);
	font-weight: 600;
	padding: 8px 18px;
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.category1 li a:hover,
.category1 li a.current{
	background: var(--i_main_color);
	color: #fff;
	border-color: var(--i_main_color);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

#sidebar section,
#sidebar>div{
	border-bottom: 1px solid var(--i_border_color);
}
#sidebar h2{
	text-align: left;
	font-size: 2.2rem;
}
#sidebar .sidebar_tag li{
	border: 1px solid var(--i_border_color);
	background: var(--i_sub2_color);
	border-radius: var(--r-sm);
	transition: background var(--t-fast);
}
#sidebar .sidebar_tag li:hover{
	background: var(--i_cream_dark);
}
#sidebar .sidebar_list a{
	position: relative;
	padding-left: 18px;
	transition: color var(--t-fast), padding-left var(--t-fast);
}
#sidebar .sidebar_list a:before{
	content: "";
	display: block;
	position: absolute;
	border-top: 1.5px solid var(--i_main_color);
	border-right: 1.5px solid var(--i_main_color);
	height: 6px;
	width: 6px;
	transform: rotate(45deg);
	top: calc(50% - 4px);
	left: 0;
	transition: left var(--t-fast);
}
#sidebar .sidebar_list a:hover{
	color: var(--i_main_color);
	padding-left: 22px;
}
#sidebar .sidebar_list a:hover:before{
	left: 4px;
}

/*----------------------------pager----------------------------*/

.pager li a{
	height: 45px;
	width: 45px;
	border-radius: 999px;
	line-height: 45px;
	border: 1.5px solid var(--i_border_color);
	color: var(--i_txt_color);
	font-size: 1.4rem;
	font-weight: 600;
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.pager li:not(.arrow) a:hover,
.pager li:not(.arrow).current a{
	background: var(--i_main_color);
	color: #fff;
	border-color: var(--i_main_color);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
.pager li.arrow a{
	background: none;
}

.pager2 li a{
	border: 1.5px solid var(--i_border_color);
	color: var(--i_txt_color);
	line-height: 45px;
	padding: 0 18px;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: var(--r-sm);
	transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.pager2 li a:hover{
	background: var(--i_main_color);
	color: #fff;
	border-color: var(--i_main_color);
}

/*----------------------------popup----------------------------*/

.popup{
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.poptxt{
	font-size: 1.2rem;
}

/*----------------------------⑩ footer / 固定CTA（訴求力大幅向上）----------------------------*/

#fixbtn{
	margin-bottom: 30px;
	font-size: 1.55rem;
}
#fixbtn .fixbtnwrap{
	background: linear-gradient(135deg, var(--i_cream) 0%, var(--i_sub2_color) 100%);
	border-top: 2px solid var(--i_main_color);
	box-shadow: 0 -2px 10px var(--i_shadow_color);
}
#fixbtn.no .fixbtnwrap{
	background-color: transparent;
	border-top: none;
	box-shadow: none;
}
#fixbtn .fixbtntel,
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span{
	color: var(--i_main_dark);
}
#fixbtn .fixbtntel{
	border-right: 1px solid var(--i_border_color);
}
#fixbtn .fixbtntel:nth-last-of-type(2){
	border-right: none;
}
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span{
	font-size: 2.8rem;                              /* 2.6→2.8 */
	line-height: 1;
	margin-right: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
}
#fixbtn .fixbtntel a:last-child,
#fixbtn .fixbtntel span:last-child{
	margin-right: 0;
}
#fixbtn .fixbtntel svg{
	width: 24px;
	height: 24px;
	margin-right: 7px;
	fill: var(--i_main_color);
}
#fixbtn .contents_btn01{
	border-left: 1px solid rgba(255,255,255,0.1);
}
#fixbtn .contents_btn01:nth-of-type(1){
	border-left: none;
	margin-left: auto;
	margin-right: auto;
}
#fixbtn .contents_btn01 a{
	padding: 0;
	border-radius: var(--r-md);                     /* 角丸調整 */
}
#fixbtn .contents_btn01 span{
	text-align: center;
	padding: 10px 22px;
}
#fixbtn .contents_btn01 a:before{
	display: none;
}
#fixbtn #scrolltop:nth-of-type(1){
	margin-left: auto;
	margin-right: auto;
}
#fixbtn #scrolltop a{
	height: 44px;
	width: 44px;
	background: var(--i_main_color);
	border-radius: 50%;
	transition: background var(--t-base), transform var(--t-base);
}
#fixbtn #scrolltop a:hover{
	background: var(--i_main_dark);
	transform: translateY(-3px);
}
#fixbtn #scrolltop a:before{
	top: 19px;
	left: 7px;
	transform: rotate(45deg);
	transition: opacity var(--t-fast);
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	width: 28px;
	height: 28px;
}
#fixbtn #scrolltop a:hover:before{
	opacity: 1;
}
#fixbtn.no #scrolltop a{
	background: transparent;
}
#fixbtn.no #scrolltop a:before{
	border-color: rgba(120,120,120,0.6);
}
#fixbtn.no #scrolltop a:hover:before{
	border-left: 2px solid var(--i_main_color);
	border-top: 2px solid var(--i_main_color);
}
@media screen and (min-width: 701px){
	footer.add_design2 nav:nth-last-child(2),
	footer.add_design3 nav:nth-last-child(2),
	footer.add_design2 .logo:nth-last-child(1),
	footer.add_design3 .logo:nth-last-child(1),
	footer.add_design4 nav:nth-last-child(2),
	footer.add_design5 nav:nth-last-child(2),
	footer.add_design4 .logo:nth-last-child(1),
	footer.add_design5 .logo:nth-last-child(1) {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 600px){
	#fixbtn{
		margin-bottom: 0;
	}
	#fixbtn,
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span{
		font-size: 1.7rem;
		margin: 0;
	}
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span{
		font-size: 2.1rem;
		color: var(--i_main_dark);
	}
	#fixbtn .fixbtntel svg{
		width: 19px;
		height: 19px;
	}
	#fixbtn .contents_btn01 a{
		padding: 0;
		letter-spacing: 0;
	}
	#fixbtn .contents_btn01 a span{
		padding: 9px 12px;
	}
}
footer{
	background: linear-gradient(180deg, var(--i_sub2_color) 0%, var(--i_cream_dark) 100%);
	padding: 0;
	color: var(--i_txt_color);
	text-align: center;
	font-size: 1.4rem;                              /* 1.35→1.4 */
}
footer a{
	color: var(--i_txt_color);
	transition: color var(--t-fast);
}
footer a:hover{
	color: var(--i_main_color);
}
footer nav li{
	letter-spacing: 0.05em;
	padding: 6px 0;
}
footer nav li a{
	font-weight: 700;
	font-size: 1.45rem;                             /* 1.4→1.45 */
}
footer .logo{
	width: 300px;
	margin: 0 auto 20px;
}
footer .sns{
	margin: 0 auto 30px;
}
footer .sns svg{
	width: 42px;
	height: 42px;
	padding: 10px;
	fill: var(--i_txt_color);
	transition: fill var(--t-fast), transform var(--t-fast);
}
footer .sns a:hover svg{
	fill: var(--i_main_color);
	transform: translateY(-2px);
	opacity: 1;
}
#cp{
	padding: 12px 0;
	font-size: 1.15rem;
	letter-spacing: 0.05em;
	color: var(--i_txt_color);
	background: rgba(0,0,0,0.05);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
@media screen and (max-width: 600px){
	footer{
		padding: 0 0 25px;
		background-position: center;
	}
	footer nav ul{
		border-bottom: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li{
		border-top: 1px solid rgba(255,255,255,0.1);
		border-bottom: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(2n){
		border-right: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(2n+1){
		border-left: 1px solid rgba(255,255,255,0.1);
	}
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(2),
	footer nav ul li:nth-of-type(3):nth-last-of-type(2n-1){
		border-top: 1px solid rgba(0,0,0,0.13);
	}
	footer nav ul li:nth-last-of-type(1),
	footer nav ul li:nth-last-of-type(2){
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	footer .logo{
		width: 170px;
		margin: 0 auto 8px;
	}
	#fixbtn .fixbtnwrap{
		border-bottom: none;
	}
	#fixbtn .inner{
		padding: 0;
	}
}

/*------------------------------------------------------------------*/
/*----------------------------widget--------------------------------*/
/*------------------------------------------------------------------*/

/*----------------------------⑨ contents_faq01（FAQ刷新）----------------------------*/

.contents_faq01 dt{
	padding: 18px 18px 18px 6.5rem;                /* 余白拡大 */
	margin-bottom: 0;
	min-height: 35px;
	width: 100%;
	box-sizing: border-box;
	background: var(--i_cream);
	border-radius: var(--r-md) var(--r-md) 0 0;
	border: 1px solid var(--i_border_color);
	border-bottom: none;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1.7;
	color: var(--i_txt_color);
	position: relative;
}
.contents_faq01 dd{
	padding: 18px 18px 18px 6.5rem;
	margin-bottom: 24px;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0 0 var(--r-md) var(--r-md);
	border: 1px solid var(--i_border_color);
	border-top: none;
	font-size: 1.6rem;
	line-height: 1.95;
	position: relative;
}
.contents_faq01 dt:before,
.contents_faq01 dd:before{
	width: 4rem;
	height: 4rem;
	font-size: 2.4rem;
	line-height: 1.7;
	box-sizing: border-box;
	font-weight: 700;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: 1.5rem;
	top: 1.5rem;
}
.contents_faq01 dt:before{
	color: #fff;
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	border: none;
	box-shadow: 0 2px 6px var(--i_shadow_warm);
}
.contents_faq01 dd:before{
	background: #fff;
	color: var(--i_main_color);
	border: 2px solid var(--i_main_color);
	line-height: 1.55;
}

/*----------------------------contents_related_tags----------------------------*/

.contents_related_tags .inner_item{
	border: 1px solid var(--i_border_color);
	border-radius: var(--r-md);
	transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.contents_related_tags .inner_item:hover{
	background: var(--i_cream);
	border-color: var(--i_main_color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.contents_related .inner_item a{
	transition: background var(--t-base), opacity var(--t-base), transform var(--t-base);
	border-radius: var(--r-md);
}
.contents_related .inner_item a:hover{
	background: var(--i_sub2_color);
	opacity: 0.92;
	transform: translateY(-2px);
}

/*----------------------------テーブル全般（料金表等）----------------------------*/

.block_table_1 table thead,
.block_table_1 table thead th,
.block_table_1 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_1 table th{
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	color: #fff;
	border: 1px solid var(--i_main_dark);
	text-align: center;
	vertical-align: middle;
	font-weight: 700;
	padding: 12px 14px;
}
.block_table_1 table td{
	background-color: #fff;
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
	padding: 12px 14px;
}
.block_table_1 table tbody tr:nth-child(even) td{
	background-color: var(--i_cream);
}
.block_table_1 table thead td{
	text-align: center;
	font-weight: 700;
}

.block_table_2 table thead,
.block_table_2 table thead th,
.block_table_2 table thead td,
.block_table_5 table thead,
.block_table_5 table thead th,
.block_table_5 table thead td,
.block_table_6 table thead,
.block_table_6 table thead th,
.block_table_6 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_2 table th,
.block_table_5 table th,
.block_table_6 table th{
	background: linear-gradient(135deg, var(--i_main_color) 0%, var(--i_main_dark) 100%);
	color: #fff;
	border: 1px solid var(--i_main_dark);
	text-align: center;
	vertical-align: middle;
	font-weight: 700;
	padding: 12px 14px;
}
.block_table_2 table td,
.block_table_5 table td,
.block_table_6 table td{
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
	padding: 12px 14px;
}
.block_table_2 table thead td,
.block_table_5 table thead td,
.block_table_6 table thead td{
	text-align: center;
	font-weight: 700;
}
@media screen and (max-width: 500px){
	.block_table_2 table{
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_2 table th{
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_2 table td{
		border-top: 1px dotted var(--i_border_color);
	}
}

.block_table_3 table thead,
.block_table_3 table thead th,
.block_table_3 table thead td,
.block_table_7 table thead,
.block_table_7 table thead th,
.block_table_7 table thead td{
	background-color: var(--i_sub2_color);
}
.block_table_3 table th,
.block_table_7 table th{
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_3 table td,
.block_table_7 table td{
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
@media screen and (max-width: 500px){
	.block_table_3 table{
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_3 table th{
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_3 table td{
		border-top: 1px dotted var(--i_border_color);
	}
}
.block_table_3_item li{
	vertical-align: middle;
}

/*----------------------------gallery_archive / gallery_single----------------------------*/

.gallery_archive .inner_item a,
.gallery_single .inner_item a{
	transition: background var(--t-fast);
	background-color: transparent;
	border-radius: var(--r-md);
	overflow: hidden;
}
.gallery_archive .inner_item a:hover,
.gallery_single .inner_item a:hover{
	background-color: #000;
}
.gallery_archive .inner_item a:hover img,
.gallery_single .inner_item a:hover img{
	opacity: 0.8;
}
.gallery_archive .inner_item a:after,
.gallery_single .inner_item a:after{
	color: #fff;
}
.gallery_archive .inner_item p span,
.gallery_single .inner_item p span{
	color: #fff;
}
.gallery_single_slider .slick-arrow::before{
	border-color: var(--i_btn_color);
}

/*----------------------------widget_gallery01----------------------------*/

.widget_gallery01 .slick-arrow{
	height: 40px;
	width: 30px;
	top: calc(50% - 20px);
	left: 0;
}
.widget_gallery01 .slick-next{
	left: auto;
	right: 0;
}

main .widget_gallery01 a,
main .gallery_archive .inner_item a,
main .gallery_single .inner_item a{
	overflow: hidden;
	border-radius: var(--r-md);
}
main .widget_gallery01 a img,
main .gallery_archive .inner_item a img,
main .gallery_single .inner_item a img{
	object-fit: cover;
	object-position: 50% 50%;
	backface-visibility: visible;
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
	transform: scale(1.001, 1.001);
}
main .widget_gallery01 a:hover img,
main .gallery_archive .inner_item a:hover img,
main .gallery_single .inner_item a:hover img{
	transform: scale(1.08, 1.08);
	opacity: 0.85;
}

/*----------------------------news_archive----------------------------*/

.news_archive article .inner_item_img{
	transition: opacity var(--t-base);
	border-radius: var(--r-md);
	overflow: hidden;
}
.news_archive article .inner_item_img:hover{
	opacity: 0.88;
}
.news_archive article .entry_meta{
	font-size: 1.35rem;
}
.add_design5 #primary article .inner_item_img a i:nth-last-child(1){
	background-size: 50%;
}
#sidebar .widget_news02 li a div span i{
	background-size: 50%;
}

/*----------------------------widget_coupon----------------------------*/

.widget_coupon .content_wrapper{
	max-width: 900px;
}
.widget_coupon .inner_item>div,
.widget_coupon .inner_item>dl{
	font-size: 1.4rem;
	line-height: 1.75;
}

/*----------------------------⑪ widget_form（フォームを柔らかく）----------------------------*/

.widget_form .privacypolicy{
	border: 1px solid var(--i_border_color);
	border-radius: var(--r-md);
	background: var(--i_cream);
}
.widget_form form{
	border-top: 1px solid var(--i_border_color);
}
.widget_form form dl{
	border-bottom: 1px solid var(--i_border_color);
}
.widget_form form dt,
.widget_form form dd{
	vertical-align: middle;
}
.widget_form form dt span{
	color: #fff;
	background: var(--i_accent);
	padding: 2px 8px;
	border-radius: var(--r-sm);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 770px){
	.widget_form form dt{
		border-bottom: 1px dotted var(--i_border_color);
	}
}
main form dl input,
main form textarea{
	background: var(--i_cream);
	border: 1.5px solid transparent;
	border-radius: var(--r-md);
	padding: 12px 14px;
	letter-spacing: 0.5px;
	font-size: 1.55rem;
	transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
main form dl input:focus,
main form textarea:focus{
	background: #fff;
	border: 1.5px solid var(--i_main_color);
	box-shadow: 0 0 0 4px rgba(235, 137, 45, 0.12);
}
main form .submit input{
	letter-spacing: 3px;
	border: none;
}
main form select{
	background: var(--i_bg_color);
	border: 1.5px solid var(--i_border_color);
	border-radius: var(--r-md);
	padding: 10px 14px;
	letter-spacing: 1px;
}
main form input[type=radio] + label,
main form input[type=checkbox] + label{
	padding: 0 15px 0 24px;
}
main form input[type=radio] + label::before,
main form input[type=checkbox] + label::before{
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	background: var(--i_cream);
	border: 1.5px solid var(--i_border_color);
}
main form input[type=radio] + label::before{
	border-radius: 30px;
}
main form input[type=radio]:checked + label::after,
main form input[type=checkbox]:checked + label::after{
	left: 5px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: var(--i_main_color);
}
main form input[type=radio]:checked + label::after{
	border-radius: 100%;
}

/*----------------------------widget_link----------------------------*/

.widget_link .inner_item_txt{
	font-size: 2rem;
}
.widget_link .inner_item_url{
	color: var(--i_main_color);
}

/*----------------------------widget_lp01----------------------------*/

.widget_lp01 li a{
	transition: opacity var(--t-fast), transform var(--t-fast);
	border-radius: var(--r-md);
	overflow: hidden;
}
.widget_lp01 li a:hover{
	opacity: 0.92;
	transform: translateY(-2px);
}
.widget_lp01 li a div span{
	background-size: 60% auto;
}

/*----------------------------widget_menu01----------------------------*/

.widget_menu01 h3{
	vertical-align: central;
	font-size: 1.75rem;
	letter-spacing: 1px;
	margin-bottom: 18px;
}
.widget_menu01 li dd{
	font-size: 1.35rem;
	letter-spacing: 0;
}

.widget_menu02 h3{
	vertical-align: central;
	font-size: 1.75rem;
	letter-spacing: 1px;
}
.widget_menu02 li>p{
	font-size: 1.35rem;
	letter-spacing: 0;
}

/*----------------------------widget_news02----------------------------*/

.block_news_2 li{
	box-shadow: var(--shadow-sm);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: transform var(--t-base), box-shadow var(--t-base);
}
.block_news_2 li:hover{
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.block_news_2 li a{
	padding: 30px;
	border: 1px solid var(--i_border_color);
	transition: border-color var(--t-base);
}
.block_news_2 li a:after{
	border: 0 solid rgba(235, 137, 45, 0.08);
}
.block_news_2 li a:hover{
	border-color: var(--i_main_color);
}
.block_news_2 li a:hover:after{
	border-width: 8px;
}

/*----------------------------widget_staff01----------------------------*/

.widget_staff01 .inner_item a{
	transition: opacity var(--t-fast), transform var(--t-fast);
}
.widget_staff01 .inner_item a:hover{
	transform: translateY(-3px);
}
.widget_staff01 .inner_item a:hover *{
	opacity: 0.9;
}
.widget_staff01 .sub{
	font-size: 1.25rem;
	font-weight: 700;
}

/*----------------------------widget_tel（電話番号視認性UP）----------------------------*/

.widget_tel{
	background: var(--i_cream);
	border-radius: var(--r-lg);
	padding: 20px;
	box-shadow: var(--shadow-md);
}
.widget_tel .inner_item_tel a,
.widget_tel .inner_item_tel span{
	font-size: 3.8rem;                              /* 3.6→3.8 */
	letter-spacing: 0.05em;
	line-height: 1.1;
	padding: 20px;
	color: var(--i_main_dark);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}
@media screen and (max-width: 450px){
	.widget_tel .inner_item_tel a,
	.widget_tel .inner_item_tel span{
		font-size: 2.7rem;
		padding: 12px 8px;
	}
	.widget_tel .inner_item_tel img{
		margin: 0 5px -2px 0;
	}
	.widget_tel .inner_item_tel svg{
		height: 17px;
		width: 17px;
	}
}

/*------------------glossary_archive------------------------*/

.glossary_archive .content_wrapper article{
	margin-bottom: 35px;
	padding-bottom: 35px;
}
.glossary_archive .content_wrapper .heading.block_header_2{
	margin-bottom: 10px;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h{
	font-size: 1.85rem;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h:after{
	top: 1em;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:after{
	content: "View More";
	position: absolute;
	width: 150px;
	bottom: 32px;
	right: 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--r-pill);
}
.glossary_archive .content_wrapper article .entry_body{
	padding-right: 180px;
}

@media screen and (max-width: 1224px){
	.glossary_archive .content_wrapper .heading.block_header_2 a:after{
		bottom: calc(32px + 1.8rem);
	}
}
@media screen and (max-width: 650px){
	.glossary_archive .content_wrapper article{
		padding-bottom: 65px;
	}
	.glossary_archive .content_wrapper .heading.block_header_2 a:after{
		bottom: 30px;
	}
	.glossary_archive .content_wrapper article .entry_body{
		padding-right: 0;
	}
}

/*------------------recruit------------------------*/

.recruit_archive.add_design1 .recruitment_list .inner_item{
	background: rgba(255,255,255,.85);
	border-radius: var(--r-md);
}

.index main>section:first-child +div.composite_box01 .heading.block_header_4 .h,
.index main>section:first-child +div+div.composite_box01 .heading.block_header_4 .h{
	font-size: 2.6rem;                              /* 2.5→2.6 */
	letter-spacing: 0.05em;
}
@media screen and (max-width: 800px){
	.index main>section:first-child +div.composite_box01 .heading.block_header_4 .h,
	.index main>section:first-child +div+div.composite_box01 .heading.block_header_4 .h{
		font-size: 2.1rem;
	}
}

/*------------------t_bg------------------*/

#t_bg+section .parallax_img{
	opacity: 0.5;
	filter: brightness(110%) blur(5px) contrast(80%);
}
#t_bg+section>.content_wrapper{
	background: rgba(255, 255, 255, 0.92);
	padding: 60px;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}
@media screen and (max-width: 1200px){
	#t_bg+section>.content_wrapper{
		padding: 60px 2%;
		width: calc(100% - 30px);
	}
}

/*------------------4カラム------------------*/

@media screen and (min-width: 800px){
	#c4+.composite_box01 .inner_item:nth-of-type(even){
		margin-top: 80px;
	}
}

/*------------------t_palalax------------------*/

#top_seo +section .block_header_2 h3,
#top_greeting +section .block_header_2 h3{
	font-size: 3.8rem;
	padding-left: 0;
	font-weight: 700;
	border-bottom: none;
}
#top_seo +section .block_header_2 p,
#top_greeting +section .block_header_2 p{
	font-size: 1.75rem;
	padding-left: 0;
	font-weight: 700;
	color: var(--i_main_color);
}
#top_seo +section .block_header_2 .h::before,
#top_greeting +section .block_header_2 .h::before{
	display: none;
}
#top_seo +section .inner_item_txt,
#top_greeting +section .inner_item_txt {
	padding: 100px;
	max-width: 850px;
}
#top_3 +div .heading.block_header_4 .h {
	font-size: 2.5rem;
}
#top_3 +div .heading.block_header_4 p {
	font-size: 1.7rem;
}
@media screen and (max-width: 1400px){
	#top_seo +section .inner_item_txt,
	#top_greeting +section .inner_item_txt {
		padding: 60px;
		max-width: 850px;
	}
}
@media screen and (max-width: 800px){
	#top_seo +section .block_header_2 h3,
	#top_greeting +section .block_header_2 h3 {
		font-size: 2.9rem;
	}
	#top_seo +section .block_header_2 p,
	#top_greeting +section .block_header_2 p {
		font-size: 1.5rem;
	}
	#top_3 +div .heading.block_header_4 p {
		font-size: 1.5rem;
	}
}

/*------------------------------------------------------------------*/
/*------------------------ 高コントラスト対応 ----------------------*/
/*------------------------------------------------------------------*/

@media (prefers-contrast: more){
	:root{
		--i_txt_color: #1a1a1a;
		--i_border_color: rgba(0, 0, 0, 0.35);
		--i_main_color: #b04a18;
		--i_main_dark: #823310;
	}
	a{ text-decoration: underline; }
	.contents_btn01 a,
	main form .submit{
		border: 2px solid var(--i_main_dark);
	}
}

/*------------------------------------------------------------------*/
/*------------------------ プリント用CSS --------------------------*/
/*------------------------------------------------------------------*/

@media print{
	*,
	*::before,
	*::after{
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	body{
		font-size: 10.5pt;
		line-height: 1.65;
		color: #000;
		background: #fff;
	}
	header,
	footer,
	#fixbtn,
	.burger,
	#sidebar,
	#mv,
	#lv_outer,
	nav,
	.contents_btn01,
	.translate,
	#google_translate_element{
		display: none !important;
	}
	a, a:visited {
		color: #000 !important;
		text-decoration: underline;
	}
	a[href^="http"]:after{
		content: " (" attr(href) ")";
		font-size: 9pt;
	}
	a[href^="#"]:after,
	a[href^="mailto:"]:after,
	a[href^="tel:"]:after{
		content: "";
	}
	h1, h2, h3, h4, h5, h6,
	.heading{
		page-break-after: avoid;
		break-after: avoid;
	}
	img{
		max-width: 100% !important;
		page-break-inside: avoid;
		break-inside: avoid;
	}
	table, figure{
		page-break-inside: avoid;
		break-inside: avoid;
	}
	main{
		padding: 0 !important;
		margin: 0 !important;
	}
}