@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
/*パンくず*/
.sec_pankuzu{
	padding: 0 0 15px 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
/**/
.f-now{
	font-family: 'Noto Serif JP', serif;
}



/**/
.common_end {
	padding: var(--v-space) 0 clamp(90px, 7vw, 150px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*背景（各ページで変えることも可）*/
.combg-01{
	background-image: url(../img/bg_03.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.common_end p {
	font-size: clamp(15px,1.5vw,16px);
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.bgfit{
	background-color: rgba(0, 22, 74, 0.66);
	max-width: 970px;
	padding: 55px 20px 20px 20px;
	margin: 0 auto;
}


/**/
.spot__heading03 {
	position: relative; /* 親要素を相対位置に設定 */
}
.spot__heading03 h3 {
	font-size: clamp(14px,1.5vw,16px);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 15px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	padding-top: 25px;
}
.spot__heading03 span {
	position: absolute;
	font-family: "WindSong", serif;
	margin: 0;
	font-size: clamp(40px,5vw,50px);
	text-align: center;
	top: -0.9em; /* 調整が必要かもしれません */
	left: 50%;
	transform: translateX(-50%);
	/*transform-origin: left top;*/
	pointer-events: none;
	/*white-space: nowrap;*/
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #fff4d1;
	opacity: 0.8;
	z-index: 2;
}
@media only screen and (max-width: 868px) {
	.spot__heading03 h3 {
		text-align: justify;
	}
}
/*印刷用*/
@media print{
	.spot__heading03 h3 {
		font-size: clamp(14px,1.5vw,16px);
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
		line-height: 1.5;
		font-family: 'Noto Serif JP', serif;
		margin-bottom: 15px;
		font-weight: 600;
		text-align: center;
		color: #fff;
		padding-top: 25px;
	}
}



/* =======================
   spot: フルブリード画像 × テキストカード
   ======================= */

.full_imgtext {
	position: relative;
	/*padding:  clamp(48px, 6vw, 72px) 0;*/
	padding:  clamp(35px, 5vw, 60px) 0;
	overflow-x: clip;
	overflow-x: hidden;
}

/* レイアウト：PCは画像＋カードの2エリア／SPは縦積み */
.full_imgtext .full_imgtext__grid{
	display: grid;
	grid-template-areas:
		"media"
		"card";
}

/* 画像：フルブリード（ビューポートいっぱいに突き抜け） */
.full_imgtext .full_imgtext__media{
	grid-area: media;
	position: relative;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	/*height: clamp(260px, 40vh, 800px);*/
	height: clamp(260px, 60vh, 600px);
	overflow: hidden;
	z-index: 0;
}

/* 横幅は svw で安定化（対応ブラウザのみ） */
@supports (width: 100svw){
	.full_imgtext .full_imgtext__media{
		margin: 0 calc(50% - 50svw);
		width: 100svw;
	}
}

/* 高さは svh で安定化（対応ブラウザのみ） */
@supports (height: 1svh){
	.full_imgtext .full_imgtext__media{
		height: clamp(260px, 40svh, 800px);
	}
}
/* スマホ幅（～767px）は高さを aspect-ratio で固定 */
@media only screen and (max-width: 767px){
	.full_imgtext .full_imgtext__media {
		height: auto !important;       /* vh依存をやめる */
		/*aspect-ratio: 4 / 3;*/          /* 好みで 4/3 や 21/9 に変更可 */
		aspect-ratio: 21 / 9;
	}
}

.full_imgtext .full_imgtext__media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 画像上の装飾テキスト（任意） */
/* === 文字オーバーレイ（親基準）。画像に切られない === */
.full_imgtext .full_imgtext__deco{
	position: absolute;
	/* フルブリード幅に合わせる：左右をビューポートいっぱいへ */
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	/* 下寄せ（SPほど少し上げる） */

	/* レイヤリング */
	z-index: 1;
	pointer-events: none;

	/* タイポ */
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(22px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: .06em;
	color: #FFF;
	text-shadow: 0 2px 22px rgba(0,0,0,.65);

	/* 折返し挙動（スマホで細切れにならない設定） */
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: normal;
	text-wrap: pretty; /* 対応ブラウザで自然な改行 */
}
@supports (width: 100svw){
	.full_imgtext .full_imgtext__deco{
		left: calc(50% - 50svw);
		right: calc(50% - 50svw);
	}
}

/* デスクトップ：カード重ねの手前で文字が埋もれないように */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__deco{
		bottom: clamp(20px, 10vw, 100px);
	}
}
/* タブレット幅（568px$301C991px）のとき */
@media print, screen and  (min-width: 568px) and (max-width: 991px){
	.full_imgtext .full_imgtext__deco{
		bottom: 45%; /* 好きな値に調整 */
		font-size: clamp(20px, 4.5vw, 40px); /* 中間サイズ */
	}
}
/* スマホ：見切れ対策で少し上げ、文字サイズを微調整 */
@media only screen and (max-width: 567px){
	.full_imgtext .full_imgtext__deco{
		top:clamp(260px, 35vh, 800px);
		font-size: clamp(20px, 5.6vw, 32px);
		letter-spacing: .02em;
	}
}


/* カード：白・影・角丸。PCでは画像にオーバーラップ */
.full_imgtext .full_imgtext__card{
	grid-area: card;
	max-width: min(900px, 95%);
	/*margin-inline: auto;*/
	background: #ffffffd9;
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	padding: clamp(20px, 3.6vw, 36px) clamp(20px, 3.6vw, 40px);
}

.full_imgtext .full_imgtext__title{
	font-size: clamp(25px, 2.9vw, 33px);
	/*letter-spacing: .06em;*/
	margin: 0 0 .6em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
.full_imgtext .full_imgtext__lead{
	font-size: clamp(15px, 1.4vw, 16px);
	text-align: justify;
	margin: 0;
}

/* ====== PC配置：画像とカードを2カラムに。カードは右寄せで重ねる ====== */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__media{
		/*height: clamp(260px, 70vh, 800px);*/
		height: clamp(260px, 60vh, 600px);
	}
	.full_imgtext .full_imgtext__grid{
		grid-template-columns: 1fr min(50%, 800px);
		grid-template-areas: "media card";
		align-items: center;
	}

	/* カードをやや上に重ねる（オーバーラップ感） */
	.full_imgtext .full_imgtext__card{
		margin-right: clamp(20px, 5vw, 72px);
		margin-left: 0;
		/*transform: translateY(-15%);*//*少し上に*/
		transform: translateY(0%);/*真横*/
		background: #ffffff;
	}

	/* 反転レイアウト */
	.full_imgtext .full_imgtext__grid.is-reverse{
		grid-template-columns: min(50%, 800px) 1fr;
		grid-template-areas: "card media";
	}
	.full_imgtext .full_imgtext__grid.is-reverse .full_imgtext__card{
		margin-left: clamp(20px, 5vw, 72px);
		margin-right: 0;
	}
}

@media print{
	.full_imgtext .full_imgtext__media{
		height: 500px;
	}
	.full_imgtext .full_imgtext__deco {
		bottom: 15%;
	}
}

/*フッターバナー：簡素版*/
.footerbnr2 {
	padding: clamp(25px, 3vw, 50px) 0;
	position: relative;
	z-index: 1;
	background-color: #FFF;
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space2) 0 clamp(30px, 5vw, 50px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.greeting-haba {
	margin: 0 auto;
	max-width: 900px;
	padding: 1% 0 0 0;
}
/*冒頭一文*/
p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto 10px auto;
	width: fit-content;
	color: var(--accent-color1);
}

/* 筆記体英字見出し */
.spot-heading04 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 70px;
}
.spot-heading04 h2 {
	font-size: clamp(25px, 2.9vw, 33px);
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	/*margin-bottom: 2.5vw;*/
	margin-bottom: 10px;
}
.spot-heading04 span {
	position: absolute;
	font-family: "Corinthia", cursive;
	margin: 0 auto;
	font-size: clamp(22px, 3vw, 30px);
	text-align: center;
	top: -1.2em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	font-weight: normal;
	color: var(--accent-color3);
	opacity: 0.55;
	/*transform: rotate(-10deg);*/

	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/**/
.spot-heading04 h2.sublead-copy {
	text-align: center;
	font-size: clamp(14px, 1.8vw, 20px);
	font-weight: 500;

	/*background: linear-gradient(90deg, #D4AF37, #B08D57, #8C6239);*/ /* 金→ブロンズ */
	background-color: var(--main-color);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;

	margin: 1.5rem auto 3px auto;
	line-height: 1.4;
	width: fit-content;
}

/**/
p.grp2{
	font-size: clamp(15px, 1.4vw, 16px);
	line-height: 1.7;
	font-weight: 400;
	text-align: justify;
}


/*お問い合わせバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}



/*税務・設立・相続のことならお任せください*/
.top_sec1{
	padding: clamp(30px, 5vw, 50px) 0;
	background-color: #ffffff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.trouble-section {
	padding: 50px 1rem;
	background: #eff4f1;
	text-align: center;

	background-image: url(../img/bg_01a.png),url(../img/bg_01b.png);
	background-repeat: no-repeat,no-repeat;
	background-position: left bottom,right bottom;
	background-size: 260px,250px;
}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.trouble-section {
		padding: 30px 1rem;
		background-image: url(../img/bg_01b.png);
		background-repeat: no-repeat;
		background-position: right bottom;
		background-size: 245px;
	}
}
/**/
p.empp{
	font-size: clamp(17px, 1.6vw, 20px);
	font-family: 'Noto Serif JP', serif;
	-webkit-text-stroke: 3px #eff4f1;
	text-stroke: 3px #eff4f1;
	paint-order: stroke;
}

/**/
.trouble-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto 30px auto;
}
.trouble-bubble {
	background: #ffffffe8;
	border-radius: 15px;
	padding: 1rem 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 280px;
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(15px, 1.7vw, 18px);
	font-weight: 600;
	color: var(--main-color);

	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.trouble-bubble.show {
	animation: fadeSlideUp 0.8s ease-out forwards;
}

/* 順番にディレイをかける */
.trouble-bubble.show:nth-child(1) { animation-delay: 0.1s; }
.trouble-bubble.show:nth-child(2) { animation-delay: 0.2s; }
.trouble-bubble.show:nth-child(3) { animation-delay: 0.3s; }
.trouble-bubble.show:nth-child(4) { animation-delay: 0.4s; }
.trouble-bubble.show:nth-child(5) { animation-delay: 0.5s; }
.trouble-bubble.show:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* レスポンシブ対応 */
@media (max-width: 568px) {
	.trouble-bubble {
		max-width: 100%;
	}
}

@media print {
  /* アニメーションやトランジションを無効化 */
  .trouble-bubble {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  /* IntersectionObserverでclass付与されていなくても表示されるように */
  .trouble-bubble:not(.show) {
    opacity: 1 !important;
    transform: none !important;
  }
}






/*特徴・業務内*/
.top_sec2{
	padding: clamp(20px, 4vw, 40px) 0;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.top_sec2 {
		background-image: url(../img/bg_05.png);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}


/**/
.general-item-container5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin: 20px auto;
	max-width: 800px;
}
@media (max-width: 568px) {
	.general-item-container5 {
		grid-template-columns: repeat(3, 1fr);
	}
}
/*印刷時の為*/
@media print{
	.general-item-container5 {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 10px;
		margin: 20px auto;
		max-width: 800px;
	}
}
.general-item5 img{
	width: 65%;
	margin: 0 auto;
	background-color: #ffffffd1;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 7px;
}
.general-item5 p{
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1;
	margin: 5px auto;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 550;
	text-align: center;
}
@media (max-width: 568px) {
	.general-item5 img{
		width: 75%;
	}
}

/*対応地域について*/
.top-area_sec {
	padding: 0 0 clamp(30px, 4vw, 40px) 0;
	background-color: #f9f9f9;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_04.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
}
/* タグ */
.kakomi02 span {
	padding: 2px 7px 2px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #fff;
	border: 1px solid var(--accent-color2);

	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(11.7px, 1.3vw, 14.1px);
	font-weight: 500;
}
.mb20{
	margin-bottom: 20px;
}



/**/
.topbnr_sec{
	padding: clamp(35px, 5vw, 50px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*各ページ遷移バナー*/
/* グリッド全体 */
.link-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	/*padding: 20px;*/
	box-sizing: border-box;
}
/* 各カード */
.link-card {
	position: relative;
	overflow: hidden;
}
/* リンク全体 */
.link-card-inner {
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
}
/* 画像 */
.link-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}
/* テキスト（画像の上に左下寄せ） */
.link-text {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	color: #fff;
	z-index: 2;
	pointer-events: none; /* テキスト上でもhover有効にする */
	text-align: justify;
}
.overlay-en {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	letter-spacing: 1px;
	font-size: clamp(12px, 1.2vw, 14px);
	text-transform: uppercase;
	margin-bottom: 2px;
	font-weight: normal;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
	color: #dee6a8;
}
.overlay-title {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(22px, 1.9vw, 27px);
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 17px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.overlay-desc {
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.4;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
/* ホバー時の画像拡大 */
.link-card-inner:hover img {
	transform: scale(1.05);
}
/* レスポンシブ対応 */
@media (max-width: 1068px) {
	.link-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.link-image {
		position: relative;
		width: 100%;
		height: 280px; /* 任意の高さ。調整可能 */
		overflow: hidden;
	}

	.link-text {
		background-color: #00000057;
		margin: -16px;
		padding: 15px;
	}
	.overlay-en {
		font-size: 13px;
	}
	.overlay-title {
		font-size: 25px;
	}
	.link-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center; /* 上下中央を表示 */
		transition: transform 0.4s ease;
	}
	/* の画像だけ上寄せに */
	.link-image img.crop-top {
		object-position: top;
	}
	.link-image img.crop-bottom {
		object-position: bottom;
	}
}
@media (max-width: 600px) {
	.link-grid {
		grid-template-columns: 1fr;
	}
}

/* デフォルトでは改行なし（1068px以下） */
.overlay-title br {
	display: none;
}

/* 1068px以上では改行あり */
@media screen and (min-width: 1068px) {
	.overlay-title br {
		display: inline;
	}
}





/*======= 業務内容ページ ======*/
.services_sec1 {
	padding: var(--v-space3) 0 var(--v-space) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

h3.normalh3{
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(18px, 1.9vw, 27px);
	font-weight: 400;
	margin-bottom: 30px;
}

/*テキストcenter→justify*/
.tx-ctj2 {
	margin: 0px auto;
	text-align: center;
}
@media (max-width: 1068px) {
	.tx-ctj2 {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj2 {
		margin: 0px auto;
		text-align: center;
	}
}

/*主な業務*/
.services_sec2 {
	padding: 0 0 var(--v-space) 0;
	background-color: #f7f7f7;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
@media print, screen and (min-width: 768px) {
	.services_sec2 {
		background-image: url(../img/bg_02.png);
		background-repeat: no-repeat;
		background-position: right bottom;
		background-size: contain;
	}
}
@media only screen and (max-width: 767px) {
	.services_sec2 {
		background-image: url(../img/bg_02_sp.png),url(../img/bg_02.png);
		background-repeat: no-repeat,no-repeat;
		background-position: left top,right bottom;
		background-size: contain,contain;
	}
}


/**/
.spot-heading09{
	text-align: center;
	position: relative;
	top:-50px;
	display: block;
	z-index: 3;
	margin-bottom: -60px;
}

.spot-heading09 .heading-line {
	width: 1px;
	height: 100px;
	background-color: var(--main-color);
	margin: 0 auto;
}

.spot-heading09 p {
	position: relative;
	font-size: 35px;
	font-family: "Corinthia", cursive;
	line-height: 1.2;
	color: #9fc4a5;
	margin: 5px 0;
}

.spot-heading09 h2 {
	position: relative;
	top:-13px;
	font-size: clamp(25px, 2.4vw, 33px);
	color: #444;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 25px;
}

/*flexで*/
.service-summary-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
	box-sizing: border-box;
}

.service-summary-container article {
	width: calc((100% - 40px) / 3); /* gap分引いた上で4分割 */
	min-width: 250px; /* スマホで潰れすぎ防止 */
	padding: 15px;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 8px 18px rgba(121, 121, 121, 0.1);
	box-sizing: border-box;
	transition: transform 0.3s ease;
}
.service-summary-container article:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* タブレット対応：2カラム */
@media only screen and (max-width: 1068px) {
	.service-summary-container article {
		width: calc((100% - 20px) / 2);
	}
}

/* スマホ対応：1カラム */
@media only screen and (max-width: 668px) {
	.service-summary-container {
		justify-content: center;
	}
	.service-summary-container article {
		width: 100%;
	}
}

/* 印刷用 */
@media print {
	.service-summary-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		margin: 30px 0;
		box-sizing: border-box;
	}
	.service-summary-container article {
		width: calc((100% - 40px) / 3);
		box-sizing: border-box;
	}
}
h4.fuz-tit {
	margin: 10px auto;
	padding: 5px 10px 0 10px;
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(17px, 1.7vw, 19px);
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.service-summary-container p{
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(13px, 1.5vw, 15px);
	font-weight: 400;
	line-height: 1.4;
	text-align: justify;
	padding: 5px 10px;
}
/*取り扱い内容*/
.services_sec3 {
	padding: 0 0 var(--v-space) 0;
	background-color: #ffffff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/* タグ */
.kakomi01 span {
	padding: 2px 7px 2px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #f2ecde9c;
	/*border: 1px solid var(--accent-color2);*/
	/*color: #fff;*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(11.7px, 1.3vw, 14.1px);
	font-weight: 500;
}
.kakomi01 span.nonk1 {
	padding: 3px 6px 3px 6px;
	margin: 0px 5px 5px 0px;
	background-color: initial;
	border: 0;
	color: #333;
	border-radius: 5px;
	text-align: left;
	display: inline-block;
	font-size: 12px;
}


/*ご相談の流れ*/
.flow_sec {
	padding: var(--v-space2) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #9fc4a529, #9fc4a529 1px, #fff 1px, #fff);
}

/*4つ*/
.flow-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
@media (max-width: 968px) {
	.flow-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 668px) {
	.flow-container {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}
/*印刷用*/
@media print{
	.flow-container {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}
/**/
.flow-container-item{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;/*4行*/
	gap: 0px;
	align-items: center;
	padding: 15px;
	background-color: rgba(126, 126, 126, 0.07);
	box-sizing: border-box;
	position: relative;
}
/**/
.flow-container-item1{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;/*4行*/
	gap: 0px;
	align-items: center;
	padding: 15px;
	background-color: rgba(126, 126, 126, 0.07);
	box-sizing: border-box;
}
/**/
.f-icon01 {
	line-height: 2;
	width: 2em;
	height: 2em;
	text-align: center;
	color: #fff;
	background: var(--main-color);
	margin: 0 auto 15px;
	display: block;
	border-radius: 100vh;
	position: relative;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: clamp(16px,1.6vw,17px);
	font-weight: 600;
}
/**/
.flow-container-item::after {
	content: "";
	width: 13px;
	height: 13px;
	margin-right: 13px;
	display: inline-block;
	border-top: 2px solid #999;	/* 右矢印 */
	border-right: 2px solid #999;/*  */
	position: absolute;
	top: calc(50% - 13px);/* 矢印の位置 */
	left: -31px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width: 968px) {
	.flow-container-item::after {
		display: none;
	}
}
/*印刷用*/
@media print{
	.flow-container-item::after {
		content: "";
		width: 13px;
		height: 13px;
		margin-right: 13px;
		display: inline-block;
		border-top: 2px solid #999;	/* 右矢印 */
		border-right: 2px solid #999;/*  */
		position: absolute;
		top: calc(50% - 13px);/* 矢印の位置 */
		left: -31px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
/*番号部分の吹き出し*/
div.f-icon01::before {
	content: "";
	border: solid transparent;
	border-width: 7px;
	border-top-color: var(--main-color);
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
/**/
h3.flow-h{
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(16px,1.6vw,19px);
	font-weight: 600;
	color: var(--main-color);
	text-align: center;
	line-height: 1.3;
	margin-bottom: 15px;
}
@media (max-width: 568px) {
	h3.flow-h{
		font-size: 17px;
	}
}
.flow-p{
	font-family: "Zen Kaku Gothic New", serif;
	margin-left: 0;
	margin-bottom: 20px;
	font-size: clamp(14px,1.4vw,15px);
	line-height: 1.5;
	text-align: justify;
}
.flow-container-item1 img {
	outline: 1px solid #fff;
	outline-offset: -0.4rem;
}
.flow-container-item img {
	outline: 1px solid #fff;
	outline-offset: -0.4rem;
}








/*======= よくある質問ページ ======*/
.faq_sec {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
div.faq-in{
	padding: 0;
}
/*枠付きデザイン*/
.onecours{
	background-color: rgba(247, 247, 247, 0.85);
	padding: 15px 25px 15px 20px;
	margin: 0 0 17px 0;
	font-size: clamp(15px, 1.5vw, 16px);
	/*border: 1px #f0efdd solid;*/
}
.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 10px;
}
.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 100%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;	/* lavelを上揃えに */
	padding: 0 1px 3px 1px;
	font-family: "Zen Kaku Gothic New", serif;
}
.faq-label.q {
	background-color: var(--main-color);
}
.faq-label.a {
	background-color: var(--accent-color1);
}
.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.5;
	text-align: justify;
}
.faq-question{
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border-bottom: 1px dotted #7b7b7b;
	margin: 10px auto;
}







/*======= 事務所案内ページ ======*/
/*概要*/
.info_sec1{
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	/*background-image: url(../img/bg_02.png);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;*/
}
/*
@media only screen and (max-width: 568px) {
	.info_sec1{
		background-position: 90% 100%;
	}
}
*/
/* 概要部分のテーブル */
.info_haba{
	max-width: 900px;
	margin: 70px auto 0 auto;
}
.info_container {
	display: grid;
	grid-template-columns: 1fr;
	/*gap: 15px;*/
}
.info_container .item {
	border-bottom: 1px solid #adccb2;
	/*box-shadow: 0 2px 11px rgba(142, 142, 142, 0.1);*/
	background-color: #ffffffd6;
	padding: 15px 5px 15px 5px;
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: stretch;
	gap: 20px;
	font-family: "Zen Kaku Gothic New", serif;
}
.info_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: var(--main-color);
	white-space: nowrap;
	/*background-color: #eae6e17d;*/
	padding: 5px;
	font-size: 17px;
}
.info_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px;
	font-size: 17px;
}
/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_container {
		/*gap: 10px;*/
	}
	.info_container .item {
		grid-template-columns: 1fr;
		grid-template-columns: 5.5em 1fr;
		gap:0px;
		padding: 15px 1px 15px 1px;
	}
	.info_container .label {
		line-height: 1.6;
		font-size: 15px;
	}
	.info_container .content {
		display: block;
		font-size: 15px;
	}
}


/*アクセス*/
.access-sec{
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*カードレイアウト*/
.access_sec1_subcontainer {
	margin: 20px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}
.access_sec1_card {
	padding: 20px;
	box-shadow: 0 2px 11px rgba(142, 142, 142, 0.1);
	border-radius: 5px;
}

/**/
.access_sec1_card h3 {
	font-family: "Zen Kaku Gothic New", serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 7px;
	color: var(--main-color);
	border-bottom: solid 2px #d9d9d9;
	padding-bottom: 0.2em;
	position: relative;
}
.access_sec1_card h3::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px var(--accent-color2);
	padding-bottom: 0.2em;
	width: 25%;
}

.access_sec1_card p {
	margin-top: 5px;
	margin-bottom: 10px;
}




