@charset "utf-8";

/* ============================================================
   トップページ改修(2026/08)確認用スタイル
   対象: 資格を取得したい方 / 家事・暮らしを相談したい方 カード
   読み込み: page-top_renewal.php のみ(本番front-pageでは未使用)
   ============================================================ */

#TOP #entrance {
	margin: 40px 0;
}
#TOP #entrance .inner {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#TOP #entrance .card {
	position: relative;
	flex: 0 0 485px;
	-webkit-flex: 0 0 485px;
	height: 240px;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	overflow: hidden;
}
#TOP #entrance .card.shikaku {
	background-image: url(../images/top/renewal/shikaku_bg.jpg);
}
#TOP #entrance .card.soudan {
	background-image: url(../images/top/renewal/soudan_bg.jpg);
}
#TOP #entrance .card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.65) 40%, rgba(255,255,255,0) 75%);
}
#TOP #entrance .card .title {
	position: relative;
	padding: 25px 0 0 28px;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.12em;
	color: #7ba7d1;
	text-shadow:
		0 0 6px #fff, 0 0 6px #fff,
		0 0 12px #fff, 0 0 12px #fff,
		0 0 20px #fff;
}
#TOP #entrance .card .btns {
	position: absolute;
	left: 14px;
	right: 22px;
	bottom: 18px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#TOP #entrance .card .btns a {
	position: relative;
	display: block;
	width: calc(50% - 12px);
	padding: 13px 36px 13px 10px;
	box-sizing: border-box;
	background: #6399d0;
	text-align: center;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s;
}
#TOP #entrance .card .btns a:hover {
	opacity: 0.8;
}
/* 立体(白い厚み)の右面 */
#TOP #entrance .card .btns a::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 100%;
	width: 7px;
	height: 100%;
	background: #fff;
	border: 1px solid #a9c8e5;
	box-sizing: border-box;
	transform: skewY(45deg);
	transform-origin: left top;
}
/* 立体(白い厚み)の下面 */
#TOP #entrance .card .btns a::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 3px;
	width: 100%;
	height: 7px;
	background: #fff;
	border: 1px solid #a9c8e5;
	box-sizing: border-box;
	transform: skewX(45deg);
	transform-origin: left top;
}
/* 矢印(白丸+シェブロン) */
#TOP #entrance .card .btns a .arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
}
#TOP #entrance .card .btns a .arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	margin: -4px 0 0 -5px;
	border-top: 2px solid #6399d0;
	border-right: 2px solid #6399d0;
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
   PCグローバルナビ ドロップダウン(新デザイン .box2)
   ------------------------------------------------------------ */
#gnavi ul li {
	position: relative;
}
#gnavi .box2 {
	display: none;
	position: absolute;
	top: 100%;
	left: 6px; /* 開時(押し込み状態)のタイル左端に合わせる */
	width: 234px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	z-index: 300;
}
#gnavi li.open .box2 {
	display: block;
}
#gnavi .box2 a {
	position: relative;
	display: block;
	padding: 12px 36px 12px 14px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
	border-bottom: 2px solid #a5c9e7;
	background: #fff;
	white-space: nowrap;
}
#gnavi .box2 a:last-child {
	border-bottom: none;
}
#gnavi .box2 a:hover {
	background: #f2f8fc;
}
#gnavi .box2 a.cb {
	color: #519bd5;
}
#gnavi .box2 a.ct {
	color: #00b6bd;
}
#gnavi .box2 .arw {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
#gnavi .box2 a.cb .arw {
	background: #519bd5;
}
#gnavi .box2 a.ct .arw {
	background: #00b6bd;
}
#gnavi .box2 .arw::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
   SPハンバーガーメニュー(新デザイン)
   ------------------------------------------------------------ */
/* メニュー全体を不透過に(背景の透け防止) */
#cont_navigation .nav_wrap,
#cont_navigation .nav_wrap .in,
#cont_navigation .rmenu,
#cont_navigation .acc,
#cont_navigation .acc .sub,
#cont_navigation .acc .sub a {
	background-color: #fff;
}
#cont_navigation .rmenu .row {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 54px;
	padding: 8px 46px 8px 6px;
	box-sizing: border-box;
	background: #519bd5;
	border-bottom: 2px solid #fff;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
}
#cont_navigation .rmenu .row .ico {
	flex: 0 0 44px;
	margin-right: 6px;
	text-align: center;
}
#cont_navigation .rmenu .row .ico img {
	max-width: 36px;
	max-height: 36px;
	vertical-align: middle;
}
/* 白丸+青矢印(リンク行) */
#cont_navigation .rmenu .row .arw,
#cont_navigation .rgrid .arw {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -11px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
}
#cont_navigation .rmenu .row .arw::before,
#cont_navigation .rgrid .arw::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -4px;
	border-top: 2px solid #519bd5;
	border-right: 2px solid #519bd5;
	transform: rotate(45deg);
}
/* 白丸+/-(アコーディオン行) */
#cont_navigation .rmenu .row .pm {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
}
#cont_navigation .rmenu .row .pm::before,
#cont_navigation .rmenu .row .pm::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #519bd5;
}
#cont_navigation .rmenu .row .pm::before {
	width: 12px;
	height: 2px;
	margin: -1px 0 0 -6px;
}
#cont_navigation .rmenu .row .pm::after {
	width: 2px;
	height: 12px;
	margin: -6px 0 0 -1px;
}
#cont_navigation .acc.open > .row .pm::after {
	display: none;
}
#cont_navigation .acc .sub {
	display: none;
	background: #fff;
}
#cont_navigation .acc.open .sub {
	display: block;
}
#cont_navigation .acc .sub a {
	position: relative;
	display: block;
	padding: 15px 46px 15px 56px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
	border-bottom: 2px solid #cfe2f2;
}
#cont_navigation .acc .sub a.cb {
	color: #519bd5;
}
#cont_navigation .acc .sub a.ct {
	color: #00b6bd;
}
#cont_navigation .acc .sub .arw2 {
	position: absolute;
	right: 14px;
	top: 50%;
	margin-top: -11px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
}
#cont_navigation .acc .sub a.cb .arw2 {
	background: #519bd5;
}
#cont_navigation .acc .sub a.ct .arw2 {
	background: #00b6bd;
}
#cont_navigation .acc .sub .arw2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
/* トモダテ(緑・現行ドロワーから引き継ぎ) */
#cont_navigation .acc.tomodate .row {
	padding-left: 16px;
	background: #cae378;
	color: #333;
}
#cont_navigation .acc.tomodate .row .pm::before,
#cont_navigation .acc.tomodate .row .pm::after {
	background: #8aab3f;
}
#cont_navigation .acc.tomodate .sub a {
	color: #7fa83d;
	border-bottom-color: #e2edc3;
}
#cont_navigation .acc.tomodate .sub .arw2 {
	background: #cae378;
}

/* 下部2列グリッド */
#cont_navigation .rgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	background: #fff;
	padding-bottom: 120px;
}
#cont_navigation .rgrid a {
	position: relative;
	display: block;
	padding: 18px 36px 18px 10px;
	box-sizing: border-box;
	background: #519bd5;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
}
#cont_navigation .rgrid .arw {
	right: 8px;
}

/* ------------------------------------------------------------
   実績・依頼 セクション
   ------------------------------------------------------------ */
#TOP #jisseki {
	margin: 60px 0;
}
#TOP #jisseki .midashi2 {
	margin-bottom: 20px;
	padding: 9px 18px;
	background: #7aaed7;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #fff;
}
#TOP #jisseki .rows {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 17px;
}
#TOP #jisseki .list a {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	color: #333;
	text-decoration: none;
	transition: opacity 0.2s;
}
#TOP #jisseki .list a:hover {
	opacity: 0.8;
}
#TOP #jisseki .list .img img {
	display: block;
	width: 100%;
	height: auto;
}
#TOP #jisseki .list .body {
	flex: 1;
	padding: 22px 20px 42px;
	background: #f2f2f2;
	box-sizing: border-box;
}
#TOP #jisseki .list .title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}
#TOP #jisseki .list .text {
	font-size: 15px;
	line-height: 1.9;
}
#TOP #jisseki .list .circle {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #000;
}
#TOP #jisseki .list .circle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	margin: -4px 0 0 -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
   トモダテ セクション(旧sec3を新カードデザインで復活)
   ------------------------------------------------------------ */
#TOP #tomodate {
	margin: 60px 0;
}
#TOP #tomodate .midashi2 {
	margin-bottom: 20px;
	padding: 9px 18px;
	background: #cee185;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #fff;
}
#TOP #tomodate .rows {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 17px;
}
#TOP #tomodate .list a {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	color: #333;
	text-decoration: none;
	transition: opacity 0.2s;
}
#TOP #tomodate .list a:hover {
	opacity: 0.8;
}
#TOP #tomodate .list .img img {
	display: block;
	width: 100%;
	height: auto;
}
#TOP #tomodate .list .body {
	flex: 1;
	padding: 18px 14px 40px;
	background: #f2f2f2;
	box-sizing: border-box;
}
#TOP #tomodate .list .title {
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.5;
}
#TOP #tomodate .list .text {
	font-size: 14px;
	line-height: 1.8;
}
#TOP #tomodate .list .circle {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #000;
}
#TOP #tomodate .list .circle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	margin: -4px 0 0 -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

/* ------------------------------------------------------------
   新フッター(#footer_r)
   ------------------------------------------------------------ */
#footer_r {
	margin-top: 0;
	background: #fff;
}
#footer_r .inner {
	padding-top: 55px;
}
#footer_r .rows {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#footer_r .finfo {
	flex: 0 0 44%;
	-webkit-flex: 0 0 44%;
	text-align: center;
}
#footer_r .finfo .flogo img {
	max-width: 360px;
	width: 100%;
	height: auto;
}
#footer_r .finfo .address {
	margin-top: 22px;
	font-size: 14px;
	line-height: 2;
	color: #333;
	white-space: nowrap;
}
#footer_r .finfo .address a {
	color: #333;
	text-decoration: none;
}
#footer_r .finfo .sns {
	margin-top: 25px;
}
#footer_r .finfo .sns a {
	display: inline-block;
	margin: 0 8px;
}
#footer_r .finfo .sns img {
	width: 44px;
	height: auto;
	vertical-align: middle;
}
#footer_r .fnavi {
	flex: 0 0 54%;
	-webkit-flex: 0 0 54%;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
#footer_r .fnavi ul {
	flex: 0 0 48%;
	-webkit-flex: 0 0 48%;
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer_r .fnavi > ul:first-child {
	flex: 0 0 40%;
	-webkit-flex: 0 0 40%;
}
#footer_r .fnavi > ul:last-child {
	flex: 0 0 58%;
	-webkit-flex: 0 0 58%;
}
#footer_r .fnavi > ul > li {
	margin-bottom: 16px;
}
#footer_r .fnavi a {
	position: relative;
	display: inline-block;
	padding-left: 26px;
	font-size: 15px;
	color: #333;
	text-decoration: none;
	line-height: 1.5;
}
#footer_r .fnavi a:hover {
	opacity: 0.7;
}
/* 親項目: 黒丸矢印 */
#footer_r .fnavi a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
}
#footer_r .fnavi a::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 8px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
/* 子項目: 青丸矢印 */
#footer_r .fnavi ul ul {
	margin: 10px 0 14px 24px;
	padding: 0;
	list-style: none;
	flex: none;
	-webkit-flex: none;
}
#footer_r .fnavi ul ul li {
	margin-bottom: 9px;
}
#footer_r .fnavi ul ul a {
	padding-left: 24px;
	font-size: 14px;
}
#footer_r .fnavi ul ul a::before {
	width: 16px;
	height: 16px;
	top: 2px;
	background: #7aaed7;
}
#footer_r .fnavi ul ul a::after {
	left: 5px;
	top: 7px;
	width: 5px;
	height: 5px;
}
#footer_r .fmin {
	margin-top: 45px;
	padding-bottom: 35px;
	font-size: 13px;
	line-height: 1.9;
	color: #333;
}
#footer_r .copyright {
	padding: 14px 10px;
	background: #7aaed7;
	text-align: center;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: #fff;
}

@media screen and (max-width: 767px) {
	#TOP #entrance {
		margin: 25px 0;
	}
	#TOP #entrance .inner {
		display: block;
	}
	#TOP #entrance .card {
		flex: none;
		-webkit-flex: none;
		height: auto;
		padding: 20px 12px 20px 15px;
		box-sizing: border-box;
	}
	#TOP #entrance .card + .card {
		margin-top: 20px;
	}
	#TOP #entrance .card .title {
		padding: 0;
		font-size: 27px;
	}
	#TOP #entrance .card .btns {
		position: static;
		margin-top: 30px;
		padding-right: 8px;
	}
	#TOP #entrance .card .btns a {
		width: calc(50% - 12px);
		padding: 12px 24px 12px 4px;
		font-size: 14px;
		white-space: nowrap;
	}
	#TOP #entrance .card .btns a::before {
		width: 5px;
		top: 2px;
	}
	#TOP #entrance .card .btns a::after {
		height: 5px;
		left: 2px;
	}
	#TOP #entrance .card .btns a .arrow {
		right: 6px;
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}
	#TOP #entrance .card .btns a .arrow::before {
		width: 6px;
		height: 6px;
		margin: -3px 0 0 -4px;
	}

	/* 実績・依頼 SP */
	#TOP #jisseki {
		margin: 40px 0;
	}
	#TOP #jisseki .midashi2 {
		margin: 0 -15px 15px;
		padding: 8px 15px;
		font-size: 18px;
	}
	#TOP #jisseki .rows {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	#TOP #jisseki .list .body {
		padding: 14px 12px 34px;
	}
	#TOP #jisseki .list .title {
		margin-bottom: 8px;
		font-size: 16px;
	}
	#TOP #jisseki .list .text {
		font-size: 13px;
		line-height: 1.7;
	}
	#TOP #jisseki .list .circle {
		right: 8px;
		bottom: 8px;
		width: 22px;
		height: 22px;
	}

	/* トモダテ SP */
	#TOP #tomodate {
		margin: 40px 0;
	}
	#TOP #tomodate .midashi2 {
		margin: 0 -15px 15px;
		padding: 8px 15px;
		font-size: 17px;
	}
	#TOP #tomodate .rows {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	#TOP #tomodate .list .body {
		padding: 14px 12px 34px;
	}
	#TOP #tomodate .list .title {
		margin-bottom: 8px;
		font-size: 15px;
	}
	#TOP #tomodate .list .text {
		font-size: 13px;
		line-height: 1.7;
	}
	#TOP #tomodate .list .circle {
		right: 8px;
		bottom: 8px;
		width: 22px;
		height: 22px;
	}

	/* 新フッター SP */
	#footer_r .inner {
		padding-top: 30px;
	}
	#footer_r .rows {
		display: flex;
		flex-direction: column-reverse;
	}
	#footer_r .fnavi {
		flex: none;
		-webkit-flex: none;
	}
	#footer_r .fnavi ul,
	#footer_r .fnavi > ul:first-child,
	#footer_r .fnavi > ul:last-child {
		flex: 0 0 49%;
		-webkit-flex: 0 0 49%;
	}
	#footer_r .fnavi a {
		padding-left: 20px;
		font-size: 12px;
	}
	#footer_r .fnavi a::before {
		width: 14px;
		height: 14px;
		top: 2px;
	}
	#footer_r .fnavi a::after {
		left: 4px;
		top: 6px;
		width: 4px;
		height: 4px;
	}
	#footer_r .fnavi ul ul {
		margin: 8px 0 12px 10px;
	}
	#footer_r .fnavi ul ul a {
		padding-left: 20px;
		font-size: 11px;
	}
	#footer_r .fnavi ul ul a::before {
		width: 14px;
		height: 14px;
		top: 2px;
	}
	#footer_r .fnavi ul ul a::after {
		left: 4px;
		top: 6px;
	}
	#footer_r .finfo {
		flex: none;
		-webkit-flex: none;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #e5e5e5;
	}
	#footer_r .finfo .flogo img {
		max-width: 300px;
	}
	#footer_r .finfo .address {
		margin-top: 15px;
		font-size: 11px;
	}
	#footer_r .finfo .sns {
		margin-top: 18px;
	}
	#footer_r .finfo .sns img {
		width: 40px;
	}
	#footer_r .fmin {
		margin-top: 30px;
		padding-bottom: 25px;
		font-size: 12px;
	}
	#footer_r .copyright {
		font-size: 10px;
	}
}
