﻿@charset "utf-8";

/* -----------------------------------------------------------
    ターゲット別3ページ共通
-------------------------------------------------------------- */

/* -----------------------------------------------------------
    cmn-service-sticky
-------------------------------------------------------------- */
.cmn-service-sticky {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 50px 0 0;
}

.service-sticky-contents {
	width: 900px;
}

.service-sticky-nav {
	position: -webkit-sticky;
	position: sticky;
	top: 110px;
	width: 220px;
	height: 400px;
}

.service-sticky-nav .menuttl {
	font-size: 1.9rem;
	font-weight: bold;
	padding: 0 0 12px;
	color: var(--main);
	border-bottom: 1px solid var(--border1);
}

.service-sticky-nav a {
	display: block;
	color: var(--cmnblack);
	padding: 22px 0 22px 15px;
	position: relative;
	border-bottom: 1px solid var(--border1);
}

.service-sticky-nav a:hover {
	background: var(--cmnbg7);
	color: var(--sub2);
}

.service-sticky-nav a::before {
	font: 900 1.1rem/1 var(--webicon);
	position: absolute;
	top: 50%;
	left: 0;
	content: '\f054';
	transition: .05s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--main);
}

.service-sticky-nav a:hover::before {
	color: var(--sub2);
}

.service-sticky-nav a span {
	font-size: 1.8rem;
	position: relative;
	display: flex;
	padding: 0 0 0 15px;
	color: var(--cmnblack);
	align-items: center;
	gap: 10px;
}

.service-sticky-nav a span::before {
	font: 900 1.1rem/1 var(--webicon);
	position: absolute;
	top: 55%;
	left: 0;
	content: '\f054';
	transition: .05s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--main);
}

.service-sticky-nav ul {
	display: flex;
	flex-direction: column;
}

.service-sticky-box {
	margin: 80px 0 0;
}

.service-sticky-subttl {
	border-radius: 2px;
	font-size: 2.2rem;
	font-weight: bold;
	margin: 0 0 20px;
	padding: 15px 20px;
	color: #fff;
	background: var(--main);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.cmn-service-sticky {
		flex-direction: column;
		margin: 0;
	}

	.service-sticky-contents {
		width: 100%;
	}

	.service-sticky-nav {
		position: -webkit-static;
		position: static;
		top: auto;
		width: 100%;
		height: auto;
	}

	.service-sticky-nav .menuttl {
		display: none;
	}

	.service-sticky-nav a {
		padding: 8px 0 18px 25px;
	}

	.service-sticky-nav a::before {
		content: "\f078";
	}

	.service-sticky-nav a span {
		font-size: 1.6rem;
		padding: 0 0 0 12px;
	}

	.service-sticky-nav ul {
		gap: 10px;
	}

	.service-sticky-box {
		border-radius: 0;
		margin: 40px 0 0;
	}

	.service-sticky-subttl {
		font-size: 1.8rem;
		margin: 0 0 15px;
		padding: 15px 15px;
	}
}


/* -----------------------------------------------------------
    service-area
-------------------------------------------------------------- */
.service-area {
	padding: 200px 0 0;
}

/*service-table------------------------*/
.service-area .service-table {
	border-top: 1px solid var(--border2);
	display: flex;
	margin: 50px 0 0;
	flex-wrap: wrap;
	gap: 0 40px;
}

.service-area .service-table .service-dl {
	border-bottom: 1px solid var(--border2);
	display: flex;
	width: calc((100% - 40px) / 2);
	padding: 35px 0;
	letter-spacing: .05em;
}

.service-area .service-table .service-dl.w100 {
	width: 100%;
}

.service-area .service-table .service-dt {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	width: 280px;
	color: var(--txtgray);
	flex-shrink: 0;
}

.service-area .service-table .service-dd {
	line-height: 2;
	flex-grow: 1;
}

.service-area .service-table .cmn-list-dot {
	gap: 13px 50px;
}

.service-area .service-table .cmn-list-dot li {
	font-size: 1.7rem;
	padding: 0 0 0 15px;
}

.service-area .service-table .cmn-list-dot li::before {
	top: 8px;
	width: 7px;
	height: 7px;
}

/*service-sidework------------------------*/
.service-area .service-sidework {
	align-items: center;
	display: flex;
	gap: 30px;
}

.service-area .sidework-pmark {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
}

.service-area .sidework-pmark:hover {
	opacity: .7;
}

.service-area .sidework-pmark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*service-sidework-detail-------------------*/
.service-sidework-detail {
	padding: 40px 0 0;
	display: none;
}

.sidework-detail {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 20px;
}

.service-sidework-detail figure {
	align-items: center;
	display: flex;
	gap: 15px;
	width: calc((100% - 40px) / 2);
}

.service-sidework-detail .sidework-img {
	flex-shrink: 0;
	width: 150px;
	height: 130px;
}

.service-sidework-detail .sidework-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-sidework-detail .sidework-dt {
	color: var(--main);
	font-weight: bold;
	font-size: 1.7rem;
}

.service-sidework-detail .sidework-dd {
	font-size: 1.5rem;
	line-height: 1.8;
	margin: 3px 0 0;
}

.service-sidework-more {
	border-radius: 2px;
	border: 1px solid;
	cursor: pointer;
	display: block;
	position: relative;
	padding: 5px;
	margin: 10px 0 0;
	text-align: center;
	width: 180px;
}

.open-sidework-more .service-sidework-more {
	display: none;
}

.service-sidework-more .plus {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 15px;
}

.service-sidework-more .plus span {
	display: block;
	position: relative;
	width: 13px;
	height: 13px;
}

.service-sidework-more .plus span:before, .service-sidework-more .plus span:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: var(--cmnblack);
}

.service-sidework-more .plus span:before {
	width: 1px;
	height: 13px;
}

.service-sidework-more .plus span:after {
	width: 13px;
	height: 1px;
}

@media screen and (max-width: 768px) {
	.service-area {
		padding: 120px 0 0;
	}

	.service-area .cmn-sec-description {
		margin: 30px 0 0;
	}

	.service-area .service-table {
		margin: 35px 0 0;
		gap: 0;
	}

	.service-area .service-table .service-dl {
		display: block;
		width: 100%;
		padding: 30px 0;
	}

	.service-area .service-table .service-dt {
		font-size: 1.9rem;
		line-height: 1.5;
		width: 100%;
		padding: 0 0 10px;
	}

	.service-area .service-table .service-dd {
		font-size: 1.5rem;
		line-height: 1.6;
		letter-spacing: .07em;
	}

	.service-area .service-table .cmn-list-dot {
		gap: 6px 20px;
	}

	.service-area .service-table .cmn-list-dot li {
		font-size: 1.6rem;
		padding: 0 0 0 12px;
	}

	/*service-sidework------------------------*/
	.service-area .service-sidework {
		display: block;
		margin: 15px 0 0;
	}

	.service-area .sidework-pmark {
		float: left;
		margin: 0 15px 10px 0;
		width: 70px;
		height: 70px;
	}

	.service-area .service-sidework figcaption {
		line-height: 1.9;
	}

	.service-sidework-more {
		width: 100%;
		margin: 15px 0 0;
	}

	/*service-sidework-detail-------------------*/
	.service-sidework-detail {
		padding: 20px 0 0;
	}

	.sidework-detail {
		gap: 25px 10px;
	}

	.service-sidework-detail figure {
		width: 100%;
	}

	.service-sidework-detail .sidework-img {
		aspect-ratio: 1/1;
		width: 40%;
		height: auto;
		margin: 0;
	}

	.service-sidework-detail .sidework-dt {
		font-size: 1.6rem;
	}

	.service-sidework-detail .sidework-dd {
		font-size: 1.4rem;
		line-height: 1.7;
		margin: 4px 0 0;
	}
}

/* -----------------------------------------------------------
    gps-area
-------------------------------------------------------------- */
.gps-area {
	margin: 120px 0 0;
	padding: 120px 0;
}

.gps-area .gps-point {
	display: flex;
	gap: 40px;
	margin: 50px 0 0;
}

.gps-area .gps-point-item {
	border-radius: 6px;
	background: #fff;
	width: calc((100% - 40px) / 2);
	padding: 33px 40px 35px 40px;
}

.gps-area .gps-point-img {
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
	height: 250px;
}

.gps-area .gps-point-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gps-area .gps-point-subttl {
	text-align: center;
}

.gps-area .gps-point-subttl .en {
	font-size: 2rem;
	font-weight: bold;
	font-family: var(--serif);
	color: var(--main);
	line-height: 1.6;
}

.gps-area .gps-point-subttl .ja {
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .03em;
	margin: 3px 0 0;
}

.gps-area .gps-point-item figure {
	margin: 20px 0 0;
}

.gps-area .gps-point-item figcaption {
	margin: 25px 0 0;
	line-height: 2.2;
	letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
	.gps-area {
		margin: 60px 0 0;
		padding: 60px 0;
	}

	.gps-area .gps-point {
		flex-direction: column;
		gap: 20px;
		margin: 30px 0 0;
	}

	.gps-area .gps-point-item {
		width: 100%;
		padding: 25px 20px;
	}

	.gps-area .gps-point-img {
		aspect-ratio: 3/1.5;
		width: 100%;
		height: auto;
	}

	.gps-area .gps-point-subttl .en {
		font-size: 1.7rem;
		line-height: 1.5;
	}

	.gps-area .gps-point-subttl .ja {
		font-size: 2rem;
	}

	.gps-area .gps-point-item figcaption {
		font-size: 1.5rem;
		margin: 20px 0 0;
		line-height: 2.2;
		letter-spacing: .07em;
	}
}

/* -----------------------------------------------------------
   map-area
-------------------------------------------------------------- */
.map-area {
	margin: 100px 0 0;
}

.map-area [data-mapblock="sapporo"] {
	margin: 60px 0 0;
}

.map-area [data-mapblock="other"] {
	margin: 100px 0 0;
}

.map-area [data-mapblock="ex"] {
	margin: 100px 0 0;
}

.map-area .map-block-ttl {
	color: var(--main);
	border-bottom: 1px solid var(--main);
	text-align: center;
	font-size: 3.5rem;
	font-weight: bold;
	padding: 0 0 20px;
}

.map-area .cmn-map-note {
	margin: 40px 0 0;
	text-align: center;
}

/*map-ex--------------------------*/
.map-area .map-ex {
	display: flex;
	gap: 40px;
	margin: 40px 0 0;
}

.map-area .map-ex-box {
	border-radius: 4px;
	border: 1px solid var(--border3);
	width: calc((100% - 40px) / 2);
	padding: 38px 40px 35px 40px;
}

.map-area .map-ex-ttl {
	font-size: 2.7rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .03em;
	text-align: center;
}

.map-area .map-ex-txt {
	text-align: center;
	margin: 13px 0 0;
	line-height: 1.9;
}

.map-area .map-ex-item {
	margin: 30px 0 0;
}

.map-area .map-ex-img {
	aspect-ratio: 3/1.2;
	width: 100%;
	margin: 0 0 30px;
}

.map-area .map-ex-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*fukidashi--------------------------*/
.fukidashi {
	align-items: center;
	display: flex;
	gap: 30px;
}

.fukidashi.reverse {
	flex-direction: row-reverse;
}

.fukidashi .fukidashi-txt {
	border-radius: 2px;
	background: var(--cmnbg2);
	padding: 15px 20px;
	position: relative;
}

.fukidashi .fukidashi-txt::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
}

.fukidashi.positive .fukidashi-txt::before {
	border-width: 20px 45px 20px 0;
	border-color: transparent var(--cmnbg2) transparent transparent;
	left: -18px;
}

.fukidashi.reverse .fukidashi-txt::before {
	border-width: 20px 0 20px 45px;
	border-color: transparent transparent transparent var(--cmnbg2);
	right: -18px;
}

.fukidashi .fukidashi-txt p {
	line-height: 1.7;
	position: relative;
}

.fukidashi .fukidashi-pic {
	flex-shrink: 0;
}

[ data-mapex="ex1"] .ill01 img {
	aspect-ratio: 300/377;
	width: 67px;
}

[ data-mapex="ex1"] .ill02 img {
	aspect-ratio: 300/542;
	width: 60px;
}

[ data-mapex="ex2"] .ill01 img {
	aspect-ratio: 300/434;
	width: 60px;
}

[ data-mapex="ex2"] .ill02 img {
	aspect-ratio: 300/549;
	width: 60px;
}

@media screen and (max-width: 768px) {
	.map-area {
		margin: 50px 0 0;
	}

	.map-area [data-mapblock="sapporo"] {
		margin: 30px 0 0;
	}

	.map-area [data-mapblock="other"] {
		margin: 45px 0 0;
	}

	.map-area [data-mapblock="ex"] {
		margin: 40px 0 0;
	}

	.map-area .map-block-ttl {
		font-size: 2rem;
		background: var(--main);
		color: #fff;
		padding: 12px 10px 10px;
		border-radius: 2px;
	}

	.map-area .cmn-map-note {
		margin: 20px 0 0;
		text-align: left;
	}

	/*map-ex--------------------------*/
	.map-area .map-ex {
		flex-direction: column;
		gap: 25px;
		margin: 20px 0 0;
	}

	.map-area .map-ex-box {
		width: 100%;
		padding: 25px 20px;
	}

	.map-area .map-ex-ttl {
		font-size: 2.2rem;
	}

	.map-area .map-ex-txt {
		text-align: left;
		font-size: 1.5rem;
	}

	.map-area .map-ex-item {
		margin: 20px 0 0;
	}

	.map-area .map-ex-img {
		width: 100%;
		margin: 0 0 20px;
	}

	/*fukidashi--------------------------*/
	.fukidashi {
		gap: 20px;
	}

	.fukidashi .fukidashi-txt {
		font-size: 1.5rem;
		padding: 15px;
	}

	.fukidashi.positive .fukidashi-txt::before {
		border-width: 20px 40px 20px 0;
		left: -13px;
	}

	.fukidashi.reverse .fukidashi-txt::before {
		border-width: 20px 0 20px 40px;
		right: -13px;
	}

	[ data-mapex="ex1"] .ill01 img {
		width: 48px;
	}

	[ data-mapex="ex1"] .ill02 img {
		width: 45px;
	}

	[ data-mapex="ex2"] .ill01 img {
		width: 45px;
	}

	[ data-mapex="ex2"] .ill02 img {
		width: 45px;
	}
}

/* -----------------------------------------------------------
    segment-area
-------------------------------------------------------------- */
.segment-area {
	margin: 120px 0 0;
	background: var(--cmnbg5);
	padding: 100px 0 110px;
}

.segment-area .segment-intro {
	text-align: center;
	margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
	.segment-area {
		margin: 60px 0 0;
		padding: 60px 0;
	}

	.segment-area .segment-intro {
		text-align: left;
		margin: 0;
	}
}

/* -----------------------------------------------------------
    schedule-area
-------------------------------------------------------------- */
.schedule-area {
	margin: 120px 0 0;
}

.schedule-area .carry-contents {
	margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
	.schedule-area {
		margin: 60px 0 0;
	}

	.schedule-area .carry-contents {
		margin: 20px 0 0;
	}
}

/* -----------------------------------------------------------
    price-area
-------------------------------------------------------------- */
.price-area {
	margin: 120px 0 0;
}

[data-pricebox="flyer"].service-sticky-box {
	margin: 0;
}

.price-area .cmn-service-table-unit, .price-area .cmn-service-table-fix {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.price-area {
		margin: 60px 0 0;
	}

	.price-area .cmn-section-ttl {
		margin-bottom: 15px !important;
	}

	.price-area .service-sticky-contents {
		margin-top: 30px;
	}

	.price-area .service-sticky-box[data-pricebox="dm"], .price-area .service-sticky-box[data-pricebox="fold"] {
		margin: 30px 0 0;
	}

	.price-area .cmn-service-table-unit {
		padding: 0 20px 0 0;
	}

	.price-area .price-add-txt {
		padding: 0 20px;
	}

	.price-area .price-add-list, .price-area .price-add-list2 {
		padding: 0 20px;
	}
}

/* -----------------------------------------------------------
    work
-------------------------------------------------------------- */
.work-area {
	margin: 120px 0 0;
}

@media screen and (max-width: 768px) {
	.work-area {
		margin: 60px 0 0;
	}
}

/* -----------------------------------------------------------
    caution-area
-------------------------------------------------------------- */
.caution-area {
	padding: 110px 0;
	margin: 110px 0 0;
}

@media screen and (max-width: 768px) {
	.caution-area {
		margin: 60px 0 0;
		padding: 60px 0;
	}
	
	.caution-area .cmn-caution-contents{
		margin-top: 25px;
	}

	.cmn-caution [data-cautionbox="standard"] {
		margin-top: 0 !important;
	}
}

/* -----------------------------------------------------------
    flow
-------------------------------------------------------------- */
.flow-area {
	margin: 100px 0 0;
}

.flow-wrap {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--main);
	margin: 50px 0 0;
}

.flow-area .flow-nav {
	border-bottom: 1px solid var(--main);
	display: flex;
	width: 100%;
}

.flow-area .flow-nav-item {
	background: var(--cmnbg5);
	display: flex;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	width: calc(100% / 2);
	padding: 21px 15px 18px;
	font-size: 1.8rem;
	font-weight: bold;
}

.flow-area .flow-nav-item.current {
	background: var(--main);
	color: #fff;
}

.flow-area .flow-nav-item span {
	position: relative;
	padding: 0 0 0 20px;
}

.flow-area .flow-nav-item span::before {
	content: "\f078";
	color: var(--cmnblack);
	font: 900 1.3rem/1 var(--webicon);
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	left: 0;
}

.flow-area .flow-nav-item.current span::before {
	color: #fff;
}

.flow-area .flow-box-item {
	background: #fff;
	display: none;
	padding: 50px;
	flex-wrap: wrap;
	gap: 35px 35px;
}

.flow-area .flow-box-item.current {
	display: flex;
}

.flow-area .flow-box-detail {
	width: calc((100% - 70px) / 3);
}

.flow-area .flow-box-img {
	width: 100%;
	aspect-ratio: 3/2;
}

.flow-area .flow-box-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flow-area .flow-box-num {
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .03em;
}

.flow-area .flow-box-num span {
	align-items: center;
	color: var(--main);
	display: flex;
	flex-shrink: 0;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: var(--serif);
	justify-content: center;
	width: 26px;
	height: 26px;
	line-height: 1;
	position: relative;
	margin: 0 auto 10px;
}

.flow-area .flow-box-num span::before {
	border: 1px solid var(--main);
	content: "";
	width: 26px;
	height: 26px;
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%)rotate(45deg);
	transform: translate(-50%, -50%)rotate(45deg);
}

.flow-area .flow-box-img {
	border-radius: 2px;
	overflow: hidden;
	margin: 15px 0 0;
}

.flow-area .flow-box-note {
	margin: 15px 0 0;
	font-size: 1.5rem;
	letter-spacing: .07em;
}

@media screen and (min-width: 769px) {
	.flow-area .readmore-btn {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.flow-area {
		margin: 50px 0 0;
	}

	.flow-wrap {
		margin: 30px 0 0;
	}

	.flow-area .flow-nav-item {
		padding: 15px 10px 13px;
		font-size: 1.6rem;
		font-weight: bold;
	}

	.flow-area .flow-box-item {
		padding: 35px 20px 15px;
		gap: 20px;
	}

	.flow-area .flow-box-detail {
		width: 100%;
		border-bottom: 1px solid var(--border1);
		padding: 0 0 15px;
	}

	.flow-area .flow-box-item .flow-box-detail:last-of-type {
		border-bottom: none;
	}

	.flow-area .flow-box-img {
		aspect-ratio: 3/2.3;
		width: 50%;
		float: left;
		margin: 0 15px 5px 0;
	}

	.flow-area .flow-box-num {
		font-size: 1.9rem;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
	}

	.flow-area .flow-box-num span {
		font-size: 1.4rem;
		font-weight: bold;
		width: 18px;
		height: 18px;
		line-height: 1;
		margin: 0;
	}

	.flow-area .flow-box-num span::before {
		width: 18px;
		height: 18px;
	}

	.flow-area .flow-box-note {
		margin: 0;
		line-height: 1.7;
		letter-spacing: .07em;
	}

	.flow-area .flow-box-contents {
		display: none;
		padding: 10px 0;
	}

	.flow-area .flow-box-item .flow-box-detail:first-of-type .flow-box-contents {
		display: block !important;
	}

	.active-flow-contents .readmore-btn {
		display: none !important;
	}

	.flow-area .readmore-btn {
		align-items: center;
		border: 1px solid;
		display: flex;
		justify-content: center;
		margin: 0 auto;
		width: 100%;
		max-width: 280px;
		height: 50px;
		position: relative;
	}

	.flow-area .readmore-btn .plus {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 15px;
	}

	.flow-area .readmore-btn .plus span {
		display: block;
		position: relative;
		width: 15px;
		height: 15px;
	}

	.flow-area .readmore-btn .plus span::before, .flow-area .readmore-btn .plus span::after {
		display: block;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		background-color: var(--cmnblack);
	}

	.flow-area .readmore-btn .plus span::before {
		width: 1px;
		height: 15px;
	}

	.flow-area .readmore-btn .plus span::after {
		width: 15px;
		height: 1px;
	}
}

/* -----------------------------------------------------------
    強み
-------------------------------------------------------------- */
.strengths-area {
	padding: 110px 0 110px;
	margin: 110px 0 0;
}

.strengths-area .strengths-wrap {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 50px 0 0;
}

.strengths-area .strengths-box {
	align-items: stretch;
	border-radius: 4px;
	background: #fff;
	display: flex;
	overflow: hidden;
}

.strengths-txt .num {
	align-items: center;
	display: flex;
	gap: 4px;
	color: var(--main);
	font: 700 1.6rem /1 var(--serif);
	letter-spacing: .03em;
}

.strengths-txt .num span {
	font-size: 2.2rem;
}

.strengths-txt .ttl {
	font-weight: bold;
	font-size: 2.8rem;
	line-height: 1.5;
	letter-spacing: .05em;
	margin: 10px 0 0;
}

.strengths-area .strengths-img {
	flex-shrink: 0;
	aspect-ratio: 3/1.8;
	width: 45%;
	height: 100%;
}

.strengths-area .trg {
	width: 100%;
	height: 100%;
}

.strengths-area .trg::after {
	background: var(--main);
}

.strengths-area .strengths-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.strengths-area .strengths-txt {
	padding: 40px 50px;
}

.strengths-area .strengths-txt .note {
	margin: 15px 0 0;
}

@media screen and (max-width: 768px) {
	.strengths-area {
		margin: 50px 0 0;
		padding: 50px 0;
	}

	.strengths-area .strengths-wrap {
		gap: 30px;
		margin: 25px 0 0;
	}

	.strengths-area .strengths-box {
		flex-direction: column;
	}

	.strengths-area .strengths-img {
		width: 100%;
		height: auto;
	}

	.strengths-area .strengths-txt {
		padding: 25px 20px 20px;
	}

	.strengths-txt .num {
		font-size: 1.5rem;
	}

	.strengths-txt .num span {
		font-size: 2.1rem;
	}

	.strengths-txt .ttl {
		font-size: 2.1rem;
	}

	.strengths-area .strengths-txt .note {
		font-size: 1.5rem;
		margin: 18px 0 0;
		line-height: 2.2;
	}
}

/* -----------------------------------------------------------
    faq
-------------------------------------------------------------- */
.faq-area {
	margin: 100px 0;
}

@media screen and (max-width: 768px) {
	.faq-area {
		margin: 60px 0 0;
	}
}