/*===============================================================================
***MV
================================================================================*/
/*===============================
* 背景画像
* =================================*/
.f-mv__inner{
	position: relative;
	/* ヘッダーの画面からの位置 + ヘッダーの高さ + 下余白と同じ値 */
	padding-top: calc( var(--header-pos-y) + 60px + var(--g-sec--xs) );
	padding-bottom: var(--g-sec--xs);
}
.f-mv__bgi{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	z-index: -1;
	content: "";
	max-width: 100vw;
	width: 100vw;
	height: 100%;
}
.f-mv__bgi img{
	width: 100%;
	height: 100%;
	object-fit: cover;

}

/*===============================
* カラム
* =================================*/
.f-mv__cols{
	position: relative;
	margin-bottom: 1.5rem;
}
@media (min-width: 600px){
	.f-mv__cols{
		width: 100vw;
		max-width: 90vw !important;
		margin-inline: calc(50% - 42vw);
	}
}

/* 写真 */
.f-mv__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
@media (min-width: 600px){
	.f-mv__image{
		width: 58.75%;
		margin-left: auto;
	}
}

/* コンテンツ */
@media (min-width: 600px){
	.f-mv__content{
		position: absolute;
		top: 65%;
		left: 0;
		transform: translateY(-50%);
	}
}

/* タイトル */
.f-mv__title{
	max-width: 13em;
	margin-bottom: 2rem;
	line-height: 140%;
	color: var(--c-main);
	font-size: clamp(1.825rem, 0.632rem + 3.19vw, 3.25rem);
}

/* テキストエリア */
.f-mv__textArea{
	max-width: 25em;
	line-height: var(--lh-xl);
	font-weight: var(--fw-lg);
	font-size: clamp(1rem, 0.822rem + 0.48vw, 1.25rem);
}
.f-mv__textArea strong{
	color: var(--c-main);
}

/*===============================
* 新着情報
* =================================*/
.f-mv-post{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.25rem;
	padding: 1rem 2rem;
	background: var(--c-light);
	border: 2px solid var(--c-main--light);
	border-radius: 99999px;
	overflow: hidden;
}
@media (min-width: 600px){
	.f-mv-post{
		position: relative;
		right: calc( 50% - 50vw );
		max-width: var(--width-sm);
		margin-left: auto;
		border-right-width: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
}
.f-mv-post__btn{
	--c-current: var(--c-dark);
	--arrow-size: .153em;
	--arrow-weight: 1px;
	--arrow-color: var(--c-light);
	display: inline-flex;
	align-items: center;
	gap: .75em;
	min-width: fit-content;
	padding: 0.5em 0;
	font-size: .75rem;
	font-weight: var(--fw-lg);
	color: var(--c-current);
	cursor: pointer;
	transition: opacity var(--ani-t--normal) ease-out;
}
/* アニメーション */
.f-mv-post__btn:is(:hover, :focus){
	opacity: .7;
}
/* サークル */
.f-mv-post__btn-icon{
	position: relative;
	display: inline-block;
	width: calc( var(--arrow-size) * 6.54 );
	aspect-ratio: 1;
	background: var(--c-current);
	border-radius: 50%;
}
/* 矢印 */
.f-mv-post__btn-icon::before{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	display: inline-block;
	width: var(--arrow-size);
	height: var(--arrow-size);
	border-top: var(--arrow-weight) solid var(--arrow-color);
	border-right: var(--arrow-weight) solid var(--arrow-color);
	transform: translate(-65%, -50%) rotate(45deg);
}



/*===============================================================================
***MISSION
================================================================================*/
.f-mission{
	margin-bottom: var(--g-sec--md);
}
.f-mission__inner{
	position: relative;
	padding: var(--g-sec--lg) 0;
}

/*===============================
* 背景画像
* =================================*/
.f-mission__bgi{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 100vw;
	height: 100%;
}
.f-mission__bgi img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/*===============================
* ヘッド
* =================================*/
.f-mission__head{
	margin-bottom: var(--g-sec--sm);
}
.f-mission__title{
	text-align: center;
}
.f-mission__title strong{
	color: var(--c-main);
}

/*===============================
* ボディ
* =================================*/
.f-mission__content{
	max-width: 90%;
	margin-inline: auto;
}
.f-mission__content .c-autoWrap{
	display: flex;
	flex-wrap: wrap;
}
.f-mission__content .c-autoWrap:not(:last-of-type){
	margin-bottom: 1rem;
}
@media (min-width: 600px){
	.f-mission__content .c-autoWrap{
		justify-content: center;
		text-align: center;
	}
	.f-mission__content .c-autoWrap:not(:last-of-type){
		margin-bottom: 0;
	}
}



/*===============================================================================
***VALUE
================================================================================*/
.f-value__inner{
	position: relative;
}

/*===============================
* ヘッド
* =================================*/
.f-value__head{
	margin-bottom: var(--g-sec--xs);
	font-weight: var(--fw-lg);
}
@media (min-width: 1100px){
	.f-value__head{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
		margin-bottom: 0;
	}
}
.f-value__title strong{
	color: var(--c-main);
}
.f-value__label{
	max-width: fit-content;
	margin-bottom: var(--g-sec--xs);
	padding: .25rem 1rem;
	text-align: center;
	background: var(--c-dark);
	font-size: 1.25rem;
	color: var(--c-light);
}
.f-value__lead{
	text-align: center;
}
@media (min-width: 600px){
	.f-value__lead{
		text-align: left;
	}
}

/*===============================
* ボディ
* =================================*/
.f-value__body{
	position: relative;
	padding: var(--g-sec--md) 0;
}
@media (min-width: 1100px){
	.f-value__body{
		right: calc( 50% - 50vw );
		max-width: 1040px;
		margin-left: auto;
	}
}

/*===============================
* 背景画像
* =================================*/
.f-value__bgi{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	display: block;
	width: 100vw;
	height: 100%;
	aspect-ratio: 1040 / 320;
}
@media (min-width: 1100px){
	.f-value__bgi{
		width: 100%;
	}
}
.f-value__bgi img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/*===============================
* リスト
* =================================*/
.f-value__list{
	--count: 2;
	--gap: .5rem;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	max-width: 676px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	list-style: none;
}
@media (min-width: 1100px){
	.f-value__list{
		--gap: 1.25rem;
		margin-right: 0;
		padding: 0 1rem;
	}
}
@media (min-width: 1440px){
	.f-value__list{
		margin-inline: auto;
	}
}
.f-value__list li{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: calc( ( 100% - var(--gap) * (var(--count) - 1) ) / var(--count) );
	padding: .25rem .5rem;
	text-align: center;
	background: var(--c-dark);
	font-weight: var(--fw-lg);
	font-size: clamp(1rem, 0.822rem + 0.48vw, 1.25rem);
	color: var(--c-light);
	transform: skewX(-5deg);
}
.f-value__list span{
	transform: skewX(5deg);
}



/*===============================================================================
***TROUBLE
================================================================================*/
.f-trouble__inner{
	position: relative;
	padding-top: var(--g-sec--lg);
}

/*===============================
* 背景画像
* =================================*/
.f-trouble__bgi{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	display: block;
	width: 100vw;
	height: 100%;
}
@media (min-width: 1100px){
	.f-value__bgi{
		width: 100%;
	}
}
.f-trouble__bgi img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/*===============================
* 上のSVG
* =================================*/
.f-trouble__top-deco{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	width: 100vw;
	height: auto;
}
.f-trouble__top-deco.--pc{display: none;}
@media (min-width: 600px){
	.f-trouble__top-deco.--pc{display: block;}
	.f-trouble__top-deco.--sp{display: none;}
}

/*===============================
* ヘッド
* =================================*/
.f-trouble__head{
	margin-bottom: var(--g-sec--sm);
}
.f-trouble__title strong{
	color: var(--c-main);
}

/*===============================
* ボディ
* =================================*/
/*===============================
* カード
* =================================*/
.f-trouble-cards{
	--count: 1;
	--gap: var(--g-sec--xs);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--g-sec--md) var(--gap);
	margin-bottom: var(--g-sec--md);
}
@media (min-width: 600px){
	.f-trouble-cards{
		--count: 2;
	}
}
@media (min-width: 960px){
	.f-trouble-cards{
		--count: 3;
	}
}
.f-trouble-card{
	width: calc( ( 100% - var(--gap) * (var(--count) - 1) ) / var(--count) );
}
.f-trouble-card__image{
	margin-bottom: 1.25rem;
}
.f-trouble-card__title{
	margin-bottom: 1rem;
	text-align: center;
	color: var(--c-main);
}

/*===============================
* フット
* =================================*/
.f-trouble__foot{
	position: relative;
	padding-top: 20%;
}
@media (min-width: 600px){
	.f-trouble__foot{
		padding-top: 10%;
	}
}

/*===============================
* 下のSVG
* =================================*/
.f-trouble__bottom-deco{
	position: absolute;
	bottom: 0;
	left: calc( 50% - 50vw );
	width: 100vw;
	height: auto;
}
.f-trouble__bottom-deco.--pc{display: none;}
@media (min-width: 600px){
	.f-trouble__bottom-deco.--pc{display: block;}
	.f-trouble__bottom-deco.--sp{display: none;}
}

/*===============================
* 下の2色ライン
* =================================*/
.f-trouble__line{
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translate(-50%,50%);
	width: 2px;
	height: clamp(4rem, 3.288rem + 1.9vw, 5rem);
	background: var(--c-gray);
}
.f-trouble__line::before{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: -1;
	content: "";
	width: 100%;
	height: 1.5rem;
	background: var(--c-main);

}



/*===============================================================================
***悩み解決
================================================================================*/
.f-nayami{
	margin-bottom: var(--g-sec--lg);
}
.f-nayami__head{
	margin-bottom: var(--g-sec--xs);
}
.f-nayami__title{
	text-align: center;
}
.f-nayami__body{
	margin-bottom: var(--g-sec--xs);
}
.f-nayami__content{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 600px){
	.f-nayami__content{
		gap: 0rem;
		align-items: center;
		text-align: center;
	}
}
.f-nayami__btn{
	text-align: center;
}



/*===============================================================================
***SERVICE
================================================================================*/
.f-service__inner{
	position: relative;
	padding: var(--g-sec--lg) 0;
}
.f-service__inner::before{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	z-index: -1;
	content: "";
	width: 100vw;
	height: 100%;
	background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF8 40%);
}
/*===============================
* ヘッド
* =================================*/
.f-service__head{
	margin-bottom: var(--g-sec--sm);
}
.f-service__title{
	margin-bottom: var(--g-sec--sm);
}
.f-service__lead{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 600px){
	.f-service__lead{
		gap: 0rem;
		align-items: center;
		text-align: center;
	}
}

/*===============================
* ボディ
* =================================*/
.f-service__body{
	margin-bottom: var(--g-sec--md);
}

/*===============================
* カバー
* =================================*/
.f-service-cover:not(:last-of-type){
	margin-bottom: var(--g-sec--sm);
}
.f-service-cover{
	position: relative;
}
@media (min-width: 600px){
	.f-service-cover:not(:last-of-type){
		margin-bottom: 0;
	}
	.f-service-cover{
		padding: var(--g-sec--md) 0;
	}
}

/* グレースケール */
@media (min-width: 600px){
	.f-service-cover::before{
		content: "";
		position: absolute;
		top: 0;
		left: calc( 50% - 50vw );
		width: 100vw;
		height: 100%;
		background: linear-gradient(90deg, #FFFFFF 10%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
	}
}

/* 画像 */
.f-service-cover__image{
	position: relative;
	left: calc( 50% - 50vw );
	max-width: 100vw;
	width: 100vw;
	margin-bottom: 1.5rem;
}
.f-service-cover__image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
@media (min-width: 600px){
	.f-service-cover__image{
		position: absolute;
		top: 0;
		z-index: -1;
		height: 100%;
		margin-bottom: 0;
		aspect-ratio: 1440 / 365;
	}
}

/* ボタンとテキスト */
.f-service-cover__cols{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
}

/* テキスト */
.f-service-cover__content{
	position: relative;
	flex-grow: 1;
	max-width: 690px;
}
@media (min-width: 600px){
	.f-service-cover__content{
		padding-left: 1rem;
	}
}
.f-service-cover__title-wrap{
	margin-bottom: 1.5rem;
	font-weight: var(--fw-lg);
}
/* 数字 */
.f-service-cover__number{
	line-height: var(--lh-xs);
	font-family: var(--ff-en);
}
@media (min-width: 600px){
	.f-service-cover__number{
		position: absolute;
		top: 0;
		left: 0;
	}
}
/* 英文字 */
.f-service-cover__en-title{
	display: flex;
	gap: .5rem;
	align-items: center;
}
/* 英文字：ライン */
.f-service-cover__en-title::before{
	content: "";
	width: .75em;
	height: 1px;
	background: var(--c-dark);
}
.f-service-cover__textArea{
	line-height: var(--lh-xl);
}
/* ボタン */
.f-service-cover__btn{
	max-width: 20rem;
	width: 100%;
	margin-left: auto;
}


/*===============================
* フット
* =================================*/
.f-service__btn{
	text-align: center;
}



/*===============================================================================
***REASON
================================================================================*/
.f-reason__inner{
	position: relative;
	padding: var(--g-sec--lg) 0;
}

/*===============================
* 背景画像
* =================================*/
.f-reason__bgi{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	z-index: -1;
	max-width: 100vw;
	width: 100vw;
	height: auto;
}
@media (min-width: 600px){
	.f-reason__bgi{
		height: 100%;
	}
}
.f-reason__bgi img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/*===============================
* ヘッド
* =================================*/
.f-reason__head{
	margin-bottom: var(--g-sec--sm);
}

/*===============================
* ボディ
* =================================*/
/*===============================
* カード
* =================================*/
.f-reason-card-wrap{
	--bd-width: 1px;
	--bd-style: solid;
	--bd-color: var(--c-gray);
	--count: 1;
	--gap: 0rem;
	resize: horizontal;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	border-top: var(--bd-width) var(--bd-style) var(--bd-color);
	border-left: var(--bd-width) var(--bd-style) var(--bd-color);
}
@media (min-width: 960px){
	.f-reason-card-wrap{
		--count: 2;
	}
}

.f-reason-card{
	container: my-reason-card / inline-size;
	width: calc( ( 100% - var(--gap) * (var(--count) - 1) ) / var(--count) );
	overflow: hidden;
}
.f-reason-card__inner{
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	padding-right: 1.75rem;
	padding-left: 1.75rem;
	border-right: var(--bd-width) var(--bd-style) var(--bd-color);
	border-bottom: var(--bd-width) var(--bd-style) var(--bd-color);
	background: var(--c-light);
}
@container my-reason-card (min-width: 35rem) {
	.f-reason-card__inner{
		flex-direction: row;
		padding-right: 0;
	}
}

.f-reason-card__number{
	font-family: var(--ff-en);
	font-weight: var(--fw-lg);
	font-size: 2rem;
	font-style: italic;
}
.f-reason-card__content{
	max-width: 520px;
	margin-inline: auto;
	align-self: center;
}
.f-reason-card__title{
	max-width: 22.5rem;
	margin-inline: auto;
	margin-bottom: 1.25rem;
	padding: .25rem 1.25rem;
	text-align: center;
	background: linear-gradient(91.61deg, #ECAC4D 0%, rgba(220, 27, 128, 0.7) 100%);
	color: var(--c-light);
}
.f-reason-card__textArea{
	display: flex;
	flex-direction: column;
}
.f-reason-card__sub-title{
	--c-line: var(--c-gray);
	display: inline-block;
	margin-top: auto;
	text-align: right;
	letter-spacing: normal;
	text-stroke: 1px var(--c-line);
	-webkit-text-stroke: 1px var(--c-line);	line-height: var(--lh-xs);
	color: var(--c-light);
}
@container my-reason-card (min-width: 35rem) {
	.f-reason-card__sub-title{
		margin-top: 0;
		text-align: left;
		writing-mode: sideways-rl;
	}
}



/*===============================================================================
***VOICE
================================================================================*/
.f-voice__inner{
	position: relative;
	padding: var(--g-sec--lg) 0;
}

/*===============================
* 背景画像
* =================================*/
.f-voice__bgi{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	z-index: -1;
	max-width: 100vw;
	width: 100vw;
	height: 100%;
}
.f-voice__bgi img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 10% 50%;
}

/*===============================
* ヘッド
* =================================*/
.f-voice__head{
	margin-bottom: var(--g-sec--sm);
}

/*===============================
* ボディ
* =================================*/
.f-voice__body{
	margin-bottom: var(--g-sec--md);
}

/*===============================
* フット
* =================================*/
.f-voice__foot{
	text-align: center;
}
