@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD NEW
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.1.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*===============================================================================
*** ショート動画
================================================================================*/
.service__video {
	margin-bottom: var(--g-sec--lg);
}
.c-video.--service-shorts {
	aspect-ratio: 9 / 16;
	max-width: 35rem;
	margin-inline: auto;
}

/*===============================================================================
*** こんなお悩みはありませんか？
================================================================================*/
/* 背景 */
.s-trouble {
	position: relative;
	padding: var(--g-sec--lg) 0;
	margin-bottom: var(--g-sec--lg);
}
.s-trouble::before {
	position: absolute;
	content: "";
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: #5c5c5c;
	z-index: -1000;
}

/* タイトル */
.s-trouble__ttl {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--c-light);
	text-align: center;
	margin-bottom: var(--g-sec--md);
}
.s-trouble__ttl.--yuigon-ttl {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (min-width: 960px) {
	.s-trouble__ttl {
		display: block;
	}
}

/* レイアウト設定 */
.s-trouble__content {
	position: relative;
	--count: 1;
	--gap: clamp(1.75rem, 1.14vw + 1.47rem, 2.5rem);
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	max-width: 28.75rem;
	margin-inline: auto;
	justify-content: center;
}
.s-trouble__content::before {
	position: absolute;
	content: "";
	top: -5rem;
	right: 0;
	width: clamp(3.25rem, 2.29vw + 2.69rem, 4.75rem);
	height: 100%;
	background: url(/wp-content/uploads/s-trouble__img.png);
	background-repeat: no-repeat no-repeat;
	background-size: contain;
	z-index: -999;
}
.--yuigon.s-trouble__content::before {
	content: none;
}
@media (min-width: 600px) {
	.s-trouble__content::before {
		top: -5.5rem;
	}
}
@media (min-width: 960px) {
	.s-trouble__content {
		--count: 2;
		justify-content: unset;
		max-width: 60rem;
	}
	.s-trouble__content::before {
		top: -6.25rem;
	}
	.--yuigon.s-trouble__content::before {
		content: "";
	}
}

/* カード */
.s-trouble__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 8px;
	max-width: 28.75rem;
	width: calc((100% - var(--gap) * (var(--count) - 1)) / var(--count));
	padding: clamp(2.5rem, 0.76vw + 2.31rem, 3rem) 0;
	background: var(--c-light);
}
.s-trouble__card-text {
	text-align: center;
	font-size: clamp(1.25rem, 0.38vw + 1.16rem, 1.5rem);
	font-weight: var(--fw-lg);
}
.s-trouble__card-strong {
	color: var(--c-main);
	font-size: clamp(1.5rem, 0.38vw + 1.41rem, 1.75rem);
	font-weight: var(--fw-xl);
	border-bottom: 0.25rem dashed var(--c-blue--dark);
}

/*===============================================================================
*** このサービスでできること
================================================================================*/
/* 背景 */
.s-syousai {
	position: relative;
	padding: var(--g-sec--sm) 0 0;
	margin-bottom: clamp(1.75rem, 1.14vw + 1.47rem, 2.5rem);
}
.s-syousai::before {
	position: absolute;
	content: "";
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: var(--c-green--light);
	z-index: -1000;
}
.s-syousai.--yellow::before {
	background: var(--c-act03);
}
.s-syousai.--blue::before {
	background: #e0edfa;
}
@media (min-width: 960px) {
	.s-syousai {
		border-radius: 16px;
		padding: var(--g-sec--sm) 1rem;
		background: var(--c-green--light);
	}
	.s-syousai.--yellow {
		background: var(--c-act03);
	}
	.s-syousai.--blue {
		background: #e0edfa;
	}
	.s-syousai::before {
		content: none;
	}
}

/* タイトル */
.s-syousai__ttl {
	text-align: center;
	margin-bottom: clamp(1.5rem, 0.76vw + 1.31rem, 2rem);
}

/* レイアウト設定 */
.s-syousai__content {
	padding: clamp(1.25rem, 0.76vw + 1.06rem, 1.75rem)
		clamp(1rem, 1.14vw + 0.72rem, 1.75rem);
	margin-bottom: var(--g-sec--sm);
	border-radius: 8px;
	background: var(--c-light);
	max-width: 70rem;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	row-gap: clamp(1rem, 0.38vw + 0.91rem, 1.25rem);
}
.s-syousai__content-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
@media (min-width: 960px) {
	.s-syousai__content {
		display: grid;
		grid-template-columns: max-content 1fr; /* 1列目は中身の最大幅、2列目は残り全部 */
		gap: 5rem;
		row-gap: clamp(1rem, 0.38vw + 0.91rem, 1.25rem);
	}
	.s-syousai__content-box {
		display: grid;
		grid-template-columns: subgrid; /* 要素内でdtの幅が「一番長いもの」に揃える */
		grid-column: 1 / -1; /* 2列分を貫通して結合 */
		align-items: center;
		gap: unset;
	}
}

/* dt・ddの設定 */
.s-syousai__content-dt {
	position: relative;
	padding-left: 1.5rem;
	font-size: clamp(1.5rem, 0.38vw + 1.41rem, 1.75rem);
	font-weight: var(--fw-lg);
}
.s-syousai__content-dt::before {
	position: absolute;
	content: "";
	width: 0.75rem;
	height: 0.75rem;
	background: var(--c-green);
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100px;
	left: 0;
}
.s-syousai__content-dt.--yellow::before {
	background: var(--c-act01);
}
.s-syousai__content-dt.--blue::before {
	background: var(--c-act02--dark);
}

.s-syousai__content-dd {
	padding-left: 1.5rem;
	font-size: clamp(1.25rem, 0.38vw + 1.16rem, 1.5rem);
}
@media (min-width: 960px) {
	.s-syousai__content-dd {
		padding-left: unset;
	}
}

/* 補足テキスト部分（上記は一例です） */
.s-syousai__follow {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-inline: auto;
	gap: 1rem;
	max-width: 30rem;
}
.s-syousai__follow-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 1rem;
}
.s-syousai__follow-text {
	position: relative;
	font-size: clamp(1.5rem, 0.38vw + 1.41rem, 1.75rem);
	font-weight: var(--fw-xl);
}
.s-syousai__follow-text-sm {
	font-size: clamp(1.25rem, 0.76vw + 1.06rem, 1.75rem);
	font-weight: var(--fw-lg);
}
.s-syousai__follow-text::before {
	position: absolute;
	content: "";
	left: -2rem;
	top: -7px;
	width: clamp(1.5rem, 2.67vw + 0.85rem, 3.25rem);
	height: 100%;
	background: url(/wp-content/uploads/s-syousai-01.png);
	background-repeat: no-repeat no-repeat;
	background-size: contain;
}
.s-syousai__img {
	width: 8.5rem;
}
@media (min-width: 600px) {
	.s-syousai__follow-text::before {
		left: -2.75rem;
	}
}
@media (min-width: 960px) {
	.s-syousai__follow {
		max-width: unset;
	}
	.s-syousai__follow-text-sm {
		font-weight: var(--fw-xl);
	}
	.s-syousai__follow-text::before {
		left: -4rem;
		top: -8px;
	}
	.s-syousai__img {
		display: none;
	}
}

/*===============================================================================
*** サービスの流れ
================================================================================*/
/* 背景 */
.s-flow {
	position: relative;
	padding: var(--g-sec--sm) 0;
	margin-bottom: clamp(1.75rem, 1.14vw + 1.47rem, 2.5rem);
}
.s-flow::before {
	position: absolute;
	content: "";
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: #f5eed3;
	z-index: -1000;
}
.s-flow.--yellow::before {
	background: #d6dfea;
}
@media (min-width: 960px) {
	.s-flow {
		border-radius: 16px;
		padding: var(--g-sec--sm) 1rem;
		background: #f5eed3;
	}
	.s-flow.--yellow {
		background: #d6dfea;
	}
	.s-flow::before {
		content: none;
	}
}

/* タイトル */
.s-flow__ttl {
	text-align: center;
	margin-bottom: clamp(1.5rem, 0.76vw + 1.31rem, 2rem);
}
.s-flow__sub-ttl {
	text-align: center;
	font-size: clamp(1.25rem, 0.38vw + 1.16rem, 1.5rem);
	margin-bottom: clamp(1rem, 0.38vw + 0.91rem, 1.25rem);
}

/* レイアウト設定 */
.s-flow__content {
	padding: clamp(1.25rem, 0.76vw + 1.06rem, 1.75rem)
		clamp(1rem, 1.14vw + 0.72rem, 1.75rem);
	border-radius: 8px;
	background: var(--c-light);
	max-width: 70rem;
	width: 100%;
	margin-inline: auto;
	display: grid;
	justify-content: center;
	grid-template-columns: minmax(0, max-content);
	gap: 0.75rem;
}
.s-flow__content-box {
	display: flex;
	gap: 0.5rem;
	font-size: clamp(1.25rem, 0.38vw + 1.16rem, 1.5rem);
	font-weight: var(--fw-lg);
}
.s-flow__content-arrow {
	width: 1rem;
	height: 0.75rem;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--c-green);
	justify-self: center;
}
.s-flow__content-arrow.--yellow {
	background: var(--c-act01);
}
.s-flow__content-arrow.--blue {
	background: var(--c-act02--dark);
}

/* 流れが2つあるバージョン */
.s-flow .s-flow__2flow-ver:not(:last-of-type) {
	margin-bottom: var(--g-sec--sm);
}