@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;
}
.sec_pankuzu::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	/*height: clamp(1px,0.5vw,2px);*/
	height: 1px;
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}
/*画像の枠*/
.iminli {
	outline: 1px solid #ccc;
	outline-offset: -0.5rem;
}

/* お問い合わせ */
.contact_sec {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.conbg-01 {
	background-image: url(../img/bg_02.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.contact_sec h2{
	font-size: clamp(20px,2.5vw,25px);
	/*letter-spacing: 0.28em;*/
	text-align: center;
	font-family: "WindSong", serif;
	margin: 0;
	font-size: clamp(30px,3vw,50px);
	white-space: nowrap;
	/*text-transform: lowercase;*/
	font-weight: normal;
	color: #886a45;
}
.contact_sec p {
	font-size: clamp(14px,1.5vw,16px);
	line-height: 1.6;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
	text-align: center;
}
.contact_bg{
	padding: 20px 10% 30px 10%;
}
@media only screen and (max-width: 1067px) {
	.contact_bg{
		padding: 20px 20px 30px 20px;
	}
}
@media only screen and (max-width: 767px) {
	.contact_sec p {
		text-align: justify;
		font-feature-settings: 'palt' 1;
		-webkit-font-smoothing: antialiased;
	}
	.contact_bg{
		background-color: rgba(255, 255, 255, 0.55);
	}
}
/*TELバナー*/
.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: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}


hr.on2 {
	margin-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid #bcbcbc;
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space2) 0;
	background-color: #FFF;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.colorpop{
	color: #8f8169;
}
/**/
.each-page__heading01 {
	position: relative; /* 親要素を相対位置に設定 */
	margin-top: 50px;
}

.each-page__heading01 h2 {
	/*width: fit-content;*/
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 'Noto Serif JP', "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: clamp(26px, 2.9vw, 35px);
	text-align: center;
	line-height: 1.2;
	font-weight: 400;
	position: relative;
	z-index: 1;
	opacity: 0.9;
	margin-bottom: 35px;
}
.each-page__heading01 h2::after {
	content: "";
	width: 3em;
	height: .2em;
	border-radius: .1em;
	background: linear-gradient(to right, #128d82, #A9D3D6);
	/*background-color: var(--sub-color1);*/
	position: absolute;
	bottom: -15px;
	left: calc(50% - 3em / 2);
}
.each-page__heading01 h2.disno::after{
	display: none;/*下線無くしたい場合*/
}
.each-page__heading01 span {
	position: absolute;
	font-family: "WindSong", serif;
	margin: 0 auto;
	font-size: clamp(22px,3vw,40px);
	text-align: center;
	top: -1.1em;

	transform-origin: center top;
	pointer-events: none;
	white-space: nowrap;
	font-weight: normal;
	color: var(--accent-color3);
	opacity: 0.4;
	/*transform: rotate(-10deg);*/

	left: 50%;/*中央配置*/
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*英文字が長すぎるとき*/
.each-page__heading01 span.toolong {
	font-size: clamp(33px,8vw,55px);
}

.line{
	width: 1px;
	height: auto;
	padding-top: 3%;
	background-color: #999;
	margin: 1.5% auto;
}
@media only screen and (max-width: 767px) {
	.line {
		width: 1px;
		height: auto;
		padding-top: 9%;
		background-color: #999;
		margin: 1.5% auto;
	}
}
/**/
p.grp{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.9;
	font-weight: 400;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
	text-align: justify;
	margin-bottom: 7px;
}



/*あなたの保険は、時代・ライフプランに合っていますか？*/
.about_concept {
	position: relative;
	height: 500px;
	overflow: hidden;
	background-color: #f7f7f7;
}

/* 背景画像 */
.bg_img {
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: url('../img/top_01.jpg') no-repeat center/cover;
}
/* テキスト */
.text_wrap {
	position: relative;
	width: 35%;
	margin-left: 5%;
	top: 60%;
	transform: translateY(-50%) translateX(-40px);
	opacity: 0;
	transition: all 0.8s ease;
	/*background-color: #44232978;
	padding: 50px;*/
	box-sizing: border-box;
}
/* 発火後 */
.about_concept.is-active .text_wrap {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}
/**/
.text_wrap h2 {
	font-size: clamp(24px, 2.3vw, 29px);
	margin-bottom: 20px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
	-webkit-text-stroke: 3px #f7f7f7;
	text-stroke: 3px #f7f7f7;
	paint-order: stroke;
}
.text_wrap p {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
	-webkit-text-stroke: 5px #f7f7f7;
	text-stroke: 5px #f7f7f7;
	paint-order: stroke;
}
.text_wrap .btntp {
	display: inline-block;
	padding: 10px 20px 11px 20px;
	background: var(--accent-color2);
	color: #fff;
	text-decoration: none;
}

/* ▼ タブレット */
@media (max-width: 1024px){
	.about_concept {
		height: auto;
	}
	.bg_img {
		position: relative;
		width: 100%;
		height: 250px;
	}
	.text_wrap {
		width: 90%;
		margin: 30px auto;
		top: auto;
		transform: translateX(-20px);
	}
	.about_concept.is-active .text_wrap {
		transform: translateX(0);
	}
}
/* ▼ スマホ */
@media (max-width: 768px){
	.bg_img {
		height: 200px;
	}
	.text_wrap {
		opacity: 0;
		transform: translateY(20px);
	}
	.about_concept.is-active .text_wrap {
		opacity: 1;
		transform: translateY(0);
	}
}



/*地域に寄り添う、安心を支えるサービスとネットワーク。*/
.trust_sec {
	position: relative;
	height: 500px;
	overflow: hidden;
	background-color: var(--accent-color1);
}
/* 背景画像（左） */
.trust_sec .bg_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: url('../img/top_02.jpg') no-repeat center/cover;
}
/* テキスト（右） */
.trust_sec .text_wrap2 {
	position: absolute;
	width: 35%;
	right: 5%;
	top: 50%;
	transform: translateY(-50%) translateX(40px);
	opacity: 0;

	transition: all 0.8s ease;
	box-sizing: border-box;
}
/* 発火後 */
.trust_sec.is-active .text_wrap2 {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}
/* ▼ タブレット */
@media (max-width: 1024px){
	.trust_sec {
		height: auto;
	}
	.trust_sec .bg_img {
		position: relative;
		width: 100%;
		height: 250px;
	}
	.trust_sec .text_wrap2 {
		position: relative;
		width: 90%;
		margin: 30px auto;

		top: auto;
		right: auto;

		transform: translateX(20px);
	}
	.trust_sec.is-active .text_wrap2 {
		transform: translateX(0);
	}
}

/* ▼ スマホ */
@media (max-width: 768px){
	.trust_sec .bg_img {
		height: 200px;
	}
	.trust_sec .text_wrap2 {
		opacity: 0;
		transform: translateY(20px);
	}
	.trust_sec.is-active .text_wrap2 {
		opacity: 1;
		transform: translateY(0);
	}
}
/**/
.trust_sec h2 {
	font-size: clamp(24px, 2.3vw, 29px);
	margin-bottom: 20px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
}
.trust_sec p {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
}
.text_wrap2 .btntp2 {
	display: inline-block;
	padding: 10px 20px 11px 20px;
	background: #f7f7f7;
	text-decoration: none;
}

/**/
.sec_space {
	margin-top: 100px;
}


/*印刷*/
@media print {
	.text_wrap,
	.trust_sec .text_wrap2 {
		opacity: 1 !important;
		transform: none !important;
	}
	.bg_img {
		display: block !important;
	}
}
@media print {
  /* about_concept */
  .about_concept {
    height: 500px !important;
  }
  .about_concept .bg_img {
    position: absolute !important;
    width: 80% !important;
    height: 100% !important;
  }
  .about_concept .text_wrap {
    position: relative !important;
    width: 35% !important;
    margin-left: 5% !important;
    top: 60% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
  }

  /* trust_sec */
  .trust_sec {
    height: 500px !important;
  }
  .trust_sec .bg_img {
    position: absolute !important;
    width: 80% !important;
    height: 100% !important;
  }
  .trust_sec .text_wrap2 {
    position: absolute !important;
    width: 35% !important;
    right: 5% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
  }
}


/*選ばれ続けている理由*/
.top-strength {
	padding: var(--v-space) 0 clamp(20px, 3vw, 40px) 0;
	background-color: #FFF;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 強みカード（4列ver） */
.strength_cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 50px 0;
}
@media (max-width: 1068px){
	.strength_cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px){
	.strength_cards {
		grid-template-columns: 1fr;
	}
}
/*印刷*/
@media print{
	.strength_cards {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		margin: 50px 0;
	}
}
/* カード本体 */
.strength_card {
	background: #fff;
	padding: 40px 26px;
	min-height: 230px;

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;

	position: relative;
	overflow: hidden;

	border: 1px solid rgba(0,0,0,0.06);
	transition: all 0.35s ease;
}

/* 上ライン（高級感） */
.strength_card .top_line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #1a2a44, #c5a46d);
	z-index: 3;
}

/* 背景 */
.strength_card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1);
	transition: opacity 0.4s ease, transform 0.6s ease;
	z-index: 0;
}
/* 背景画像 */
.strength_card.bg11::before {
	background-image: url(../img/strebg11.jpg);
}
.strength_card.bg12::before {
	background-image: url(../img/strebg12.jpg);
}
.strength_card.bg13::before {
	background-image: url(../img/strebg13.jpg);
}
.strength_card.bg14::before {
	background-image: url(../img/strebg14.jpg);
}
/* hover背景 */
.strength_card:hover::before {
	opacity: 0.25;
	transform: scale(1.05);
}

/* 枠 */
.strength_card::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	bottom: 14px;
	border: 1px solid rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	z-index: 1;
}
.strength_card:hover::after {
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	border-color: #c5a46d;
}
/* ホバー */
.strength_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/**/
.strength_en {
	font-size: 12px;
	letter-spacing: 0.18em;
	color: #c5a46d;
	margin-bottom: 10px;
}
/* アイコン */
.strength_icon {
	width: 70px;
	margin-bottom: 18px;
}
.strength_icon img {
	width: 100%;
}

/**/
.strength_card h3 {
	font-size: clamp(14px, 1vw, 19px);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 14px;
	color: #1a2a44;
}
@media (max-width: 1068px){
	.strength_card h3 {
		font-size: clamp(16px, 1.4vw, 18px);
	}
}
@media (max-width: 568px){
	.strength_card h3 {
		font-size: 18px;
	}
}
/**/
.strength_card p {
	font-size: 14px;
	-webkit-text-stroke: 3px rgb(255, 255, 255);
	paint-order: stroke;
	line-height: 1.8;
	color: #555;
	text-align: justify;
	width: 95%;
}
/* コンテンツ前面 */
.strength_card > * {
	position: relative;
	z-index: 2;
}



/*TOP法人・個人*/
/* ガイドセクション */
.guide {
	padding: clamp(20px, 3vw, 40px) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
/* 横並び */
.guide__layout {
	display: flex;
	gap: 40px;
	align-items: stretch;
}
/* パネル */
.guide__panel {
	flex: 1;
	display: flex;
	flex-direction: column;

	padding: 60px 60px 40px 60px;
	position: relative;
	overflow: hidden;

	border-radius: 12px;
	box-shadow: 0 25px 50px rgba(0,0,0,0.08);

	opacity: 0;
	transform: translateY(50px);
	animation: guideFadeUp 0.8s ease forwards;
}

/* 法人 */
.guide__panel--biz {
	background: linear-gradient(135deg, #1f2a37, #2f3e52);
	color: #fff;
	animation-delay: 0.2s;
}
/* 個人 */
.guide__panel--life {
	background: #fff;
	transform: translateY(90px);
	animation-delay: 0.5s;
}
/* 見出し */
.guide__heading {
	font-size: 24px;
	margin-bottom: 25px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.05em;
}
/* 見出し装飾 */
.guide__panel--biz .guide__heading {
	border-left: 4px solid #fff;
	padding-left: 12px;
}

.guide__panel--life .guide__heading {
	border-left: 4px solid #333;
	padding-left: 12px;
}

/* テキスト */
.guide__text {
	line-height: 1.9;
	margin-bottom: 20px;
}

/* 背景タイポ */
.guide__panel::after {
	position: absolute;
	top: -10px;
	left: 50px;
	font-size: clamp(40px, 5vw, 80px);
	z-index: 0;
	pointer-events: none;
}

.guide__panel--biz::after {
	content: "CORPORATE";
	color: rgba(255,255,255,0.05);
}

.guide__panel--life::after {
	content: "PERSONAL";
	color: rgba(0,0,0,0.05);
}

/* 前面 */
.guide__panel * {
	position: relative;
	z-index: 2;
}

/* アニメ */
@keyframes guideFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* スマホ */
@media (max-width: 768px) {
	.guide__layout {
		flex-direction: column;
	}
	.guide__panel {
		padding: 50px 30px 20px 30px;
	}
	.guide__panel--life {
		transform: translateY(0);
	}
	.guide__panel::after {
		top: 10px;
		left: 25px;
	}
}



/*アフターサービスへの考え方*/
.after_sec {
	padding: clamp(55px, 7vw, 90px) 0;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.gr-sub2 {
	background-image: url(../img/bg_grsub2.jpg);
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}
@media (max-width: 568px) {
	.gr-sub2 {
		background-image: url(../img/bg_grsub2.jpg);
		background-size: cover;
		background-position: 70% 100%;
		background-repeat: no-repeat;
	}
}
/*↓共通*/
p.subp{
	font-size: clamp(14px, 1.5vw, 15px);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
}

@media only screen and (max-width: 768px) {
	.bgfit2 {
		background-color: rgba(0, 0, 0, 0.35);
		width: fit-content;
		padding: 30px 20px;
	}
	p.subp{
		color: #fff;
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
	}
	.kiritxcol .heading-decoration + p {
		margin-top: 1.2em;
		margin-bottom: 1em;
		font-family: "Montserrat", sans-serif;
		font-size: clamp(13px, 1.4vw, 15px);
		line-height: 1.4;
		font-weight: 400;
		color: #eae0dc;
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
	}
	.kiritxcol .heading-decoration {
		font-size: clamp(25px, 3vw, 30px);
		min-height: 0vw;
		font-weight: 400;
		color: #fff;
		position: relative;
		line-height: 1.5;
		font-family: 'Noto Serif JP', serif;
		text-shadow: 0 0 10px rgba(0, 0, 0, 0.99);
	}
}


/*Blog*/
.blog_sec1{
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}








/*======= ご相談メニューページ ======*/
.service_sec1 {
	padding: var(--v-space3) 0 50px 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/* spot: フルブリード画像 × テキストカード */
.full_imgtext {
	position: relative;
	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, 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(23px, 2vw, 29px);
	padding: 3px 0;
	line-height: 1.4;
	margin: 0 0 15px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	border-bottom: 1px dotted #999;
	color: var(--main-color);
}
.full_imgtext .full_imgtext__lead{
	font-size: clamp(15px, 1.5vw, 16px);
	line-height: 1.5;
	text-align: justify;
	margin: 0;
	color: #555;
}
/*追加装飾*/
.full_imgtext h3 {
	font-size: clamp(17px, 1.9vw, 20px);
	line-height: 1.4;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--main-color);
}
.full_imgtext .full_imgtext_p{
	font-size: clamp(16px, 1.7vw, 17px);
	line-height: 1.4;
	text-align: right;
	margin: 7px 0 0 0;
	color: #555;
}

/* ====== PC配置：画像とカードを2カラムに。カードは右寄せで重ねる ====== */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__media{
		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: #ffffffe8;
	}
	/* 反転レイアウト */
	.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%;
	}
}

/*法人のお客様へ・個人のお客様へ*/
.service_sec2 {
	padding: var(--v-space2) 0 var(--v-space) 0;
	background: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: url(../img/bg_04.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.service_twocol {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.service_card {
	background: #ffffffd4;
	padding: 40px;
	border-left: 4px solid var(--main-color);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service_card h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(20px, 2vw, 26px);
	margin-bottom: 15px;
	color: #6c3f47;
}
@media (max-width: 768px) {
	.service_twocol {
		grid-template-columns: 1fr;
	}
	.service_card {
		padding: 20px 20px 30px 23px;
		border-left:none;
	}
	.service_card h3 {
		font-family: 'Noto Serif JP', serif;
		font-size: clamp(20px, 2vw, 26px);
		margin-bottom: 15px;
		color: #6c3f47;
		border-left: 4px solid var(--main-color);
		padding-left: 12px;
		background-color: #eee9;
	}
	.service_card p{
		text-align: justify;
	}
}


/*法人のお客様*/
.service_sec3 {
	padding: var(--v-space2) 0;
	background-color: #f9f7f2;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*3,4共通*/
.column2check-grid{
	display:grid;
	grid-template-columns:420px 1fr;
	gap:60px;
	align-items:center;
	margin-bottom:40px;
}
/* 画像 */
.column2check-img{
	position:relative;
}
.column2check-img img{
	width:100%;
}
/* バッジ */
.column2check-badge{
	position:absolute;
	bottom:-20px;
	right:-20px;
	background:var(--main-color);
	color:#fff;
	padding:20px;
	border-radius:10px;
	text-align:center;
}
.column2check-badge span{
	display:block;
	font-weight:700;
}
.column2check-badge small{
	font-size:12px;
	letter-spacing:1px;
}
/**/
@media(max-width:1067px){
	.column2check-grid{
		display:grid;
		grid-template-columns:350px 1fr;
		gap:60px;
		align-items:center;
	}
}
@media(max-width:768px){
	.column2check-grid{
		grid-template-columns:1fr;
		gap:40px;
	}
	.column2check-badge{
		right:10px;
		bottom:-10px;
	}
}
/*印刷対応*/
@media print {
	.column2check-grid{
		display:grid;
		grid-template-columns:420px 1fr;
		gap:60px;
		align-items:center;
		margin-bottom:40px;
	}
}


/* 見出し */
.column2check-title{
	font-size:clamp(20px,3vw,35px);
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 20px;
	line-height: 1.4;
}
@media(max-width:768px){
	.column2check-title{
		font-size:24px;
		text-align: center;
	}
}
/*印刷対応*/
@media print {
	.column2check-title{
		font-size:clamp(20px,3vw,35px);
		font-family: 'Noto Serif JP', serif;
		margin-bottom: 20px;
		line-height: 1.4;
	}
}

.column2check-title span{
	color:#9e7b73;
}
/* リスト */
.column2check-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2列 */
	gap:15px;
	padding:0;
	list-style:none;
}
@media(max-width:967px){
	.column2check-list {
		grid-template-columns: 1fr; /* 1列 */
		gap:14px; /* 隙間も調整 */
	}
}
/*印刷対応*/
@media print {
	.column2check-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr); /* 2列 */
		gap:15px;
		padding:0;
		list-style:none;
	}
}
.column2check-list li{
	position:relative;
	border-radius:15px;
	padding:17px 25px 17px 60px;
	transition:all .3s ease;
}
/*リスト背景色*/
.libgc-1 li{
	background:#fff;
}
/* 丸チェック */
.column2check-list li::before{
	content: "\2713"; /* チェック */
	position:absolute;
	left:15px;
	top:50%;
	transform:translateY(-50%);
	width:37px;
	height:37px;
	border-radius:50%;
	background:#e5e5e5;
	color:var(--main-color);
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:bold;
	font-size:20px;
	transition:all .3s ease;
}
@media only screen and (max-width: 767px){
	.column2check-list{
		gap:14px;
	}
	.column2check-list li{
		padding:16px 18px 16px 52px;
		border-radius:14px;
	}
	/* 丸チェック */
	.column2check-list li::before{
		left:14px;
		width:28px;
		height:28px;
		font-size:14px;
	}
}
/* ホバー */
.column2check-list li:hover{
	transform:translateY(-3px);
	box-shadow:0 8px 18px rgba(0,0,0,0.08);
}
/* チェック色変化 */
.column2check-list li:hover::before{
	background:var(--main-color);
	color:#fff;
}


/*法人向けサポート*/
div.point-p {
	position: relative;
	padding: 1.7rem;
	border-radius: 10px;
	margin-top: 60px;
	outline: 3px solid var(--main-color);
	outline-offset: -3px;
	box-sizing: border-box;
	background: #ece2e2;

	background-image: url(../img/bg_01b.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: auto 100%;                 /* 高さ100%で幅は自動調整 */
}
@media only screen and (max-width: 867px){
	div.point-p {
		background-image: none;
	}
}
/* 印刷 */
@media print{
	div.point-p {
		position: relative;
		padding: 1.7rem;
		border-radius: 10px;
		margin-top: 60px;
		outline: 3px solid var(--main-color);
		outline-offset: -3px;
		box-sizing: border-box;
		background: #ece2e2;

		background-image: url(../img/bg_01b.png);
		background-repeat: no-repeat;
		background-position: right;
		background-size: auto 100%;                 /* 高さ100%で幅は自動調整 */
	}
}

/* 見出しのデザイン */
.point-p-title {
	position: absolute;
	top: -28px;
	left: -10px;
	background: var(--accent-color1);
	color: #fff;
	padding: 6px 18px;
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 600;
	transform: rotate(-6deg);
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
	z-index: 2;
}
@media only screen and (max-width: 567px){
	.point-p-title {
		padding: 5px 13px;
	}
}



/*個人のお客様*/
.service_sec4 {
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*リスト背景色*/
.libgc-2 li{
	background:#f9f7f2;
}
/*個人向けサポート*/
div.point-p2 {
	position: relative;
	padding: 1.7rem;
	border-radius: 10px;
	margin-top: 60px;
	outline: 3px solid var(--main-color);
	outline-offset: -3px;
	box-sizing: border-box;
	background: #ece2e2;

	background-image: url(../img/bg_01a.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: auto 100%;                 /* 高さ100%で幅は自動調整 */
}
@media only screen and (max-width: 867px){
	div.point-p2 {
		background-image: none;
	}
}
/* 印刷 */
@media print{
	div.point-p2 {
		position: relative;
		padding: 1.7rem;
		border-radius: 10px;
		margin-top: 60px;
		outline: 3px solid var(--main-color);
		outline-offset: -3px;
		box-sizing: border-box;
		background: #ece2e2;

		background-image: url(../img/bg_01a.png);
		background-repeat: no-repeat;
		background-position: right;
		background-size: auto 100%;                 /* 高さ100%で幅は自動調整 */
	}
}


/*体制・資格/料金について*/
.service_sec5 {
	padding: var(--v-space2) 0;
	background-color: #f9f7f2;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* 横並び */
.servinfo {
	display: flex;
	gap: 30px;
	align-items: stretch; /* ← 高さ揃え追加 */
}
/* 各カード */
.service_info {
	flex: 1;
	background: #fff;
	padding: 35px;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	position: relative;
	display: flex;              /* ← 追加 */
	flex-direction: column;     /* ← 追加 */
}
.service_info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 14px 14px 0 0;
	background: linear-gradient(90deg, var(--main-color), var(--sub-color1));
}

/* スマホ */
@media screen and (max-width: 768px){
	.servinfo {
		flex-direction: column; /* ← 縦並び */
		gap: 20px;
	}
	.service_info {
		padding: 25px;
	}
}
/**/
.service_info h2 {
	font-size: 22px;
	color: var(--main-color);
	margin: 0 0 15px 0;
	border-bottom: 1px dashed #ccc;
}
.service_info p {
	margin-bottom: 20px;
	line-height: 1.8;
}


/*保険選びの考え方*/
.service_sec6 {
	padding: clamp(55px, 7vw, 90px) 0;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.gr-sub1 {
	background-image: url(../img/bg_grsub1.jpg);
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}
@media (max-width: 568px) {
	.gr-sub1 {
		background-image: url(../img/bg_grsub1.jpg);
		background-size: cover;
		background-position: 70% 100%;
		background-repeat: no-repeat;
	}
}


/* よくある質問 */
.faq_sec {
	padding: var(--v-space2) 0;
	background-color: #fff;
	position: relative;/* sectionの位置を相対的にする*/
	z-index: 1;/* 背景画像より上に表示 */
}
.faq_item {
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
/* 質問 */
.faq_q {
	display: flex;
	align-items: center;
	gap: 0.4em;
	font-weight: bold;
	font-size: clamp(16px, 1.7vw, 18px);
	color: var(--main-color); /* ← open状態なので最初から色つける */
}
/* マーカー */
.faq_q::before {
	content: "\25B6";
	flex-shrink: 0;
	font-size: 1em;
	line-height: 1;
}
/* 回答 */
.faq_item p {
	margin-top: 10px;
	line-height: 1.8;
	color: #555;
	padding-left: 1.3em;
}





/*======= 平田保険事務所についてページ ======*/
.about_sec1 {
	padding: var(--v-space3) 0 30px 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}


/**/
.strength-wrap {
	display: flex;
	background-color:#fff;
	position: relative;
}
.strength-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
	z-index: 3;
}
/* 共通 */
.strength-box {
	flex: 1;
	position: relative;
	overflow: hidden;
}
.strength-title {
	font-size: clamp(22px, 2vw, 26px);
	margin-bottom: 25px;
}
.strength-text {
	line-height: 1.9;
	margin-bottom: 20px;
}
/* 企業（左） */
.strength-corp {
	color: #fff;
	flex: 1.2;
}
.strength-inner1 {
	padding: 80px 120px 80px 80px;
	position: relative;
	z-index: 2;
}
/* 背景を別レイヤーで作る */
.strength-corp::before {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
	z-index: 1;
	background: linear-gradient(135deg, #1f2a37 0%, #2f3e52 100%);
}
/* タイトル */
.strength-corp .strength-title {
	border-left: 4px solid #fff;
	padding-left: 10px;
	font-family: 'Noto Serif JP', serif;
}
/* 背景文字 */
.strength-corp::after {
	content: "CORPORATE";
	position: absolute;
	font-size: clamp(45px, 7vw, 120px);
	color: rgba(255,255,255,0.05);
	top: 20px;
	left: 30px;
	z-index: 1;
}
/* 強調 */
.strength-highlight {
	margin-top: 40px;
	font-size: 18px;
	line-height: 1.8;
}
.strength-highlight span {
	display: block;
	font-size: clamp(20px, 2vw, 24px);
	font-weight: bold;
	letter-spacing: 0.1em;
}

/* 個人（右） */
.strength-personal {
	background: #fff;
	flex: 1;
}
/* 背景文字 */
.strength-personal::after {
	content: "PERSONAL";
	position: absolute;
	font-size: clamp(45px, 7vw, 120px);
	color: rgba(76, 71, 71, 0.05);
	top: 20px;
	left: 30px;
	z-index: 1;
}
.strength-inner2 {
	padding: 80px 80px 80px 20px;
	position: relative;
	z-index: 2;
}
.strength-personal .strength-title {
	border-left: 4px solid #333;
	padding-left: 10px;
	font-family: 'Noto Serif JP', serif;
}
/**/
@media screen and (max-width: 768px) {
	.strength-wrap {
		flex-direction: column;
	}
	.strength-inner1,.strength-inner2 {
		padding: 50px 40px;
	}
	/* スマホは斜め解除 */
	.strength-corp::before {
		clip-path: none;
	}
}


/* 企業理念 */
.credo_sec {
	padding: var(--v-space3) 0;
	background: linear-gradient(to bottom, #fff, #ececec);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.credo_wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
/* カード並び */
.credo_cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 60px 0;
}

/* カード本体 */
.credo_card {
	width: 100%;
	min-height: 340px;
	background: #fff;
	padding: 45px 30px;
	border: 1px solid rgba(0,0,0,0.08);
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;

	position: relative;
	overflow: hidden;

	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 背景レイヤー（最背面） */
.credo_card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1);
	transition: opacity 0.4s ease, transform 0.6s ease;
	z-index: 0;
}
/* 背景画像 */
.credo_card.bg1::before {
	background-image: url(../img/credobg01.jpg);
}
.credo_card.bg2::before {
	background-image: url(../img/credobg02.jpg);
}
.credo_card.bg3::before {
	background-image: url(../img/credobg03.jpg);
}

/* hoverでふわっと表示＋ズーム */
.credo_card:hover::before {
	opacity: 0.25;
	transform: scale(1.05);
}
.credo_card:hover p{
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
}
/* 枠アニメ（中間レイヤー） */
.credo_card::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	bottom: 14px;
	border: 1px solid rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	z-index: 1;
}
/* hoverで広がる */
.credo_card:hover::after {
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	border-color: var(--main-color);
}

/* 上ライン（最前面） */
.credo_card::marker { display:none; } /* 念のため */

.credo_card .top_line {
	position: absolute;
	top: 0;
	left: 2px;
	right: 2px;
	height: 4px;
	background: linear-gradient(90deg, var(--main-color), var(--sub-color1));
	z-index: 3;
}

/* コンテンツ */
.credo_card > * {
	position: relative;
	z-index: 2;
}
/* 英語 */
.credo_en {
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--accent-color1);
	margin-bottom: 10px;
	text-align: center;
}
/* アイコン */
.credo_icon {
	width: 85px;
	margin-bottom: 18px;
}
.credo_icon img {
	width: 100%;
	height: auto;
	display: block;
}
/* テキスト */
.credo_card p {
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.8;
	color: #555;
	text-align: justify;
	width: 95%;
}

/* 動き */
/* 真ん中だけズラす */
.credo_card:nth-child(2) {
	transform: translateY(12px);
}
/* hover */
.credo_card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
/* ズラし打ち消し */
.credo_card:nth-child(2):hover {
	transform: translateY(-8px);
}

/* レスポンシブ */
@media (max-width: 1023px){
	.credo_cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin: 60px 0;
	}
	.credo_card:nth-child(2) {
		transform: none;
	}
}
@media (max-width: 568px){
	.credo_cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}



/* プロフィール全体 */
.profile-sec {
	padding: var(--v-space) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.profile-flex {
	display: flex;
	gap: 60px;
	align-items: center;
}
/* 画像エリア */
.profile-visual {
	position: relative;
	flex: 0 0 57%;
}
.profile-visual img {
	width: 100%;
	height: auto;
	display: block;
}
/* 斜め英字 */
.profile-sign {
	position: absolute;
	/*bottom: 20px;*/
	top:-40px;
	left: -30px;
	font-size: 72px;
	color: #a0828287;
	transform: rotate(-6.5deg);
	pointer-events: none;
	white-space: nowrap;
	font-family: "WindSong", serif;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.99);
}

/* テキスト */
.profile-content {
	flex: 1;
}
.profile-name {
	border-bottom: 1px solid #d6d0cf;
}
.profile-name h2 {
	font-size: 32px;
	color: var(--main-color);
	font-weight: 500;
	margin-bottom: 5px;
	font-family: 'Noto Serif JP', serif;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.profile-name span {
	font-size: 14px;
	color: var(--accent-color2);
	letter-spacing: 0.1em;
	margin-right: 3px;
	font-weight: 400;
}
.profile-lead {
	margin: 20px 0 30px;
	line-height: 1.9;
}


/* レスポンシブ */
@media screen and (max-width: 1168px) {
	.profile-flex {
		gap: 30px;
	}
}
@media screen and (max-width: 968px) {
	.profile-flex {
		flex-direction: column;
	}
	.profile-visual {
		width: 100%;
	}
	.profile-name h2 {
		font-size: 27px;
	}
	.profile-sign {
		font-size: 40px;
		left: 0;
	}
}

/* 活動 */
.profile-activity h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

/* 経歴（テーブル風） */
.profile-career {
	margin-top: 60px;
	border-top: 1px solid #ddd;
}
.career-item {
	display: flex;
	border-bottom: 1px solid #ddd;
	align-items: center;
}
.career-head {
	flex: 0 0 120px;
	font-weight: bold;
	padding: 20px 0;
	text-align: center;
}
.career-body {
	flex: 1;
	padding: 20px 0;
	line-height: 1.9;
}
/* スマホ */
@media screen and (max-width: 768px) {
	.career-item {
		flex-direction: column;
	}
	.career-head {
		padding-bottom: 5px;
		flex: 0 0 40px;
	}
	.career-body {
		padding-top: 0;
	}
}

/*事務所概要*/
.about_infosec{
	padding: var(--v-space2) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* 全体コンテナ */
.company_haba {
	/*max-width: 1000px;*/
	margin: 50px auto 0 auto;
	background-color: #ffffffde;
	padding: 30px;
	/*border: 1px #d8e6e4 solid;*/
	box-shadow: 0 4px 10px rgba(132, 132, 132, 0.1);
}
@media screen and (max-width: 568px) {
	.company_haba {
		margin: 40px auto 0 auto;
		padding: 15px 15px;
	}
}
/* テーブルデザイン */
.company_container {
	display: grid;
	grid-template-columns: 1fr;
	font-family: 'Noto Serif JP', serif;
}
.company_container .item {
	border-bottom: 1px solid #d6d0cf;
	/*background-color: #ffffff85;*/
	padding: 8px 5px;
	display: grid;
	grid-template-columns: 8.5em 1fr;
	align-items: stretch;
	gap: 20px;
}
.company_container .label {
	display: flex;
	align-items: center;
	font-weight: 800;
	color: #353535;
	white-space: nowrap;
	padding: 10px 13px 10px 37px;
	font-size: clamp(15px, 1.6vw, 16px);
	background: url(../img/icon01.png) no-repeat 2px center;
	background-size: 27px;
}
.company_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px;
	font-size: clamp(14px, 1.6vw, 16px);
}
@media screen and (max-width: 568px) {
	.company_container .item {
		grid-template-columns: 1fr;
		padding: 8px 1px;
		gap: 0;
	}
	.company_container .label {
		line-height: 1.6;
		background-color: #714f5517;
	}
	.company_container .content {
		display: block;
		font-size: 15px;
		line-height: 1.4;
		padding: 10px 5px 5px 5px;
		text-align: justify;
	}
}
/*横並び*/
.info_flex{
	display:grid;
	grid-template-columns: 1fr 500px;
	gap:20px;
	align-items:stretch; /* ← 明示すると安心 */
	min-height: 400px; /* 任意 */
}
.info_image{
	height: 100%;
	overflow: hidden;
}
/* 画像 */
.info_image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* スマホ */
@media screen and (max-width:1068px){
	.info_flex{
		grid-template-columns:1fr;
	}
}


/*アクセス*/
.access-sec{
	padding: clamp(20px, 3vw, 40px) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.access-info {
	display: flex;
	gap: 25px;
	background-color: #714f551a;
	padding: 12px 16px;
	border-radius: 5px;
	align-items: center;
	margin-bottom: 30px;
}
.access-info h3 {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 0 0 4px 0;
	display: flex;
	align-items: center;
}
.access-icon {
	width: 22px;
	height: 22px;
	margin-right: 8px;
}
.access-info p {
	margin: 0;
	line-height: 1.5;
	font-size: 1rem;
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
	.access-info {
		flex-direction: column;
		gap: 3px;
		align-items: flex-start;
		padding: 15px 20px;
	}
	.access-info h3 {
		font-size: 1.2rem;
	}
	.access-info p {
		font-size: 0.95rem;
	}
}

/**/
/*
iframe { filter: grayscale(100%); }
.gmp-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background-color: #714f551a;
	mix-blend-mode: color-burn;
	pointer-events: none;       /* iframe の操作を妨げない */
/*}
*/



/* 提携保険会社一覧 */
.partnership-sec {
	padding: var(--v-space2) 0;
	background-color: #f7f7f7;
	position: relative;
	z-index: 1;
}
/* グリッド */
.partnership-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 32px;
	padding: 0;
	list-style: none;
}
/* 各カードを同じ高さに */
.partnership-item {
	border: 1px solid #ddd;
	background: #fff;
	display: flex;           /* 内部リンクを横並び */
	align-items: center;     /* 縦中央 */
	height: 100%;            /* 高さ自動 */
}
/* リンク全体 */
.partnership-link {
	display: flex;
	align-items: center;        /* 縦中央 */
	justify-content: space-between; /* 左テキスト・右アイコン */
	width: 100%;
	padding: 15px 15px 16px 15px;
	text-decoration: none;
	color: inherit;
	text-align: left;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
}
.partnership-item:hover {
	background-color: var(--accent-color1);
	color: #fff;
}
/* 保険会社名 */
.partnership-name {
	font-weight: 600;
	font-size: clamp(13px, 1.3vw, 15px);
	line-height: 1.4;
	word-break: break-word;
}
/* アイコンを右端固定 */
.partnership-link svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	fill: currentColor;
	margin-left: 10px;
}



/* 各種方針セクション */
.policy-sec {
	padding: 40px 0;
	background: #ffffff;
	position: relative;
	z-index: 1;
}
.policy-sec::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}
.policy-sec::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}
/* 中央寄せ＆幅制御 */
.policy-sec .w-container {
	margin: 0 auto;
	text-align: center;
}
/* 見出し */
.policy-sec h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
}
/* リスト */
.policy-sec ul {
	display: flex;
	justify-content: center;
	gap: 15px;
	padding: 0;
	margin: 20px 0 0 0;
	list-style: none;
	flex-wrap: wrap;
}
/* ボタン（既存footer-btnを拡張） */
.policy-sec .footer-btn {
	display: inline-block;
	padding: 12px 20px;
	font-size: 14px;
	border: 1px solid #ccc;
	background: #fafafa;
	text-decoration: none;
	color: #333;
	transition: all 0.25s ease;
	width:200px;
}
/* ホバー */
.policy-sec .footer-btn:hover {
	background: #333;
	color: #fff;
	border-color: #333;
}




/*==========================================================*/
/*      	　　　個人よく使う指定CSS  		  	  */
/*=========================================================*/
/* メイン見出し（英語） */
.heading-lef {
	position: relative;
	display: inline-block;
	font-weight: 400;
	padding: 0 0 0 40px;
	font-size: clamp(28px, 2.6vw, 38px);
	margin-bottom: 5px; /* 下の日本語との間隔 */
	margin-left: auto;
	margin-right: auto;
	color: #a79c92;
	line-height: 1;
	/*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
	font-family: "WindSong", serif;
}
.heading-lef:before {
	content: '';
	position: absolute;
	top: 53%;
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #ccc;
	left: 0;
}
.heading-lef:first-letter {
	font-size: 130%;
	color: var(--main-color);
}
.heading-lef + p{
	/*font-family: "Montserrat", sans-serif;*/
	font-family: "Noto Serif JP", serif;
	font-size: clamp(15px, 1.6vw, 16px);
	line-height: 1.4;
	color: var(--accent-color1);
	margin-bottom: 20px;
	padding: 0 0 0 40px;
	font-weight: 600;
}


/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.sec-adimg-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.sec-adimg-container-item2 { grid-area: 1 / 2 / 2 / 3; }
.sec-adimg-container-item3 { grid-area: 1 / 3 / 2 / 4; }
.sec-adimg-container-item4 { grid-area: 1 / 4 / 2 / 5; }
.sec-adimg-container-item5 { grid-area: 1 / 5 / 2 / 6; }

@media (max-width: 968px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { grid-area: 1 / 3 / 2 / 4; }
	.sec-adimg-container-item5 { display: none; }
}

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { display: none; }
	.sec-adimg-container-item5 { display: none; }
}

/*------------------------------------------------*/

/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 10px;
	padding-bottom: 30px;
}
/*テキストcenter→justify*/
.tx-ctj {
	text-align: center;
}
@media (max-width: 868px) {
	.tx-ctj {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj {
		text-align: center;
	}
}
/*文字シャドウ*/
.tx-sha {
	text-shadow: #000 1px 0 10px;
}
/**/
.kukuri{
	border: 1px solid var(--accent-color2);
	padding: 10px 13px 10px 13px;
	margin: 20px 0 0 0;
	box-sizing: border-box;
	outline: 1px solid #ccc;
	outline-offset: -0.4rem;
	width: fit-content;
	background-color: #ffffffc2;
}
.kukuri p{
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.5;
	text-align: justify;
}
@media (max-width: 568px) {

}

/* タグ */
.kakomi01{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi01 span {
	padding: 3px 7px 4px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #fff;
	color: var(--accent-color2);
	border: 1px solid var(--accent-color2);
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: 14px;
}
.kakomi02{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi02 span {
	padding: 3px 7px 4px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: var(--sub-color1);
	color:#fff;
	/*border: 1px solid var(--main-color);*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 15px);
}
/*任意のみ表示*/
@media only screen and (max-width: 869px) {
	.nini-869 {
		display: none;
	}
}
/*印刷時*/
@media print{
	.nini-869 {
		display: inline;
	}
}

/*画像角丸*/
img.borad {
	border-radius: 7px;
	/*border: 1px solid #e1e1e1;*/
}
img.borad2 {
	border-radius: 11px;
}
/* コンテンツ幅 */
div.haba{
	margin: 20px 9%;
	padding: 0;
}
@media (max-width: 1168px)  {
	div.haba{
		margin: 20px 5%;
		padding: 0;
	}
}
@media (max-width: 968px)  {
	div.haba{
		margin: 20px 0;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 20px 9%;
		padding: 0;
	}
}

/*pcとspで画像のサイズ変えたいときの指定*/
.pcspwid{
	width: 450px;
	margin: 0 auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid{
		width: 100%;
	}
}
/**/
.pcspwid2{
	width: 460px;
	margin: 15px auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid2{
		width: 100%;
		margin: 15px auto;
	}
}
/**/
.fniyori {
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
/*四角デザイン*/
.head-square {
	color: #a7ccad;
	font-size: clamp(16px, 1.8vw, 19px);
	display: flex;
	align-items: center;
	gap: 12px; /* 文字との間隔調整 */
	position: relative;
	margin-top: 10px;
}

/* 左の4つの■（2×2の正方形） */
.head-square::before {
	content: "";
	width: 14px;   /* 全体の大きさ */
	height: 14px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2px; /* 四角同士の隙間 */
}

/* 4つの小さな■を作る */
.head-square::before {
	background:
		linear-gradient(#9acaa2 0 0) left top,
		linear-gradient(#fff 0 0) right top,
		linear-gradient(#fff 0 0) left bottom,
		linear-gradient(#9acaa2 0 0) right bottom;
	background-size: 6px 6px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}
/*□装飾*/
.cp_h4title {
	position: relative;
	font-size: clamp(19px, 1.8vw, 20px);
	line-height: 1.4;
	padding: 2px 2px 2px 27px;
	/*border-bottom: 1px dotted #999;*/
	/*font-family: 'Noto Serif JP', serif;*/
	margin: 0 0 10px 0;
}
.cp_h4title::before,
.cp_h4title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	/*border: 2px solid var(--accent-color1);*/
}
.cp_h4title::before {
	top: 6px;
	left: 5px;
	border: 2px solid var(--accent-color2);
}
.cp_h4title::after {
	top: 10px;
	left: 10px;
	border: 2px solid var(--main-color);
}
/*リスト　大きめディスク*/
ul.nor{
	list-style: disc;
	margin: 5px 5px 20px 25px;
	line-height: 1.4;
}
ul.nor li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: var(--sub-color1);
	left: 10px;
}
ul.nor li{
	/*border-bottom: 1px dashed #b9b9b9;*/
	padding: 0.2em 0;
	font-size: clamp(15px, 1.6vw, 17px);
}
ul.nor li.noli::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: rgba(255,255,255,0);
}
ul.nor li.noli{
	margin-left: -25px;
}
/*リスト　通常*/
ul.usuallyul{
	list-style: disc;
	margin: 5px 1px 5px 25px;
}
ul.usuallyul li{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.3;
	margin-bottom: 5px;
	color: #555;
}
ul.usuallyul li:last-child{
	margin-bottom: 0px;
}

/*見出し*/
.ttl_heading05 {
	font-weight: bold;
	padding: 0.3em;
	margin-bottom: 0.3em;
	position: relative;
}
.ttl_heading05::after {
	content: '';
	background-size: 10px 10px;
	background-color: #e1eef5;
	background-image: repeating-linear-gradient(-45deg, #4c9ac0 0, #4c9ac0 3px, #fff 0, #fff 50%);
	width: 100%;
	height: 7px;
	position: absolute;
	bottom: -5px;
	left: 0;
}

.ttl_heading_bg09 {
	background: -webkit-linear-gradient(#9bc1bc 50%, #71a49d 50%);
	background: linear-gradient(#9bc1bc 50%, #71a49d 50%));
	color: #fff;
	padding: 0.3em 0.5em 0.4em 0.5em;
	margin: 0 0 20px 0;
	font-weight: 700 !important;
}

.ttl_heading_bg10 {
	background: -webkit-linear-gradient(#e3beba 50%, #e6a9a1 50%);
	background: linear-gradient(#e3beba 50%, #e6a9a1 50%));
	color: #fff;
	padding: 0.3em 0.5em 0.4em 0.5em;
	margin: 0 0 10px 0;
	font-weight: 700 !important;
}
