@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://use.typekit.net/esu3ubd.css');

/* ----------------------------------------

	共通設定

---------------------------------------- */
/*
	変数
*/
:root {
	/*
		色
	*/
	/* color */
	--cl-brand01: #004EA2;
	--cl-brand02: #007BC7;
	--cl-brand03: #EC6B81;
	
	--cl-brand01_20: rgb(from var(--cl-brand01) r g b / 0.2);
	--cl-brand01_65: rgb(from var(--cl-brand01) r g b / 0.65);
	
	--cl-gry01: #888888;
	--cl-gry02: #D9D9D9;
	
	--cl-gld01: #B67715;
	--cl-yel01: #A37F00;
	
	--cl-marker01: #FDFF95;
	
	--cl-bg01: #F7FAFF;
	--cl-bg02: #E9F3FF;
	--cl-bg03: #F6F6F1;
	--cl-bgPopup: rgb(from var(--cl-brand01) r g b / 0.5);
	
	--cl-line: #06C755;
	--cl-rakuten: #BF0000;
	--cl-yahoo: #FF0033;
	
	/* linear-gradient */
	--lg-blu01: linear-gradient(45deg, var(--cl-brand01), #009BFA);
	--lg-blu02: linear-gradient(to right, var(--cl-brand01), #379ACC);
	--lg-blu03: linear-gradient(to right, #0251D3, #2CB5FF 30%, #9FFCF9 70%, #D7FFF4);
	--lg-blu04: linear-gradient(45deg, #DCF0FF, #FFFFFF);
	
	--lg-pnk01: linear-gradient(45deg, #FF4767, #FF8C72);
	
	--lg-gld01: linear-gradient(35deg, var(--cl-gld01), #FBDB78 50%, var(--cl-gld01));
	
	
	/*
		フォント
	*/
	/* font-family */
	--ff-basic: 'Noto Sans JP', sans-serif;
	--ff-en: 'futura-pt', 'Noto Sans JP', sans-serif;
	
	/* font-size */
	--fs-basicNum: 14;
	--fs-smallerNum: 12;
	--fs-smallNum: 10;
	--fs-bigNum: 19;
	
	@media (width > 768px) {
		--fs-basicNum: 16;
		--fs-smallerNum: 14;
		--fs-smallNum: 12;
		--fs-bigNum: 28;
	}
	
	--fs-basic: calc(var(--fs-basicNum) * 1px);
	--fs-smaller: calc(var(--fs-smallerNum) * 1px);
	--fs-small: calc(var(--fs-smallNum) * 1px);
	--fs-big: calc(var(--fs-bigNum) * 1px);
	
	/* font-weight */
	--fw-regular: 400;
	--fw-book: 400;
	--fw-medium: 500;
	--fw-bold: 700;
	
	/* letter-spacing */
	--ls-basic: 0.05em;
	
	/* line-height */
	--lh-basic: 2.0;
	--lh-small: 1.3;
	--lh-smaller: 1.8;
	
	
	/*
		幅・余白
	*/
	/* width */
	--w-design: 414;
	
	@media (width > 768px) {
		--w-design: 1440;
		
		--w-contentsNum: 1000;
		--w-contentsNarrowNum: 800;
		--w-contentsWideNum: 1200;
		
		--w-contents: calc(var(--w-contentsNum) * 1px);
		--w-contentsNarrow: calc(var(--w-contentsNarrowNum) * 1px);
		--w-contentsWide: calc(var(--w-contentsWideNum) * 1px);
	}
	
	/* padding */
	--pd-h: 5dvw;
	
	--pd-vSec: 100px;
	--pd-vGroup: 40px;
	--pd-vItem: 24px;
	--pd-vSmall: 10px;
	
	@media (width > 768px) {
		--pd-hNum: 50;
		
		--pd-h: calc(var(--pd-hNum) * 1px);
	
		--pd-vSec: 120px;
		--pd-vGroup: 60px;
		--pd-vItem: 40px;
		--pd-vSmall: 12px;
	}
	
	
	/*
		装飾
	*/
	/* border-radius */
	--br-basic: 12px;
	--br-small: 6px;
	
	@media (width > 768px) {
		--br-basic: 16px;
		--br-small: 8px;
	}
	
	/* box-shadow */
	--bs-basic: 0 0 20px 0 var(--cl-brand01_20);
	--bs-narrow: 0 0 6px 0 var(--cl-brand01_65);
	
	/* text-shadow */
	--ts-basic: 0 0 6px 0 var(--cl-brand01_65);
	
	/* transition */
	--tr-basic: all 300ms ease;
	
	--tr-opacity: 0.7;
}


/*
	基本レイアウト・スタイル
*/
section[id^="office"] {
	/* 全体 */
	color: var(--cl-brand01);
	font-family: var(--ff-basic);
	font-size: var(--fs-basic);
	font-weight: var(--fw-regular);
	letter-spacing: var(--ls-basic);
	line-height: var(--lh-basic);
	
	* {
		letter-spacing: var(--ls-basic);
	}

	/* ページ全体のレイアウト */
	& + & {
		margin-top: 100px;

		@media (width > 768px) {
			margin-top: 120px;
		}
	}
	
	/* 画像 */
	img {
		display: block;
		width: 100%;
		height: auto;
	}
	
	/* ボタン・リンク */
	@media (width > 768px) {
		:is(a, button) {
			cursor: pointer;
			transition: var(--tr-basic);
			transition-property: opacity;
			
			&:hover {
				opacity: var(--tr-opacity);
			}
		}
	}
	
	/* ダイアログ */
	body:has(& dialog[open]) {
		overflow: clip;
	}
	
	@keyframes dialogFadeIn {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}
	
	@keyframes dialogFadeOut {
		0% {
			opacity: 1;
		}

		100% {
			opacity: 0;
		}
	}
	
	dialog {
		--openAnimation: dialogFadeIn both 400ms ease;
		--closeAnimation: dialogFadeOut both 300ms ease;

		max-width: calc(100dvw - var(--pd-h) * 2);
		max-height: calc(100dvw - var(--pd-h) * 2);
		padding: 0;
		color: inherit;
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
		overflow: clip auto;
		
		&::backdrop {
			background: var(--cl-bgPopup);
			animation: var(--openAnimation);
		}
		
		&[open] {
			animation: var(--openAnimation);

			&.fadeOut {
				animation: var(--closeAnimation);

				&::backdrop {
					animation: var(--closeAnimation);
				}
			}
		}
	}
}


/*
	共通クラス
*/
section[id^="office"] {
	/*
		汎用
	*/
	@media (width <= 768px) {
		.pcOnly {
			display: none;
		}
	}
	
	@media (width > 768px) {
		.spOnly {
			display: none;
		}
	}
	
	
	/*
		コンテンツ幅
	*/
	.contentsInner {
		width: 100%;
		padding: 0 var(--pd-h);

		@media (width > 768px) {
			--baseWidthNum: var(--w-contentsNum);
			--w-contentsInner: calc(var(--baseWidthNum) + var(--pd-hNum) * 2);
			
			max-width: calc(var(--w-contentsInner) * 1px);
			margin: 0 auto;
			
			&.narrow {
				--baseWidthNum: var(--w-contentsNarrowNum);
			}
			
			&.wide {
				--baseWidthNum: var(--w-contentsWideNum);
			}
		}
	}
	
	
	/*
		テキスト
	*/
	/* 本文 */
	.txtBasic {
		font-family: var(--ff-basic);
		font-size: var(--fs-basic);
		font-weight: var(--fw-regular);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-basic);
		
		/* 本文・強調 */
		&.strong {
			font-weight: var(--fw-medium);
		}
		
		/* 本文小さめ */
		&.smaller {
			font-size: var(--fs-smaller);

			/* 本文小さめ・強調 */
			&.strong {
				font-weight: var(--fw-medium);
			}
		}
	}
	
	/* 注釈 */
	.txtSmall {
		font-family: var(--ff-basic);
		font-size: var(--fs-small);
		font-weight: var(--fw-regular);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-small);
		
		/* 注釈・強調 */
		&.strong {
			font-weight: var(--fw-bold);
		}
	}
	
	/* タイトル・強調 */
	.txtTitle {
		font-family: var(--ff-basic);
		font-size: var(--fs-big);
		font-weight: var(--fw-medium);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-smaller);
		
		/* タイトル・強調_英語 */
		&.en {
			font-family: var(--ff-en);
		}
	}
	
	
	/*
		装飾
	*/
	/* 縦棒 */
	.decoBorder01 {
		--borderHeight: 60px;
		--color: var(--cl-brand01);

		@media (width > 768px) {
			--borderHeight: 100px;
		}
		
		position: relative;
		
		&::before {
			content: '';
			display: block;
			width: 1px;
			height: var(--borderHeight);
			margin: 0 auto var(--pd-vItem);
			background: var(--color);
		}
		&::after {
			content: '';
			display: block;
			position: absolute;
			left: 50%;
			top: var(--borderHeight);
			width: 3px;
			aspect-ratio: 1;
			background: var(--color);
			border-radius: 50%;
			translate: -1px -100%;
		}
	}
	
	
	/*
		タイトル
	*/
	/* セクションタイトル */
	.ttlSection {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 19px;
		margin-bottom: 40px;
		font-family: var(--ff-en);
		font-size: min(var(--fs-big), calc(var(--fs-bigNum) * 100dvw / var(--w-design)));
		font-weight: var(--fw-medium);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-smaller);
		text-align: center;
		white-space: nowrap;
	
		@media (width > 768px) {
			gap: 30px;
			margin-bottom: 90px;
			font-size: var(--fs-big);
		}
		
		&::before,
		&::after {
			content: '';
			flex: 0 0 auto;
			display: block;
			width: 18px;
			aspect-ratio: 18 / 37;
			background: url(/common/images/img_diamond.webp) no-repeat center / contain;

			@media (width > 768px) {
				width: 32px;
			}
		}
		
		.text {
			flex: 0 0 auto;
			display: block;
		}
		
		/* 小さめ行 */
		.smaller {
			display: inline-block;
			font-size: min(var(--fs-basic), calc(var(--fs-basicNum) * 100dvw / var(--w-design)));
			line-height: var(--lh-basic);

			@media (width > 768px) {
				font-size: var(--fs-basic);
			}
		}
	}
	
	/* 白ダイヤタイトル */
	.ttlDiamondWht {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 15px;
		margin-bottom: 20px;
		font-family: var(--ff-basic);
		font-size: min(17px, calc(17 * 100dvw / var(--w-design)));
		font-weight: var(--fw-bold);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-smaller);
		white-space: nowrap;

		@media (width > 768px) {
			gap: 24px;
			margin-bottom: 40px;
			font-size: 20px;
		}
		
		&::before {
			content: '';
			flex: 0 0 auto;
			display: block;
			width: 13px;
			aspect-ratio: 18 / 37;
			background: url(/common/images/img_diamond_line.svg) no-repeat center / contain;

			@media (width > 768px) {
				width: 18px;
			}
		}
		
		.text {
			flex: 0 0 auto;
			display: block;
		}
	}
	
	/* グラデ下線タイトル */
	.ttlBorderGrad {
		font-family: var(--ff-basic);
		font-size: min(var(--fs-big), calc(var(--fs-bigNum) * 100dvw / var(--w-design)));
		font-weight: var(--fw-medium);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-smaller);
		text-align: center;
		white-space: nowrap;

		@media (width > 768px) {
			font-size: var(--fs-big);
		}
		
		.border {
			display: inline-block;
			width: fit-content;
			background: var(--lg-blu03) no-repeat center bottom / 100% 3px;
		}
		
		/* 小さめ行 */
		.smaller {
			display: inline-block;
			font-size: min(var(--fs-basic), calc(var(--fs-basicNum) * 100dvw / var(--w-design)));
			line-height: var(--lh-basic);
	
			@media (width > 768px) {
				font-size: var(--fs-basic);
			}
		}
	}
	
	/* Our Commitment */
	.ttlCommitment {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 17px;
		font-family: var(--ff-en);
		font-size: 12px;
		font-weight: var(--fw-medium);
		letter-spacing: 0.4em;
		line-height: 1.0;
		text-align: center;
		white-space: nowrap;
		text-transform: uppercase;

		@media (width > 768px) {
			gap: 19px;
			font-size: 20px;
		}
		
		&::before {
			content: '';
			display: block;
			width: 68px;
			aspect-ratio: 68 / 50;
			background: url(/common/images/logo_we.svg) no-repeat center / contain;

			@media (width > 768px) {
				width: 145px;
			}
		}
	}
	
	
	/*
		テキストリンク
	*/
	/* テキストリンク */
	.linkBasic {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 14px;
		width: fit-content;
		background: linear-gradient(currentColor) no-repeat center bottom / 100% 1px;
		font-family: var(--ff-basic);
		font-size: var(--fs-basic);
		font-weight: var(--fw-medium);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-basic);
		white-space: nowrap;

		@media (width > 768px) {
			gap: 16px;
		}
		
		&::after {
			content: '';
			flex: 0 0 auto;
			display: block;
			width: 9px;
			aspect-ratio: 1;
			border: 1px currentColor;
			border-style: solid solid none none;
			clip-path: polygon(0 0, 100% 0, 100% 100%);
			rotate: 45deg;
			translate: -30% 0;
		}
		
		/* 注釈サイズ */
		&.small {
			padding-bottom: 4px;
			font-size: var(--fs-small);
			font-weight: var(--fw-bold);
			line-height: var(--lh-small);
			
			&::after {
				width: 7px;
			}
		}
		
		/* 下矢印 */
		&.down::after {
			margin-left: 5px;
			rotate: 135deg;
			translate: -25% 0;
		}
		
		/* 上矢印 */
		&.up::after {
			margin-left: 5px;
			rotate: -45deg;
			translate: -25% 40%;
		}
		
		/* ？マーク */
		&.qMark {
			&::after {
				width: 14px;
				background: url(/common/images/ico_question.svg) no-repeat center / contain;
				border: none;
				clip-path: none;
				rotate: none;
				translate: none;
			}
			
			&.small::after {
				width: 12px;
			}
		}
	}
	
	
	/*
		ボタン
	*/
	/* 汎用ボタン */
	.btnBasic {
		--height: 56px;

		@media (width > 768px) {
			--height: 64px;
		}
		
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 318px;
		height: var(--height);
		margin: 0 auto;
		background: var(--lg-blu01) no-repeat center / cover;
		border-radius: calc(var(--height) / 2);
		color: #fff;
		font-family: var(--ff-basic);
		font-size: min(var(--fs-basic), calc(var(--fs-basicNum) * 100dvw / var(--w-design)));
		font-weight: var(--fw-bold);
		letter-spacing: var(--ls-basic);
		line-height: var(--lh-basic);
		white-space: nowrap;

		@media (width > 768px) {
			max-width: 366px;
			font-size: var(--fs-basic);
		}
		
		&::after {
			content: '';
			display: block;
			position: absolute;
			right: 18px;
			top: 50%;
			width: 9px;
			aspect-ratio: 1;
			border: 1px currentColor;
			border-style: solid solid none none;
			rotate: 45deg;
			translate: 0 -50%;

			@media (width > 768px) {
				right: 20px;
			}
		}
		
		/* CTAボタン */
		&.cta {
			background-image: var(--lg-pnk01);
		}
		
		/* 濃い色背景ボタン */
		&.darkBg {
			background: rgb(#fff / 0.2);
			border: 1px solid #fff;
		}
		
		/* 低優先ボタン */
		&.lowPrio {
			background: #fff;
			border: 1px solid currentColor;
			color: var(--cl-brand01);
			
			&::before {
				content: none;
				display: block;
				position: absolute;
				left: 30px;
				top: 50%;
				height: 30px;
				background: no-repeat center / contain;
				translate: 0 -50%;

				@media (width > 768px) {
					height: 34px;
				}
			}
			
			/* 人アイコン */
			&.icoPerson::before {
				content: '';
				aspect-ratio: 1;
				background-image: url(/common/images/ico_person.svg);
			}
			
			/* ピンアイコン */
			&.icoPin::before {
				content: '';
				aspect-ratio: 24 / 30;
				background-image: url(/common/images/ico_pin.svg);
			}
		}
		
		/* 外部リンクボタン */
		&.ext {
			--bg: var(--lg-blu01);
			
			background:
				url(/common/images/ico_window.svg) no-repeat right 18px center / 12px auto,
				var(--bg) no-repeat center / cover;

			@media (width > 768px) {
				background-position:
					right 20px center,
					center;
			}
			
			&::after {
				content: none;
			}
			
			/* Amazon */
			&.amazon {
				--bg: linear-gradient(#ff9900);
			}
			
			/* 楽天 */
			&.rakuten {
				--bg: linear-gradient(var(--cl-rakuten));
			}
			
			/* Yahoo! */
			&.yahoo {
				--bg: linear-gradient(var(--cl-yahoo));
			}
			
			/* Qoo10 */
			&.qoo10 {
				--bg: linear-gradient(to right, #FC4231, #B235DC);
			}
		}
	}
	
	/* 開閉ボタン */
	.btnOpenClose {
		display: block;
		position: relative;
		width: 18px;
		aspect-ratio: 1;
		color: var(--cl-brand01);
		
		@media (width > 768px) {
			width: 24px;
		}
		
		&::before,
		&::after {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			width: 100%;
			height: 1px;
			background: currentColor;
			translate: -50% 0;
		}
		&::after {
			rotate: -90deg;
			transition: rotate 300ms ease;
		}
		
		.open &::after {
			rotate: 0deg;
		}
		
		.text {
			display: block;
			width: 1px;
			height: 1px;
			clip-path: inset(50%);
			overflow: hidden;
		}
	}


	/*
		症例写真共通パーツ
	*/
	.layoutCases {
		.slideArea {
			position: relative;
			padding: 0 35px;

			@media (width > 768px) {
				padding: 0 100px;
			}
		}

		.case {
			> :nth-child(n+2) {
				margin-top: var(--pd-vItem);
			}
		}

		.caseTitle {
			display: flex;
			justify-content: center;
			align-items: center;
			background: var(--cl-brand01);
			border-radius: var(--br-small);
			color: #fff;
			font-weight: var(--fw-medium);
		}

		.photos {
			display: flex;
			flex-direction: column;
			gap: var(--pd-vItem);

			@media (width > 768px) {
				flex-direction: row;
				gap: 24px;
			}
		}

		.photo {
			flex: 1 1 auto;
			position: relative;
			width: 100%;
			aspect-ratio: 338 / 188;
			border-radius: var(--br-basic);
			overflow: hidden;
		}

		.tag {
			display: flex;
			justify-content: center;
			align-items: center;
			position: absolute;
			left: 0;
			top: 0;
			width: 70px;
			height: 20px;
			background: var(--cl-brand01);
			border-bottom-right-radius: var(--br-small);
			color: #fff;
			font-size: var(--fs-smaller);
			font-weight: var(--fw-medium);
			line-height: var(--lh-small);

			@media (width > 768px) {
				width: 83px;
				height: 24px;
			}

			&.before {
				background: var(--cl-gry01);
			}
		}

		.note {
			color: var(--cl-gry01);
			font-size: var(--fs-small);
			line-height: var(--lh-small);

			.strong {
				color: var(--cl-brand03);
			}
		}

		.splide__arrow {
			display: block;
			position: absolute;
			top: 50%;
			width: 18px;
			aspect-ratio: 1;
			border: 1px var(--cl-brand01);
			rotate: 45deg;

			@media (width > 768px) {
				width: 33px;
			}

			svg {
				display: none;
			}
		}

		.splide__arrow--prev {
			left: 0;
			border-style: none none solid solid;
			translate: 20% -50%;
		}

		.splide__arrow--next {
			right: 0;
			border-style: solid solid none none;
			translate: -20% -50%;
		}

		.splide__pagination {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 13px;
			margin-top: var(--pd-vItem);

			@media (width > 768px) {
				gap: 24px;
			}

			> * {
				flex: 0 0 auto;
			}
		}

		.splide__pagination__page {
			display: block;
			width: 8px;
			aspect-ratio: 1;
			background: var(--cl-gry02);
			border-radius: 50%;

			@media (width > 768px) {
				width: 12px;
			}

			&.is-active {
				background: var(--cl-brand01);
			}
		}

		/* SP横方向 */
		@media (width <= 768px) {
			&.horizon {
				.slideArea {
					padding: 0;
				}

				.photos {
					flex-direction: row;
					gap: 12px;
				}

				.photo {
					border-radius: var(--br-small);
				}

				.tag {
					width: 54px;
					height: 16px;
					font-size: var(--fs-small);
					font-weight: var(--fw-bold);
				}
			}
		}
	}
	
	
	/*
		共通アニメーション
	*/
	/* 下からふわっと表示 */
	.fadeInUp {
		--translate: 0 30px;

		opacity: 0;
		translate: var(--translate);

		/* 疑似要素対応 */
		&.pseudo {
			opacity: 1;
			translate: 0;
			
			&::before,
			&::after {
				opacity: 0;
				translate: var(--translate);
			}
		}
	}
	.fadeInUpDone {
		--transition: 500ms ease;
		--transition-property: opacity, translate;

		transition: var(--transition);
		transition-property: var(--transition-property);

		/* 疑似要素対応 */
		&.pseudo {
			&::before,
			&::after {
				transition: var(--transition);
				transition-property: var(--transition-property);
			}
		}
	}
}


/*
	セクション
*/
section[id^="office"] {
	/* 近くのWEを探す */
	@keyframes btnShine {
		0% {
			opacity: 0;
			translate: -120% -50%;
		}

		33% {
			opacity: 0;
			translate: -120% -50%;
		}

		50% {
			opacity: 1;
			translate: 0 -50%;
		}

		67% {
			opacity: 0;
			translate: 20% -50%;
		}

		100% {
			opacity: 0;
			translate: 20% -50%;
		}
	}

	&.secMap {
		.contents {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: var(--pd-vItem);
		}

		.action {
			.slash {
				display: inline-block;
				width: 1px;
				height: 1px;
				clip-path: inset(50%);
				overflow: hidden;
			}
		}

		.mapContainer {
			width: 100%;

			@media (width > 768px) {
				max-width: 700px;
			}
		}

		.map {
			--w: 372;
			--h: 380;

			@media (width > 768px) {
				--w: 512;
				--h: 524;
			}

			position: relative;
			width: 100%;
			aspect-ratio: var(--w) / var(--h);
			background: url("/common/images/img_japan_map.svg") no-repeat center / contain;

			@media (width > 768px) {
				max-width: calc(var(--w) * 1px);
				margin: 0 auto;
			}
		}

		.clinicNum {
			display: flex;
			flex-direction: column;
			align-items: center;
			position: absolute;
			left: calc(45 / var(--w) * 100%);
			top: calc(53 / var(--h) * 100%);

			@media (width > 768px) {
				left: calc(35 / var(--w) * 100%);
				top: calc(82 / var(--h) * 100%);
			}

			&::before {
				content: '';
				display: block;
				width: calc(41 / var(--w-design) * 100dvw);
				aspect-ratio: 68 / 50;
				margin-bottom: calc(12 / var(--w-design) * 100dvw);
				background: url("/common/images/logo_we.svg") no-repeat center / contain;

				@media (width > 768px) {
					width: 50px;
					margin: 0;
				}
			}

			&::after {
				content: '';
				display: block;
				width: 100%;
				height: calc(3 / var(--w-design) * 100dvw);
				background: var(--lg-blu03) no-repeat center / cover;

				@media (width > 768px) {
					height: 3px;
				}
			}

			.text {
				position: relative;
				font-size: calc(var(--fs-bigNum) / var(--w-design) * 100dvw);
				font-weight: var(--fw-medium);
				line-height: var(--lh-smaller);

				@media (width > 768px) {
					font-size: var(--fs-big);
				}
			}

			.num {
				font-family: var(--ff-en);
				font-size: calc(40 / var(--w-design) * 100dvw);
				line-height: 1.0;
				letter-spacing: 0;

				@media (width > 768px) {
					font-size: 80px;
				}
			}

			.noteMark {
				position: absolute;
				left: 100%;
				top: 25%;
				font-size: calc(var(--fs-smallNum) / var(--w-design) * 100dvw);
				line-height: var(--lh-small);

				@media (width > 768px) {
					font-size: var(--fs-small);
				}
			}
		}

		.areaList {
			.area {
				position: absolute;
				width: calc(100 / var(--w) * 100%);
				aspect-ratio: 100 / 30;

				@media (width > 768px) {
					width: calc(120 / var(--w) * 100%);
					aspect-ratio: 120 / 40;
				}

				&[data-target="hokkaido"] {
					left: calc(262 / var(--w) * 100%);
					top: calc(97 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(365 / var(--w) * 100%);
						top: calc(133 / var(--h) * 100%);
					}
				}

				&[data-target="koshinetsu"] {
					left: calc(173 / var(--w) * 100%);
					top: calc(186 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(256 / var(--w) * 100%);
						top: calc(262 / var(--h) * 100%);
					}
				}

				&[data-target="kanto"] {
					left: calc(261 / var(--w) * 100%);
					top: calc(237 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(376 / var(--w) * 100%);
						top: calc(329 / var(--h) * 100%);
					}
				}

				&[data-target="tokai"] {
					left: calc(211 / var(--w) * 100%);
					top: calc(281 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(303 / var(--w) * 100%);
						top: calc(391 / var(--h) * 100%);
					}
				}

				&[data-target="kansai"] {
					left: calc(167 / var(--w) * 100%);
					top: calc(325 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(227 / var(--w) * 100%);
						top: calc(453 / var(--h) * 100%);
					}
				}

				&[data-target="chugoku"] {
					left: calc(99 / var(--w) * 100%);
					top: calc(260 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(132 / var(--w) * 100%);
						top: calc(363 / var(--h) * 100%);
					}
				}

				&[data-target="kyushu"] {
					left: calc(18 / var(--w) * 100%);
					top: calc(305 / var(--h) * 100%);

					@media (width > 768px) {
						left: calc(36 / var(--w) * 100%);
						top: calc(424 / var(--h) * 100%);
					}
				}
			}

			.btn {
				display: flex;
				justify-content: center;
				align-items: center;
				position: relative;
				width: 100%;
				height: 100%;
				background: var(--lg-blu04) no-repeat center / cover;
				border: 1px solid var(--cl-brand01);
				border-radius: calc(21 / var(--w-design) * 100dvw);
				font-size: calc(var(--fs-smallerNum) / var(--w-design) * 100dvw);
				font-weight: var(--fw-medium);
				white-space: nowrap;
				overflow: hidden;

				@media (width > 768px) {
					border-radius: 21px;
					font-size: var(--fs-smaller);
					font-weight: var(--fw-bold);
					transition-property: background, color;

					&:hover {
						background: linear-gradient(to right, var(--cl-brand01), var(--cl-brand01));
						color: #fff;
						opacity: 1;
					}
				}

				&::after {
					content: '';
					display: block;
					position: absolute;
					left: 50%;
					top: 50%;
					width: 250%;
					height: 150%;
					background: linear-gradient(to bottom, transparent, #fff 45%, #fff 55%, transparent) no-repeat center / cover;
					mix-blend-mode: overlay;
					rotate: 30deg;
					animation: btnShine 3.5s linear infinite;
				}
			}
		}

		.noteList {
			margin-top: var(--pd-vSmall);
			color: var(--cl-gry01);
			font-size: var(--fs-small);
			line-height: var(--lh-small);
		}

		.prefecturesList {
			position: relative;

			&:has(.active) {
				margin-top: var(--pd-vItem);
			}

			.area {
				position: absolute;
				left: 0;
				top: 0;
				height: 0;
				overflow: hidden;
				opacity: 0;

				&.active {
					position: relative;
					height: auto;
					opacity: 1;
					transition: var(--tr-basic);
					transition-property: opacity;
					transition-delay: 100ms;
					transition-duration: 800ms;
				}
			}

			.areaName {
				display: flex;
				justify-content: center;
				align-items: center;
				background: var(--cl-brand01);
				border-radius: var(--br-small);
				color: #fff;
				font-weight: var(--fw-medium);
			}

			.prefectures {
				margin-top: var(--pd-vItem);
			}

			.list {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				gap: 10px 40px;

				@media (width > 768px) {
					grid-template-columns: repeat(4, 1fr);
					gap: 24px var(--pd-h);
				}
			}

			.link {
				justify-content: space-between;
				width: 100%;

				&.disabled {
					color: var(--cl-gry01);
				}
			}
		}

		.search {
			width: 100%;
		}
	}

	/* よくある質問 */
	&.secFaq {
		--padH: 18px;
		--padV: 8px;

		@media (width > 768px) {
			--padH: var(--pd-h);
		}

		.faq {
			&:nth-child(n+2) {
				margin-top: var(--pd-vItem);
			}

			&.open {
				.answer {
					grid-template-rows: 1fr;
					margin-top: var(--pd-vItem);
				}

				.aInner {
					padding-top: var(--padV);
					padding-bottom: var(--padV);
				}
			}
		}

		.question,
		.aInner {
			display: flex;
			align-items: center;
			gap: var(--padH);
			padding: var(--padV) var(--padH);
		}

		.tag {
			flex: 0 0 auto;
			color: var(--cl-brand02);
			font-family: var(--ff-en);
			font-size: var(--fs-big);
			font-weight: var(--fw-medium);
			line-height: var(--lh-smaller);
		}

		.qText,
		.aContents {
			flex: 1 1 auto;
		}

		.question {
			background: var(--cl-bg01);
			border-radius: var(--br-basic);
			transition: var(--tr-basic);
			transition-property: opacity;

			@media (width > 768px) {
				cursor: pointer;

				&:hover {
					opacity: var(--tr-opacity);
				}
			}

			.button {
				flex: 0 0 auto;

				.btnOpenClose:hover {
					opacity: 1;
				}
			}
		}

		.qText {
			font-weight: var(--fw-medium);
		}

		.answer {
			display: grid;
			grid-template-rows: 0fr;
			transition: var(--tr-basic);
			transition-property: grid-template-rows, margin-top;

			.tag {
				color: var(--cl-brand03);
			}
		}

		.aInner {
			align-items: flex-start;
			padding-top: 0;
			padding-bottom: 0;
			overflow: hidden;
		}
	}

	/* 監修医師 */
	&.secDoctors {
		.doctor {
			padding: var(--pd-h);
			border: 1px solid var(--cl-brand01);
			border-radius: var(--br-basic);

			&:nth-child(n+2) {
				margin-top: var(--pd-vItem);
			}

			> :nth-child(n+2) {
				margin-top: var(--pd-vItem);
			}
		}

		.photo {
			max-width: 240px;
			aspect-ratio: 1;
			margin: 0 auto var(--pd-vSmall);
			border-radius: var(--br-basic);
			overflow: hidden;

			@media (width > 768px) {
				max-width: 288px;
			}
		}

		.nameArea {
			display: flex;
			justify-content: center;
			gap: 1.0em;
			font-weight: var(--fw-medium);
		}

		.additional {
			font-size: var(--fs-smaller);
			line-height: var(--lh-small);
		}
	}

	/* 限定解除要件 */
	&.secLimited {
		color: var(--cl-gry01);
		font-size: var(--fs-small);
		line-height: var(--lh-small);

		.partTitle {
			&:nth-child(n+2) {
				margin-top: calc(var(--lh-small) * 1em);
			}

			&::before {
				content: '■';
			}
		}

		.itemTitle,
		.itemDetail {
			display: inline;
		}

		.itemTitle {
			&::after {
				content: '：';
			}
		}
	}
}


/* ----------------------------------------

	ページ専用設定

---------------------------------------- */
/*
	セクション
*/
#officeMv {
	.mv {
		--w: 372;
		--h: 400;
		
		@media (width > 768px) {
			--w: 1200;
			--h: 550;
		}
		
		position: relative;
		border-radius: var(--br-basic);
		white-space: nowrap;
		overflow: hidden;
	}
	
	.title {
		position: absolute;
		left: 50%;
		top: calc(30 / var(--h) * 100%);
		background: var(--lg-blu01) no-repeat center / cover;
		background-clip: text;
		color: transparent;
		font-size: calc(30 / var(--w-design) * 100dvw);
		font-weight: var(--fw-medium);
		letter-spacing: -0.05em;
		line-height: 1.2;
		text-align: center;
		translate: -50% 0;
		
		@media (width > 768px) {
			left: calc(128 / var(--w) * 100%);
			top: calc(105 / var(--h) * 100%);
			font-size: min(37px, calc(37 / var(--w-design) * 100dvw));
			letter-spacing: var(--ls-basic);
			line-height: 1.4;
			translate: none;
		}
		
		.sub {
			display: inline-block;
			font-size: calc(18 / var(--w-design) * 100dvw);
			letter-spacing: 0;
			
			@media (width > 768px) {
				font-size: min(24px, calc(24 / var(--w-design) * 100dvw));
				letter-spacing: var(--ls-basic);
			}
		}
	}
	
	.summary {
		position: absolute;
		right: calc(29 / var(--w) * 100%);
		top: calc(129 / var(--h) * 100%);
		font-family: var(--ff-en);
		
		@media (width > 768px) {
			right: auto;
			left: calc(212 / var(--w) * 100%);
			top: calc(240 / var(--h) * 100%);
		}
		
		> .text {
			background: var(--lg-blu01) no-repeat center / cover;
			background-clip: text;
			color: transparent;
			font-size: calc(var(--fs-basicNum) / var(--w-design) * 100dvw);
			font-weight: var(--fw-medium);
			
			@media (width > 768px) {
				font-size: min(var(--fs-basic), calc(var(--fs-basicNum) / var(--w-design) * 100dvw));
			}
		}
		
		.item {
			display: flex;
			align-items: center;
			gap: calc(10 / var(--w-design) * 100dvw);
			margin-top: calc(6 / var(--w-design) * 100dvw);
			color: var(--cl-brand02);
			font-size: calc(var(--fs-smallerNum) / var(--w-design) * 100dvw);
			font-weight: var(--fw-medium);
			line-height: var(--lh-small);
			
			@media (width > 768px) {
				gap: min(10px, calc(10 / var(--w-design) * 100dvw));
				margin-top: min(8px, calc(8 / var(--w-design) * 100dvw));
				font-size: min(var(--fs-smaller), calc(var(--fs-smallerNum) / var(--w-design) * 100dvw));
				
				&:first-child {
					margin: 0;
				}
			}
			
			&::before {
				content: '';
				flex: 0 0 auto;
				display: block;
				width: calc(16 / var(--w-design) * 100dvw);
				aspect-ratio: 1;
				background: url("/common/images/ico_check.svg") no-repeat center / contain;
				
				@media (width > 768px) {
					width: min(16px, calc(16 / var(--w-design) * 100dvw));
				}
			}
			
			.text {
				flex: 0 1 auto;
				
				.bigger {
					font-size: calc(20 / var(--w-design) * 100dvw);
					
					@media (width > 768px) {
						font-size: min(24px, calc(24 / var(--w-design) * 100dvw));
					}
				}
				
				.note {
					display: inline-block;
					font-size: calc(8 / var(--w-design) * 100dvw);
					font-weight: var(--fw-regular);
					translate: 0 -100%;
					
					@media (width > 768px) {
						font-size: min(8px, calc(8 / var(--w-design) * 100dvw));
					}
				}
			}
		}
	}
	
	.catch {
		position: absolute;
		right: calc(29 / var(--w) * 100%);
		bottom: calc(85 / var(--h) * 100%);
		background: var(--lg-blu01) no-repeat center / cover;
		background-clip: text;
		color: transparent;
		font-family: var(--ff-en);
		font-size: calc(18 / var(--w-design) * 100dvw);
		font-weight: var(--fw-medium);
		line-height: 1.3;
		text-align: center;
		
		@media (width > 768px) {
			right: auto;
			left: calc(157 / var(--w) * 100%);
			bottom: calc(122 / var(--h) * 100%);
			font-size: min(25px, calc(25 / var(--w-design) * 100dvw));
			line-height: 1.8;
		}
		
		.bigger {
			font-size: calc(30 / var(--w-design) * 100dvw);
			
			@media (width > 768px) {
				font-size: min(39px, calc(39 / var(--w-design) * 100dvw));
			}
		}
	}
	
	.noteDetail {
		aspect-ratio: var(--w) / var(--h);
	}
}


#officeAbout {
	.summary {
		@media (width > 768px) {
			text-align: center;
		}
		
		&::before {
			content: '';
			display: block;
			aspect-ratio: 372 / 218;
			margin-bottom: var(--pd-vItem);
			background: url("images/img_ow_titlevisual_sp.webp") no-repeat center / cover;
			border-radius: var(--br-basic);
			
			@media (width > 768px) {
				aspect-ratio: 800 / 360;
				background-image: url("images/img_ow_titlevisual_pc.webp");
			}
		}
	}
	
	.features {
		margin-top: var(--pd-vItem);
		padding: var(--pd-h);
		background: var(--cl-bg01);
		border-radius: var(--br-basic);
		
		@media (width > 768px) {
			display: flex;
			flex-direction: column;
			align-items: center;
			box-shadow: var(--bs-basic);
		}
		
		.title {
			margin-bottom: var(--pd-vItem);
			font-size: var(--fs-big);
			font-weight: var(--fw-medium);
			line-height: var(--lh-smaller);
			text-align: center;
			
			&::before {
				content: '\03c';
			}
			&::after {
				content: '\03e';
			}
		}
		
		.feature {
			display: flex;
			align-items: center;
			gap: 10px;
			color: var(--cl-brand02);
			font-weight: var(--fw-medium);
			
			&::before {
				content: '';
				flex: 0 0 auto;
				display: block;
				width: 16px;
				aspect-ratio: 1;
				background: url("/common/images/ico_check.svg") no-repeat center / contain;
			}
			
			.text {
				flex: 0 1 auto;
			}
			
			.note {
				display: inline-block;
				font-size: var(--fs-small);
				line-height: var(--lh-small);
			}
		}
	}
	
	.noteDetail {
		margin-top: var(--pd-vSmall);
		color: var(--cl-gry01);
		font-size: var(--fs-small);
		line-height: var(--lh-small);
	}
	
	.bridal {
		margin-top: var(--pd-vItem);
	}
}


#officeReason {
	.summary {
		aspect-ratio: 372 / 220;
		border-radius: var(--br-basic);
		overflow: hidden;
		
		@media (width > 768px) {
			aspect-ratio: 1000 / 474;
		}
	}
	
	.pictures {
		margin-top: var(--pd-vItem);
		
		@media (width > 768px) {
			margin-top: 90px;
		}
		
		.noteDetail {
			margin-top: var(--pd-vSmall);
			color: var(--cl-gry01);
			font-size: var(--fs-small);
			line-height: var(--lh-small);
		}
	}
	
	.issue {
		aspect-ratio: 372 / 395;
		
		@media (width > 768px) {
			aspect-ratio: 800 / 396;
		}
	}
	
	.we {
		aspect-ratio: 372 / 418;
		margin-top: var(--pd-vItem);
		
		@media (width > 768px) {
			aspect-ratio: 802 / 398;
		}
	}
}


#officeBs {
	.sample {
		@media (width > 768px) {
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: var(--pd-h);
			border: 1px solid var(--cl-brand01);
			border-radius: var(--br-basic);
		}
	}
}


#officeMenu {
	overflow-x: hidden;
	
	.subSec {
		+ .subSec {
			margin-top: var(--pd-vGroup);
		}

		> .title {
			--w: 372;
			--h: 220;
			
			position: relative;
			aspect-ratio: var(--w) / var(--h);
			background: no-repeat center / cover;
			border-radius: var(--br-basic);
			overflow: hidden;
			
			@media (width > 768px) {
				--w: 1000;
				--h: 400;
			}
			
			.text {
				position: absolute;
				color: var(--cl-brand02);
				font-size: calc(var(--fs-smallerNum) / var(--w-design) * 100dvw);
				font-weight: var(--fw-medium);
				line-height: var(--lh-small);
				white-space: nowrap;
				
				@media (width > 768px) {
					font-size: min(18px, calc(18 / var(--w-contentsNum) * 100dvw));
					translate: -50% 0;
				}
			}
		}

		.subSecContainer {
			margin-top: var(--pd-vItem);
			
			@media (width > 768px) {
				max-width: var(--w-contentsNarrow);
				margin: var(--pd-vItem) auto 0;
			}

			> :not(.ttlDiamondWht) + * {
				margin-top: var(--pd-vItem);
			}
		}
		
		.lead {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: var(--pd-vSmall);
			
			.note {
				display: inline-block;
				font-size: var(--fs-small);
				line-height: var(--lh-small);
			}

			.noteDetail {
				color: var(--cl-gry01);
				font-size: var(--fs-small);
				line-height: var(--lh-small);
			}
		}
		
		.menuDetail {
			padding: var(--pd-h);
			background: var(--cl-bg01);
			border-radius: var(--br-basic);
			
			> :nth-child(n+2) {
				margin-top: var(--pd-vItem);
			}
			
			.contentTitle {
				display: flex;
				align-items: center;
				gap: 18px;
				font-weight: var(--fw-medium);
				
				@media (width > 768px) {
					gap: 24px;
				}
				
				&::before {
					content: '';
					flex: 0 0 auto;
					display: block;
					width: 73px;
					aspect-ratio: 73 / 63;
					background: no-repeat center / cover;
					border-radius: var(--br-small);
					box-shadow: var(--bs-narrow);
					
					@media (width > 768px) {
						width: 120px;
						aspect-ratio: 120 / 90;
					}
				}
				
				&.cleaning::before {
					background-image: url("images/img_ow_02_sp.webp");
					
					@media (width > 768px) {
						background-image: url("images/img_ow_02_pc.webp");
					}
				}
				
				&.light::before {
					background-image: url("images/img_ow_03_sp.webp");
					
					@media (width > 768px) {
						background-image: url("images/img_ow_03_pc.webp");
					}
				}
				
				&.coating::before {
					background-image: url("images/img_ow_04_sp.webp");
					
					@media (width > 768px) {
						background-image: url("images/img_ow_04_pc.webp");
					}
				}
				
				&.guard::before {
					background-image: url("images/img_ow_05_sp.webp");
					
					@media (width > 768px) {
						background-image: url("images/img_ow_05_pc.webp");
					}
				}
				
				.text {
					flex: 1 1 auto;
				}
			}
			
			.contentDetail {
				margin-top: var(--pd-vSmall);
				color: var(--cl-brand02);
				font-size: var(--fs-smaller);
				line-height: var(--lh-small);
			}
		}

		.price {
			font-size: var(--fs-big);
			font-weight: var(--fw-medium);
			line-height: var(--lh-smaller);
			text-align: right;

			.tax {
				font-size: var(--fs-smaller);
				font-weight: var(--fw-medium);
				line-height: var(--lh-small);
			}
		}
		
		&.weex {
			> .title .text {
				left: calc(131 / var(--w) * 100%);
				top: calc(161 / var(--h) * 100%);
				
				@media (width > 768px) {
					left: calc(694 / var(--w) * 100%);
					top: calc(332 / var(--h) * 100%);
				}
			}
			
			.menuDetailAdd {
				text-align: center;
			}
			
			.after {
				position: relative;
				
				&::before {
					content: '';
					display: block;
					position: absolute;
					left: 50%;
					bottom: -85px;
					width: 520px;
					aspect-ratio: 520 / 299;
					background: url("images/img_ow_bg_wave_sp.webp") no-repeat center / contain;
					z-index: -1;
					translate: -50% 0;
					
					@media (width > 768px) {
						right: 50%;
						left: auto;
						bottom: -91px;
						width: 1037px;
						aspect-ratio: 1037 / 580;
						background-image: url("images/img_ow_bg_wave_pc.webp");
						z-index: -1;
						translate: 500px 0;
					}
				}
				
				.image {
					aspect-ratio: 372 / 220;
					border-radius: var(--br-basic);
					overflow: hidden;
					
					@media (width > 768px) {
						aspect-ratio: 800 / 400;
					}
				}
				
				.text {
					margin-top: var(--pd-vItem);
					color: var(--cl-brand02);
					font-weight: var(--fw-medium);
					text-align: center;
				}
			}
		}
		
		&.owpro {
			> .title .text {
				left: calc(131 / var(--w) * 100%);
				top: calc(170 / var(--h) * 100%);
				
				@media (width > 768px) {
					left: calc(694 / var(--w) * 100%);
					top: calc(330 / var(--h) * 100%);
				}
			}
			
			.systemContainer {
				display: flex;
				flex-direction: column;
				align-items: center;
				position: relative;
				padding: var(--pd-h);
				background: var(--lg-gld01);
				box-shadow: var(--bs-basic);
				
				&::before {
					content: '';
					display: block;
					position: absolute;
					left: 50%;
					top: 50%;
					width: calc(100% - 4px);
					height: calc(100% - 4px);
					background: var(--cl-bg03);
					translate: -50% -50%;
				}
				
				> * {
					position: relative;
					z-index: 1;
				}
				
				.noteDetail {
					margin-top: var(--pd-vSmall);
					color: var(--cl-gry01);
					font-size: var(--fs-small);
					line-height: var(--lh-smaller);
				}
			}
			
			.systemName {
				background: var(--lg-gld01) no-repeat center / cover;
				background-clip: text;
				color: transparent;
				font-size: 25px;
				font-weight: var(--fw-medium);
				letter-spacing: 0.1em;
				line-height: 1.2;
				text-align: center;
				
				@media (width > 768px) {
					font-size: 31px;
				}
				
				&::before,
				&::after {
					content: '';
					display: block;
					position: absolute;
					top: 0;
					width: 35px;
					aspect-ratio: 35 / 79;
					background: url("/common/images/img_leaves.svg") no-repeat center / contain;
					
					@media (width > 768px) {
						width: 41px;
					}
				}
				
				&::before {
					right: calc(100% + 10px);
					
					@media (width > 768px) {
						right: calc(100% + 34px);
					}
				}
				
				&::after {
					left: calc(100% + 10px);
					scale: -1 1;
					
					@media (width > 768px) {
						left: calc(100% + 34px);
					}
				}
			}
			
			.systemDetail {
				margin-top: var(--pd-vGroup);
				color: var(--cl-gld01);
				font-weight: var(--fw-medium);
				text-align: center;
				
				@media (width > 768px) {
					margin-top: var(--pd-vItem);
				}
				
				.note {
					font-size: var(--fs-small);
				}
			}
			
			.menu {
				&:nth-child(n+2) {
					margin-top: var(--pd-vItem);
					padding-top: var(--pd-vItem);
					border-top: 1px solid var(--cl-brand01);

					@media (width > 768px) {
						margin-top: var(--pd-vGroup);
						padding-top: var(--pd-vGroup);
					}
				}
				
				> :nth-child(n+2) {
					margin-top: var(--pd-vItem);
				}
			}
			
			.menuCard {
				padding: var(--pd-h);
				background: var(--cl-bg01);
				border-radius: var(--br-basic);
				
				.contentsArea {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					gap: 24px;
					margin-top: var(--pd-vItem);
					
					@media (width > 768px) {
						gap: 90px;
					}
				}
				
				.menuContents {
					flex: 0 1 auto;
					font-size: var(--fs-smaller);
					line-height: var(--lh-small);
					
					.item {
						display: flex;
						align-items: flex-start;
					}
					
					.itemTitle {
						flex: 0 1 auto;
						
						&::after {
							content: '：';
						}
					}
					
					.itemDetail {
						flex: 1 1 auto;
					}
				}
				
				.target {
					flex: 0 0 auto;
					width: 69px;
					aspect-ratio: 69 / 36;
				}
			}
			
			.menuName {
				font-size: var(--fs-big);
				font-weight: var(--fw-medium);
				line-height: var(--lh-smaller);
			}
			
			.optionText {
				@media (width > 768px) {
					width: fit-content;
					margin-right: auto;
					margin-left: auto;
				}
			}
		}
	}
}


#officeTechnique {
	@media (width <= 768px) {
		padding: var(--pd-vGroup) 0;
		background: url("images/img_wefeatures_bg_sp.webp") no-repeat center top / cover;
	}
	
	.container {
		@media (width > 768px) {
			padding: var(--pd-h);
			background: url("images/img_wefeatures_bg_pc.webp") no-repeat center top / cover;
			border-radius: var(--br-basic);
		}
	}
	
	.inner {
		@media (width > 768px) {
			max-width: 700px;
			margin: 0 auto;
		}
	}
	
	.secTitle {
		color: #fff;
		font-size: var(--fs-big);
		font-weight: var(--fw-medium);
		line-height: var(--lh-smaller);
		text-align: center;
		
		&::before {
			content: '';
			display: block;
			width: 56px;
			aspect-ratio: 56 / 42;
			margin: 0 auto 16px;
			background: #fff url("/common/images/logo_we.svg") no-repeat center / contain;
			background-blend-mode: lighten;
			mask: url("/common/images/logo_we.svg") center / contain;
			
			@media (width > 768px) {
				width: 100px;
				margin: 0 auto;
			}
		}
		
		&::after {
			content: '';
			display: block;
			aspect-ratio: 372 / 230;
			margin-top: var(--pd-vGroup);
			background: url("images/img_ow_wefeatures_sp.webp") no-repeat center / cover;
			border-radius: var(--br-basic);
			
			@media (width > 768px) {
				aspect-ratio: 700 / 433;
				margin-top: 90px;
				background-image: url("images/img_ow_wefeatures_pc.webp");
			}
		}
	}
	
	.itemsList {
		margin-top: var(--pd-vGroup);
		padding: var(--pd-h);
		background: var(--cl-bg01);
		border-radius: var(--br-basic);
	}
	
	.item {
		display: flex;
		align-items: center;
		gap: 18px;
		color: var(--cl-brand02);
		font-size: var(--fs-smaller);
		font-weight: var(--fw-medium);
		line-height: var(--lh-small);
		
		@media (width > 768px) {
			gap: 24px;
			font-size: var(--fs-basic);
			line-height: var(--lh-basic);
		}
		
		&:nth-child(n+2) {
			margin-top: var(--pd-vItem);
		}
		
		&::before {
			content: '';
			flex: 0 0 auto;
			width: 73px;
			aspect-ratio: 73 / 63;
			background: no-repeat center / cover;
			border-radius: var(--br-small);
			box-shadow: var(--bs-narrow);
			
			@media (width > 768px) {
				width: 120px;
				aspect-ratio: 120 / 90;
			}
		}
		
		&.technique::before {
			background-image: url("images/img_ow_06_sp.webp");
			
			@media (width > 768px) {
				background-image: url("images/img_ow_06_pc.webp");
			}
		}
		
		&.development::before {
			background-image: url("images/img_ow_07_sp.webp");
			
			@media (width > 768px) {
				background-image: url("images/img_ow_07_pc.webp");
			}
		}
		
		&.treatment::before {
			background-image: url("images/img_ow_05_sp.webp");
			
			@media (width > 768px) {
				background-image: url("images/img_ow_05_pc.webp");
			}
		}
		
		&.training::before {
			background-image: url("images/img_ow_08_sp.webp");
			
			@media (width > 768px) {
				background-image: url("images/img_ow_08_pc.webp");
			}
		}
		
		&.system::before {
			background-image: url("images/img_ow_09_sp.webp");
			
			@media (width > 768px) {
				background-image: url("images/img_ow_09_pc.webp");
			}
		}
		
		.text {
			flex: 1 1 auto;
		}
	}
}


#officeFixedBottom {
	position: sticky;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 10000;
	
	@media (width > 768px) {
		display: none;
	}
	
	.buttons {
		display: flex;
		align-items: stretch;
	}

	.button {
		flex: 1 1 auto;
		width: 100%;
		
		a {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 12px;
			min-height: 52px;
			background: no-repeat center / cover;
			border-radius: var(--br-basic) var(--br-basic) 0 0;
			color: #fff;
			font-size: 20px;
			font-weight: var(--fw-bold);
			white-space: nowrap;
			overflow: hidden;
			
			&::before {
				content: '';
				flex: 0 0 auto;
				display: block;
				width: auto;
				height: 30px;
				background: no-repeat center / contain;
			}
		}
		
		&.tel a {
			background-image: var(--lg-blu01);

			&::before {
				aspect-ratio: 1;
				background-image: url("images/ico_phone.svg");
			}
		}
		
		&.web a {
			background-image: var(--lg-pnk01);

			&::before {
				aspect-ratio: 37 / 32;
				background-image: url("images/ico_calendar.svg");
			}
		}
	}

	.line {
		position: absolute;
		right: 6px;
		bottom: calc(100% + 22px);
		opacity: 0;
		visibility: hidden;
		transition: var(--tr-basic);
		transition-property: opacity, visibility;
		
		&.show {
			opacity: 1;
			visibility: visible;
		}

		.close {
			position: absolute;
			top: 0;
			right: -5px;
			width: 30px;
			aspect-ratio: 1;
			background: #fff;
			color: var(--cl-brand01);
			border: 1px solid currentColor;
			border-radius: 50%;
			translate: 0 -66.6%;

			&::before,
			&::after {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				left: 50%;
				width: 60%;
				height: 1px;
				background: currentColor;
				rotate: 45deg;
				translate: -50% -50%;
			}
			
			&::after {
				rotate: -45deg;
			}
			
			.text {
				display: inline-block;
				width: 1px;
				height: 1px;
				clip-path: inset(50%);
				overflow: hidden;
			}
		}

		a {
			display: block;
			width: 186px;
			aspect-ratio: 186 / 52;
			border-radius: var(--br-small);
			overflow: hidden;
		}
	}
}
