@charset "UTF-8";
@media (min-width: 769px) {
	.sp {
		display: none;
	}
}
@media (max-width: 768px) {
	.sp {
		display: inherit;
	}
}

@media (min-width: 769px) {
	.pc {
		display: inherit;
	}
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
}

@media (min-width: 769px) {
	.murata-break {
		display: inherit;
	}
}
@media (max-width: 768px) {
	.murata-break {
		display: none;
	}
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

h2 {
	font-family: "Hiragino Mincho ProN", "Hiragino Mincho", "Yu Mincho", serif;
	color: #1A323C;
	font-weight: 600;
	padding: 0 0;
}
h2.line, h2 span.line {
	display: inline;
	padding: 10px 30px;
	border-bottom: 3px solid #C9AC82;
	background-color: #fff;
}
@media (min-width: 769px) {
	h2 {
		font-size: 37px;
	}
}
@media (max-width: 768px) {
	h2 {
		font-size: clamp(20px, 8vw, 36px);
	}
	h2::before {
		content: "";
		display: block;
		padding-top: 10vw;
	}
	h2.line, h2 span.line {
		padding: 3px 0;
	}
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

header {
	display: flex;
	align-items: center;
	width: 1000px;
	height: 64px;
	margin: 0 auto;
}
header img {
	height: 45px;
	padding-left: 10px;
}
@media (max-width: 768px) {
	header {
		width: 100%;
		height: 48px;
		justify-content: center;
	}
	header img {
		width: 120px;
		height: auto;
	}
}

.cta_sp {
	width: 100%;
	position: fixed;
	bottom: 0;
	padding: 10px 15px;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 999;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.cta_sp .txt1 {
	width: 100%;
	max-width: 360px;
	margin: 5px auto;
}
.cta_sp .button {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.cta.pc {
	width: 100%;
	padding: 60px 0 20px;
}
.cta.pc a {
	display: flex;
	margin: 0 auto;
	width: 660px;
	height: 76px;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background-image: linear-gradient(90deg, #FB821A, #DD5001);
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1803921569);
	transition: transform 0.3s ease-in-out;
}
.cta.pc a::after {
	content: "";
	display: inline-block;
	margin-left: 40px;
	width: 16px;
	height: 16px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
}
.cta.pc a:hover {
	transform: scale(1.1);
}
.cta.pc .txt1 {
	display: inline;
	width: 415px;
	margin: 2px;
}
.cta.pc .txt2 {
	width: 232px;
	margin-left: 40px;
}
.cta.pc.float {
	position: fixed;
	padding: 10px 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	z-index: 9999;
}
.cta.pc.float a {
	width: 800px;
	margin-top: -40px;
}
.cta.pc.float .txt1 {
	display: none;
}

section {
	position: relative;
	margin: 0 auto;
	text-align: center;
}
@media (min-width: 769px) {
	section {
		padding-top: 80px;
		width: 1000px;
	}
	section::before, section::after {
		content: "";
		display: block;
		position: absolute;
		width: 1266px;
		transform: translateX(-50%);
		left: 50%;
	}
	section:nth-of-type(n+2):nth-of-type(-n+5) {
		padding-top: 140px;
	}
	section::after {
		height: 100%;
		top: 0;
		background-color: #cfcfcf;
		z-index: -1;
	}
	section:nth-of-type(-n+4)::before {
		height: 80px;
		bottom: -79px;
		background-color: #C9AC82;
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
						clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	}
	section:nth-of-type(odd)::before, section:nth-of-type(odd)::after {
		background-color: #fff;
	}
	section:nth-of-type(even)::before, section:nth-of-type(even)::after {
		background-color: #f6f6f6;
	}
}
section .header p {
	margin: 20px 0 40px;
	font-size: 20px;
	color: #1A323C;
}
section .flow-container .scroll-button {
	display: flex;
	justify-content: flex-end;
	gap: 40px;
	margin: 10px 20px;
}
section .flow-container .scroll-button .btn-l, section .flow-container .scroll-button .btn-r {
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: #547F9F;
	transition: all 0.3s ease-in-out;
}
section .flow-container .scroll-button .btn-l::after, section .flow-container .scroll-button .btn-r::after {
	content: "";
	display: inline-block;
	margin-left: -6px;
	margin-top: 13px;
	width: 13px;
	height: 13px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
}
section .flow-container .scroll-button .btn-l:hover, section .flow-container .scroll-button .btn-r:hover {
	background-color: #114A7B;
}
section .flow-container .scroll-button .btn-l::after {
	transform: rotate(135deg);
	margin-left: 4px;
}
section .flow-container .scroll-wrapper {
	position: relative;
}
section .flow-container .scroll-wrapper::before {
	content: "";
	position: absolute;
	display: block;
	width: 100px;
	height: 100%;
	top: 0;
	right: -1px;
	background-image: linear-gradient(-90deg, #fff, transparent);
	z-index: 2;
	pointer-events: none;
}
section .flow-container .scroll-container {
	position: relative;
	overflow-x: scroll;
	scrollbar-gutter: stable;
	-webkit-overflow-scrolling: touch;
}
section .flow-container .scroll-container::-webkit-scrollbar {
	height: 15px;
}
section .flow-container .scroll-container::-webkit-scrollbar-thumb {
	background-color: #C8C8C8;
	border-radius: 10px;
}
section .flow-container .note {
	margin-bottom: 5px;
	font-size: 16px;
	color: #114A7B;
}
@media (max-width: 768px) {
	section {
		width: 100vw;
	}
	section:nth-of-type(odd) {
		background-color: #fff;
	}
	section:nth-of-type(even) {
		background-color: #f6f6f6;
	}
	section .header p {
		font-size: clamp(11px, 3.6vw, 19px);
		padding: 0 2vw;
		margin-bottom: 6vw;
	}
	section .flow-container .scroll-container::-webkit-scrollbar {
		height: 8px;
	}
	section .flow-container .note-wrapper {
		position: relative;
	}
	section .flow-container .note-wrapper .note {
		font-size: 12px;
		font-weight: 600;
		text-align: center;
		margin: 20px 0 18px;
		padding: inherit;
		padding-left: 0;
	}
	section .flow-container .note-wrapper img {
		position: absolute;
		width: 16.5em;
		margin: 0 auto;
		top: 0px;
		left: 0.5em;
		right: 0;
	}
}

.bg {
	position: absolute;
	width: 100vw;
	height: 460px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-size: cover;
	background-position: center center;
	z-index: -1;
}

@media (min-width: 769px) {
	.fv {
		position: relative;
		width: 1266px;
		/*min-width: 100vw;*/
		min-width: 100%;
		margin: 0px auto;
		transform: translateX(-50%);
		left: 50%;
	}
	.fv .bg {
		height: 460px;
		top: 22.1%;
		left: 50%;
		transform: translate(-50%, -30%);
		background-image: url(/assets/images/original/baikyaku-kaikae-lp_02_fv_bg.jpg);
	}
	.fv .fv-cta-wrapper {
		position: absolute;
		width: 1000px;
		height: 100%;
		margin: 0 auto;
		left: 0;
		right: 0;
	}
	.fv .cta {
		position: absolute;
		width: 420px;
		padding: inherit;
		top: 295px;
		left: 9px;
		z-index: 2;
	}
	.fv .cta a {
		width: 420px;
		border-radius: 15px;
	}
	.fv .cta a::after {
		margin-left: 26px;
	}
	.fv .cta .txt2 {
		width: 232px;
		margin: 0;
	}
	.fv img {
		width: 1266px;
		margin: 0 auto;
	}
}

.plan {
	padding-bottom: 40px;
}
.plan h2 {
	margin: 40px 0;
}
.plan h2 span {
	font-size: 32px;
}
.plan .plan-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.plan .plan-box {
	background: white;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	text-align: center;
	border: 2px solid #F1F2F2;
}
.plan .plan-box h3 {
	padding: 18px 0;
	border-radius: 10px 10px 0 0;
	font-size: 20px;
}
.plan .plan-box img {
	display: inline;
	width: 103px;
	margin-top: 5px;
}
.plan .plan-box p {
	text-align: left;
	font-size: 14px;
	color: #333;
	line-height: 1.7;
	letter-spacing: 1.3px;
}
.plan .note {
	margin: 10px 35px;
	color: #717171;
	font-size: 10px;
	text-align: right;
}
@media (max-width: 768px) {
	.plan h2 {
		margin: 10vw 20px;
	}
	.plan h2 span {
		font-size: clamp(20px, 8.5vw, 36px);
	}
	.plan h2::before {
		padding-top: 5vw;
	}
	.plan .services-container {
		flex-direction: column;
		align-items: center;
	}
	.plan .plan-box {
		width: 90%;
	}
	.plan .plan-box h3 {
		font-size: clamp(16px, 4vw, 20px);
		margin: 3.5vw 0;
		padding: 0;
	}
	.plan .plan-box p {
		font-size: clamp(11px, 3.5vw, 14px);
		margin: 0;
	}
	.plan .plan-box img {
		width: 30vw;
		max-width: 103px;
		margin: 0;
	}
}

.service1 .service-container {
	padding: 60px 0;
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap; /* レスポンシブ対応 */
}
.service1 .service-box {
	position: relative;
	background: white;
	border-radius: 20px;
	width: 440px;
	height: 488px;
	text-align: left;
	border: 1px solid #C9AC82;
}
.service1 .service-box .box1 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	align-items: flex-start;
	padding: 60px 0 40px;
}
.service1 .service-box .box1::after {
	position: absolute;
	content: "";
	width: 90%;
	height: 2px;
	bottom: 0;
	background: radial-gradient(circle, #C9AC82 1px, transparent 1px) repeat-x;
	background-size: 8px 2px;
}
.service1 .service-box .box1 img {
	width: 130px;
	height: 132px;
}
.service1 .service-box .box1 .txt {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service1 .service-box .box1 h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
.service1 .service-box .box1 .sub-title {
	width: 210px;
	font-size: 16px;
}
.service1 .service-box .box2 {
	width: 383px;
	margin: 20px auto;
}
.service1 .service-box .box2 .note {
	position: absolute;
	bottom: 20px;
}
.service1 .service-box ol {
	flex: 1.1;
	padding-left: 20px;
	list-style: decimal;
}
.service1 .service-box li {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 8px;
}
.service1 .service-box .note {
	flex: 0.3;
	align-self: flex-start;
	font-size: 10px;
	color: #666;
	text-align: left;
}
@media (max-width: 768px) {
	.service1 .service-container {
		gap: 20px;
		padding-top: 6vw;
	}
	.service1 .service-box {
		width: 92vw;
		height: auto;
	}
	.service1 .service-box .box1 {
		display: block;
		padding: inherit;
		padding-top: 5vw;
		text-align: center;
	}
	.service1 .service-box .box1 .txt {
		min-height: auto;
		padding: 0 20px 12px;
	}
	.service1 .service-box .box1 img {
		width: 26vw;
		height: auto;
		margin: 0 auto;
	}
	.service1 .service-box .box1 h3 {
		padding-top: 5vw;
		font-size: clamp(16px, 6vw, 20px);
	}
	.service1 .service-box .box1 .sub-title {
		font-size: clamp(12px, 4.5vw, 16px);
		width: 90%;
		height: auto;
		padding-top: 3vw;
	}
	.service1 .service-box .box1::after {
		left: 5vw;
	}
	.service1 .service-box .box2 {
		width: 92%;
	}
	.service1 .service-box .box2 li {
		font-size: clamp(11px, 3.5vw, 14px);
	}
	.service1 .service-box .box2 .note {
		position: inherit;
		font-size: 0.6em;
		padding-top: 2vw;
	}
}

.solution {
	width: 900px;
	padding-bottom: 60px;
}
.solution .case {
	width: 100%;
	margin: 40px auto 0;
}
.solution .case .intro {
	width: 660px;
	margin: 0 auto;
	height: 135px;
}
.solution .case .family {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
	height: 237px;
}
.solution .case .family .details p {
	padding: 20px;
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	color: #114A7B;
}
.solution .case .family .details span {
	padding: 2px 6px 1px 13px;
	font-size: 13px;
	letter-spacing: 7px;
	color: #fff;
	background-color: #114A7B;
}
.solution .case .family .details li {
	padding: 11px 10px 11px 20px;
	font-size: 14px;
	text-align: left;
}
.solution .case .family img {
	position: absolute;
	bottom: 0;
	left: 20px;
	max-width: 321px;
}
.solution .case .finance {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 220px;
	background-color: #F1F2F2;
}
.solution .case .finance .finance-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 420px;
	height: 190px;
	padding: 10px 0;
	border-radius: 10px;
	font-weight: 600;
	color: #114A7B;
	background-color: #fff;
}
.solution .case .finance .finance-box h3 {
	display: inline;
	padding: 0px 5px;
	font-size: 18px;
	border-bottom: 3px solid #C9AC82;
}
.solution .case .finance .finance-box p {
	font-size: 18px;
}
.solution .case .finance .finance-box .price {
	text-align: left;
}
.solution .case .finance .finance-box .highlight {
	color: #E66801;
}
.solution .success {
	width: 620px;
	height: 160px;
	margin: 0 auto;
	padding-top: 37px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	background-color: #114A7B;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
					clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.solution .flow-container {
	width: 100%;
	height: 880px;
	margin: -60px auto 0;
	padding-top: 30px;
	border-radius: 20px;
	background-color: #E8EAEB;
}
.solution .flow-container .scroll-button {
	margin-bottom: 20px;
}
.solution .flow-container .scroll-content {
	width: 1448px;
	height: 656px;
	margin: 10px 20px 20px;
}
.solution .flow-container .scroll-wrapper::before {
	top: 10px;
	height: 94%;
}
.solution .flow-container .note {
	padding: 10px 25px;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.solution .guarantee {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 157px;
	margin: 20px auto 30px;
}
.solution .guarantee .flow-box {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	width: 420px;
	height: 100%;
	border-radius: 20px;
	background-color: #E9F5FF;
}
.solution .guarantee .flow-arrow {
	display: flex;
	gap: 10px;
}
.solution .guarantee .flow-arrow::before, .solution .guarantee .flow-arrow::after {
	content: "";
	display: block;
	width: 19px;
	height: 44px;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
					clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background-color: #E66801;
}
.solution .guarantee p {
	font-weight: 600;
}
.solution .guarantee p:nth-of-type(1) {
	font-size: 16px;
}
.solution .guarantee p:nth-of-type(2) {
	display: inline;
	padding: 7px 45px;
	font-size: 18px;
	color: #E66801;
	border-bottom: 3px solid #C9AC82;
	background-color: #fff;
}
.solution .guarantee p:nth-of-type(3) {
	font-size: 14px;
	font-weight: 300;
}
.solution .points, .solution .recommend {
	width: 100%;
	border-radius: 20px;
	border: 3px solid;
}
.solution .points h3, .solution .recommend h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
}
.solution .points ul, .solution .recommend ul {
	display: inline-block;
	margin: 40px 0;
}
.solution .points li, .solution .recommend li {
	margin-bottom: 20px;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
}
.solution .points li::before, .solution .recommend li::before {
	content: "";
	display: block;
	position: absolute;
	width: 21px;
	height: 19px;
	margin-top: 5px;
	margin-left: -40px;
	background-image: url(/assets/materials/baikyaku-kaikae-lp_02_check_bl.svg);
}
.solution .points {
	color: #114A7B;
	border-color: #114A7B;
	overflow: hidden;
}
.solution .points h3 {
	height: 70px;
	background-color: #114A7B;
}
.solution .recommend {
	position: relative;
	margin-top: 64px;
	padding-top: 50px;
	border-color: #A88F7A;
}
.solution .recommend h3 {
	position: absolute;
	width: 647px;
	height: 97px;
	margin: -90px auto 0;
	padding-bottom: 15px;
	left: 0;
	right: 0;
	background-color: #A88F7A;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 50% 100%, 0% 60%);
					clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 50% 100%, 0% 60%);
}
.solution .recommend li::before {
	background-image: url(/assets/materials/baikyaku-kaikae-lp_02_check_or.svg);
}
@media (min-width: 769px) {
	.solution .case .finance .finance-box:last-of-type .price {
		margin-left: -180px;
	}
}
@media (max-width: 768px) {
	.solution {
		width: 92vw;
		height: auto;
	}
	.solution .case {
		margin-top: 6vw;
	}
	.solution .case .intro {
		width: 100%;
		height: 31vw;
	}
	.solution .case .family {
		min-height: 250px;
		height: 45vw;
	}
	.solution .case .family .details {
		position: relative;
		padding-bottom: 24vw;
	}
	.solution .case .family .details ul {
		position: absolute;
		width: 92vw;
		top: 29.2vw;
		right: 0;
	}
	.solution .case .family .details li {
		font-size: 12px;
		padding: 6px 2vw;
	}
	.solution .case .family .details p {
		width: 50vw;
		font-size: clamp(12px, 3vw, 17px);
		position: absolute;
		left: -42vw;
		top: 7vw;
		padding: 0;
	}
	.solution .case .family img {
		width: 46vw;
		height: auto;
		top: -8vw;
		left: 2vw;
	}
	.solution .case .finance {
		align-items: stretch;
		gap: 10px;
		padding: 10px 6px 20px;
		height: auto;
	}
	.solution .case .finance .finance-box {
		justify-content: space-around;
		height: auto;
		padding: 15px 0;
	}
	.solution .case .finance .finance-box h3 {
		font-size: clamp(11px, 3.5vw, 18px);
	}
	.solution .case .finance .finance-box p {
		font-size: clamp(10px, 3vw, 17px);
	}
	.solution .success {
		width: 100%;
		height: 120px;
		font-size: 17px;
		padding-top: 16px;
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
						clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
	}
	.solution .flow-container {
		height: auto;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.solution .flow-container .scroll-button {
		margin: 9vw 4vw 1vw;
	}
	.solution .flow-container .scroll-content {
		width: 765px;
		height: 347px;
	}
	.solution .flow-container .note {
		font-size: clamp(10px, 3vw, 15px);
	}
	.solution .guarantee {
		flex-direction: column;
		height: auto;
		gap: 10px;
	}
	.solution .guarantee .flow-arrow::before {
		width: 69px;
		height: 11px;
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
						clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	}
	.solution .guarantee .flow-arrow::after {
		display: none;
	}
	.solution .guarantee .flow-box {
		width: 100%;
		height: 137px;
	}
	.solution .guarantee p:nth-of-type(1) {
		font-size: clamp(11px, 3.5vw, 15px);
	}
	.solution .guarantee p:nth-of-type(2) {
		font-size: clamp(12px, 4vw, 18px);
	}
	.solution .guarantee p:nth-of-type(3) {
		font-size: clamp(10px, 3.2vw, 14px);
	}
	.solution .points, .solution .recommend {
		width: 92vw;
		margin: 0 auto;
	}
	.solution .points h3, .solution .recommend h3 {
		font-size: clamp(16px, 6vw, 21px);
	}
	.solution .points ul, .solution .recommend ul {
		margin: 0;
		padding: 40px 10px 20px 45px;
	}
	.solution .points li, .solution .recommend li {
		font-size: 0.9em;
	}
	.solution .points li::before, .solution .recommend li::before {
		margin-left: -28px;
	}
	.solution .recommend {
		margin-top: 3em;
		padding-top: 40px;
	}
	.solution .recommend h3 {
		width: 85%;
		height: 4em;
		margin-top: -70px;
	}
}

.users-voice .box-container {
	display: flex;
	width: 1000px;
	margin-top: 40px;
}
.users-voice .box {
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding: 50px 40px;
	background: #fff;
}
.users-voice .box .txt {
	width: 456px;
	text-align: left;
}
.users-voice .box h3 {
	padding-bottom: 30px;
	font-size: 24px;
	text-align: center;
}
.users-voice .box p {
	font-size: 16px;
	letter-spacing: 0.5px;
}
.users-voice .box p:last-of-type {
	padding-top: 20px;
}
.users-voice .box img {
	display: block;
	width: 400px;
}
@media (min-width: 769px) {
	.users-voice .box img.sp {
		display: none;
	}
}
@media (max-width: 768px) {
	.users-voice .box-container {
		width: 92vw;
		margin: 0 auto;
	}
	.users-voice .box {
		padding: 6vw 4vw;
		margin: 6vw 0 12vw;
	}
	.users-voice .box h3 {
		font-size: clamp(16px, 7vw, 21px);
	}
	.users-voice .box .txt {
		width: 100%;
	}
	.users-voice .box .txt p {
		font-size: clamp(12px, 4.5vw, 16px);
	}
	.users-voice .box img {
		width: 100%;
		max-width: 400px;
		margin: 0 auto 3vw;
	}
	.users-voice .box img.pc {
		display: none;
	}
}

.authority {
	margin-bottom: 60px;
}
.authority .box-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 920px;
	margin: 50px auto 0;
}
.authority .head {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding-bottom: 15px;
}
.authority .head h3 {
	font-size: 25px;
}
.authority .head .highlight {
	color: #B48745;
}
.authority .head img {
	width: 134px;
	height: 50px;
	margin-top: 5px;
}
.authority .box {
	width: 450px;
	height: 335px;
	padding: 50px 28px;
	text-align: left;
	border: 1px solid #C9AC82;
}
.authority .box p {
	font-size: 16px;
	line-height: 1.75;
}
.authority .box .note {
	padding-top: 10px;
	font-size: 10px;
}
.authority .box a {
	display: inline-block;
	position: absolute;
	bottom: 28px;
	padding: 7px 17px;
	color: #547F9F;
	border: 1px solid #547F9F;
}
.authority .box a::after {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #547F9F;
	border-bottom: 1px solid #547F9F;
	transform: rotate(-45deg);
}
@media (max-width: 768px) {
	.authority .box-container {
		flex-direction: column;
		width: 92vw;
		margin-top: 8vw;
	}
	.authority .head {
		padding-bottom: 5vw;
	}
	.authority .head h3 {
		font-size: clamp(16px, 7vw, 21px);
	}
	.authority .head img {
		width: 30vw;
		height: auto;
		max-width: 134px;
		max-height: 50px;
	}
	.authority .box {
		width: 100%;
		height: auto;
		padding: 10vw 5vw;
	}
	.authority .box p {
		font-size: clamp(12px, 4.5vw, 16px);
	}
	.authority .box a {
		position: inherit;
		margin-top: 4vw;
	}
}

.qa {
	padding: 80px 0;
}
.qa .accordion {
	max-width: 900px;
	margin: 40px auto;
}
.qa details {
	border: 1px solid #114A7B;
	margin-bottom: 20px;
	border-radius: 11px;
	background: white;
}
.qa summary {
	list-style: none;
	background: #7C756A;
	color: white;
	padding: 12px 36px;
	font-size: 20px;
	cursor: pointer;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}
.qa summary::before {
	content: "";
	width: 52px;
	height: 52px;
	padding-left: 4vw;
	background-image: url(/assets/materials/baikyaku-kaikae-lp_02_Q.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.qa summary::after {
	content: "+";
	font-size: 30px;
	font-weight: 300;
	margin-left: auto;
	transition: transform 0.3s ease;
}
.qa details[open] summary::after {
	content: "−";
	transform: rotate(0);
}
.qa .answer {
	position: relative;
	text-align: left;
	padding-left: 106px;
	padding-bottom: 30px;
}
.qa .answer::after {
	content: "";
	display: block;
	position: absolute;
	width: 52px;
	height: 52px;
	top: 14px;
	left: 36px;
	padding-left: 20px;
	background-image: url(/assets/materials/baikyaku-kaikae-lp_02_A.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.qa details p {
	padding: 23px 70px 10px 0;
	margin: 0;
	font-size: 18px;
	line-height: 2;
}
.qa details a {
	padding: 10px 0;
	color: #547F9F;
	font-weight: bold;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.qa {
		padding-top: 3vw;
		padding-bottom: 10vw;
	}
	.qa .accordion {
		max-width: 92vw;
		margin-top: 6vw;
	}
	.qa .accordion summary {
		padding: 15px 15px 15px 10px;
		font-size: clamp(15px, 4vw, 17px);
		text-align: left;
	}
	.qa .accordion summary span {
		flex: 1;
	}
	.qa .accordion summary::before {
		width: 12vw;
		height: 12vw;
		max-width: 52px;
		max-height: 52px;
	}
	.qa .answer {
		padding: 50px 15px 30px 40px;
	}
	.qa .answer::after {
		left: 10px;
		width: 12vw;
		height: 12vw;
		max-width: 52px;
		max-height: 52px;
	}
	.qa details p, .qa details a {
		padding-right: 0;
		font-size: clamp(12px, 3.5vw, 17px);
	}
}

.tools {
	padding-bottom: 80px;
}
.tools .tools-container {
	width: 900px;
	margin: -30px auto 0;
	padding: 40px 0;
	border-radius: 100px;
	background-color: #f6f6f6;
}
.tools .sim-container {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 385px;
	margin: 0 70px;
	border-radius: 30px;
	background: #fff;
}
.tools .sub-title {
	margin: 20px 0 15px;
}
.tools .sub-title h3 {
	font-size: 20px;
}
.tools .sub-title p {
	font-size: 14px;
}
.tools .box p {
	padding-bottom: 20px;
	font-size: 16px;
	font-weight: 600;
}
.tools .button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 483px;
	height: 54px;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	background-image: linear-gradient(90deg, #537D9D, #8AA7BD);
	box-shadow: 2px 3px 0px #376383, 4px 10px 8px rgba(0, 0, 0, 0.17);
	transition: transform 0.3s ease-in-out;
}
.tools .button:hover {
	transform: scale(1.05);
}
@media (max-width: 768px) {
	.tools .tools-container {
		width: 92vw;
		border-radius: 10vw;
		margin-top: -6vw;
	}
	.tools .sub-title h3 {
		font-size: clamp(16px, 6vw, 20px);
	}
	.tools .sub-title p {
		font-size: clamp(11px, 3.5vw, 14px);
		padding: 0 4vw;
	}
	.tools .sim-container {
		margin: 0 3vw;
		padding: 12vw 0;
		border-radius: 6vw;
		height: inherit;
		gap: 10vw;
	}
	.tools .box p {
		font-size: clamp(12px, 4vw, 16px);
		padding: 0 4vw 3vw;
	}
	.tools .button {
		width: 95%;
		max-width: 400px;
		font-size: clamp(16px, 5vw, 19px);
	}
}

.chart {
	width: 100vw;
	height: 408px;
}
.chart::before, .chart::after {
	display: none;
}
.chart .chart-txt {
	position: absolute;
	width: 827px;
	height: auto;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
@media (min-width: 769px) {
	.chart .bg {
		height: 100%;
		top: 30%;
		left: 50%;
		transform: translate(-50%, -30%);
		background-image: url(/assets/images/original/baikyaku-kaikae-lp_02_chart_bg_pc.jpg);
	}
}
@media (max-width: 768px) {
	.chart {
		width: 100%;
	}
	.chart .chart-txt {
		width: 85%;
		top: 34px;
	}
}

footer p {
	padding-left: 10px;
	font-size: 16px;
}
footer small {
	font-size: 10px;
}
footer .ssl {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 0;
	background: #f6f6f6;
}
footer .footer-bottom {
	display: flex;
	width: 1000px;
	height: 56px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 768px) {
	footer p {
		font-size: clamp(11px, 2vw, 14px);
	}
}

/* チャットボット表示調整 */
#chatbot-toggle_button,
#sp_chat_tab {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
@media screen and (max-width: 768px) {
	#chatbot-toggle_button,
	.oksky-chat-container--minimized {
		bottom: 120px !important;
	}
}

