/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=BIZ+UDPGothic:wght@400;700&display=swap');
/* Noto JP
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400; regular
font-weight: 500; medium
font-weight: 700; bold
*/

[src="[url]"]{
	display: block;
	width: 100%;
	height: auto;
	background: #ccc;
}

[src*="src"]{
	display: block;
	width: 100%;
	height: auto;
	background: var(--dummy);
}

[LSC-LT]{
	display: contents;
}

:root{
	--color: #333;
	--color-rgb: 51, 51, 51;
	--color-theme: #3662c6;
	--color-theme-rgb: 54,98,198;
	--color-cta: #fc9149;
	--color-cta-rgb: 252,145,73;
	
	--color-entry: #ff8d28;
	--color-entry-rgb: 255, 141, 40;
	
	--color-bg: #f2f2f2;
	--color-bg-rgb: 242, 242, 242;
	--variable-color: var(--color-theme);
	--color-border: #ccc;
	--color-border-rgb: 204, 204, 204;
	--font: 'Noto Sans JP', 'BIZ UDPGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
	--wrap-space: 24px;
	--wrap-fit: calc(min(100dvw, 100%) - clamp(48px, calc(96 / 1200 * 100dvw), 96px));
	--wrap-max: 1200px;
	--wrap: clamp(327px, calc(max(100dvw, 100%) - clamp(48px, calc(96 / 1200 * 100dvw), 96px)), var(--wrap-max));
	--dummy: #f2f2f2 url('/common/images/logoType.svg') no-repeat center / 75%;
}

html{
	min-width: 375px;
	scroll-behavior: smooth;
	scroll-padding-top: 56px;
}

body{
	color: var(--color);
	font: 400 16px var(--font);
	line-height: 1.65;
	overflow-wrap: anywhere;
}
::selection{
	background: var(--color-theme);
	color: #fff;
}
::-moz-selection{
	background: var(--color-theme);
	color: #fff;
}

a{
	color: inherit;
	.done &{
		transition-property: color, text-decoration, background, background-color, background-size, border, border-color, box-shadow, filter, opacity;
		transition-duration: 0.2s;
		transition-timing-function: ease-out;
	}
	:focus-visible{
		outline: var(--color-theme) auto 2px;
		outline-offset: 2px;
	}
}

wbr{
	.translated-ltr &:not(:lang(ja)){
		display: none;
	}
}

main{
	& a{
		color: var(--color-theme);
		text-decoration: underline;
	}
}

input,
textarea,
select{
	background-color: transparent;
	accent-color: var(--color-theme);
	caret-color: var(--color-theme);
}

input{
	&[type="checkbox"]:checked,
	&[type="radio"]:checked{
		background-color: var(--color-theme);
	}
}

button{
	display: grid;
	align-items: center;
	min-height: 48px;
	padding: 8px 16px;
	background: black;
	color: white;
	text-align: center;
	&:focus-visible{
		outline: var(--color-theme) auto 2px;
		outline-offset: 2px;
	}
}

details{
	all: unset;
	display: block;
	box-sizing: border-box;
	&::details-content{
		box-sizing: border-box;
	}
}

summary{
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
	&::-webkit-details-marker{
		display:none;
	}
}

#wrapper{
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100dvh;
	#header{
		grid-column: 1;
		grid-row: 1;
		position: sticky;
		top: 0;
		z-index: 110;
	}
	#nav{
		z-index: 120;
		@media (min-width: 992px) {
			display: grid;
			grid-column: 1;
			grid-row: 1;
			justify-self: end;
			align-items: center;
			position: sticky;
			padding-right: 20px;
			top: 0;
		}
	}
	#pagePath,
	#footer,
	#pageTop{
		order: 10;
	}
	#navButton{
		grid-column: 1;
		grid-row: 1;
		justify-self: end;
		position: sticky;
		top: 0;
		z-index: 120;
	}
}

#header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 20px;
	background: #fff;
	@media (max-width: 991.98px) {
		min-height: 56px;
	}
	@media (min-width: 992px) {
		min-height: 80px;
	}
	&:has(figure){
		display: grid;
		#siteName{
			grid-column: 1;
			grid-row: 1;
			& a{
				display: block;
				font-size: 0;
			}
		}
		& figure{
			grid-column: 1;
			grid-row: 1;
			& img{
				width: auto;
				max-width: 100%;
				@media (max-width: 991.98px) {
					height: 32px;
				}
				@media (min-width: 992px) {
					height: 56px;
				}
			}
		}
	}
}

#siteName{
	z-index: 1;
	& a{
		display: grid;
		align-items: anchor-center;
		font-weight: 700;
		font-size: clamp(18px, 1.8vw, 24px);
		@media (max-width: 991.98px) {
			height: 32px;
		}
		@media (min-width: 992px) {
			height: 40px;
		}
	}
}

#navButton{
	all: unset;
	box-sizing: border-box;
	display: grid;
	align-content: center;
	justify-items: center;
	grid-gap: 4px;
	width: 56px;
	aspect-ratio: 1;
	background: var(--color-theme);
	color: #fff;
	overflow: hidden;
	pointer-events: all;
	cursor: pointer;
	@media (min-width: 992px) {
		display: none;
	}
	.nav &{
		background: #fff;
		color: var(--color-theme);
	}
	& i{
		width: 50%;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
		animation-duration: 0.75s;
		animation-fill-mode: forwards;
		transition: transform 0.75s;
	}
	&.on{
		& i:nth-of-type(1){
			animation-name: navButton-bar01_on;
		}
		& i:nth-of-type(2){
			animation-name: navButton-bar02_on;
		}
		& i:nth-of-type(3){
			animation-name: navButton-bar03_on;
		}
	}
	&.off{
		& i:nth-of-type(1){
			animation-name: navButton-bar01_off;
		}
		& i:nth-of-type(2){
			animation-name: navButton-bar02_off;
		}
		& i:nth-of-type(3){
			animation-name: navButton-bar03_off;
		}
	}
}
@keyframes navButton-bar01_on{
	0% {
		transform: translateY(0);
		}
	50% {
		transform: translateY(6px) rotate(0);
		}
	100% {
		transform: translateY(6px) rotate(45deg);
		}
	}
@keyframes navButton-bar01_off{
	0% {
		transform: translateY(6px) rotate(45deg);
		}
	50% {
		transform: translateY(6px) rotate(0);
		}
	100% {
		transform: translateY(0);
		}
	}
@keyframes navButton-bar02_on{
	0% {
		transform: scaleX(1);
		}
	50% {
		transform: scaleX(1);
		}
	51% {
		transform: scaleX(0);
		}
	100% {
		transform: scaleX(0);
		}
	}
@keyframes navButton-bar02_off{
	0% {
		transform: scaleX(0);
		}
	49% {
		transform: scaleX(0);
		}
	50% {
		transform: scaleX(1);
		}
	100% {
		transform: scaleX(1);
		}
	}
@keyframes navButton-bar03_on{
	0% {
		transform: translateY(0);
		}
	50% {
		transform: translateY(-6px) rotate(0);
		}
	100% {
		transform: translateY(-6px) rotate(-45deg);
		}
	}
@keyframes navButton-bar03_off{
	0% {
		transform: translateY(-6px) rotate(-45deg);
		}
	50% {
		transform: translateY(-6px) rotate(0);
		}
	100% {
		transform: translateY(0);
		}
	}

#nav{
	& h2{
		display: none;
	}
	& ul{
		list-style: none;
	}
	& li{
		&:last-child a{
			display: grid;
			grid-template-columns: auto 16px;
			justify-content: center;
			align-items: center;
			grid-gap: 8px;
			min-width: 210px;
			height: 48px;
			background: var(--color-cta);
			color: #fff;
			border-radius: 50px;
			&:after{
				content: "";
				aspect-ratio: 1;
				background: currentColor;
				-webkit-mask: var(--icon-more) no-repeat center/ contain;
			}
			&:hover{
				opacity: .7;
			}
		}
	}
	@media (max-width: 991.98px) {
		position: fixed;
		top: 0;
		left: 100%;
		display: grid;
		width: min(100%, 380px);
		height: 100%;
		padding: 56px 0;
		background: var(--color-theme);
		color: #fff;
		overflow-y: auto;
		overscroll-behavior: none;
		transform: translateX(0);
		transition: transform 0.2s ease-out;
		.nav &{
			transform: translateX(-100%);
		}
		& ul{
			display: grid;
			align-content: start;
			grid-template-columns: 20px auto 20px;
			grid-gap: 16px;
			padding: 16px 0 16px;
		}
		& li{
			grid-column: 2;
			&:not(:last-child) a{
				position: relative;
				grid-template-columns: auto 1fr;
				grid-gap: 0 8px;
				align-items: center;
				padding-bottom: 16px;
				border-bottom: 1px solid rgba(255, 255, 255, .5);
				&:before{
					content: "";
					width: 12px;
					aspect-ratio: 1;
					background: #fff;
					-webkit-mask: var(--icon-arrow) center / contain no-repeat;
					border-radius: 100%;
				}
			}
			&:last-child a{
				justify-self: center;
				margin-top: 32px;
				border: 1px solid #fff;
			}
		}
		& a{
			display: grid;
		}
	}
	@media (min-width: 992px) {
		justify-self: end;
		& ul{
			display: flex;
			align-items: center;
			grid-gap: clamp(14px, calc(48 / 1200 * 100dvw), 48px);
		}
		& li{
			display:contents;
			&:last-child a{
/*				min-width: 210px;
				height: 48px;*/
			}
		}
		& a{
			color: #26221f;
			&:hover{
				color: var(--color-theme);
			}
		}
	}
	@media (min-width: 992px) and (max-width: 1199.98px) {
		& ul{
			grid-gap: 16px;
			}
		& a{
			font-size: 14px;
		}
	}
}

#pagePath{
	display: grid;
	grid-template-columns: var(--wrap);
	justify-content: center;
	padding: 16px 0;
	background: color-mix(in srgb, var(--color-theme) 15%, white);
	& ul{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		grid-gap: 8px;
		font-size: clamp(12px, calc(14 / 1200 * 100dvw), 14px);
	}
	& li{
		display: contents;
		&:nth-child(n+2){
			&:before{
				content: "";
				aspect-ratio: 1;
				width: 12px;
				background: var(--color);
				-webkit-mask: var(--icon-arrow) no-repeat center / contain;
			}
		}
		&:last-child{
			color: var(--color-theme);
			font-weight: 700;
		}
	}
	& a{
		color: inherit;
		font-weight: 500;
		letter-spacing: 0.05em;
		&:hover{
			text-decoration: underline;
		}
	}
}

#footer{
	display: grid;
	grid-gap: 16px 0;
	padding-top: 16px;
	font-size: 14px;
	background: var(--color-bg);
}

#fNav{
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(var(--color-rgb), .1);
	& ul{
		display: grid;
		grid-gap: 8px 0;
	}
	& li{
		display: grid;
		grid-template-columns: auto 1fr;
		grid-gap: 0 8px;
		&:before{
			content: "";
			width: 12px;
			aspect-ratio: 1;
			background: var(--color);
			-webkit-mask: var(--icon-arrow) center / contain no-repeat;
			transform: translateY(0.35em);
		}
	}
	& a{
		&[target="_blank"]{
			position: relative;
			&:after{
				content: "";
				display: inline-block;
				vertical-align: -0.15em;
				margin-left: 4px;
				width: 14px;
				aspect-ratio: 1;
				background: rgba(var(--color-rgb), .7);
				-webkit-mask: var(--icon-popup) center / contain no-repeat;
			}
		}
		&:hover{
			text-decoration: underline;
		}
	}
	@media (max-width: 767.98px) {
		margin: auto;
		width: var(--wrap);
	}
	@media (min-width: 768px) {
		& ul{
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			grid-gap: 16px clamp(24px, calc(48 / 1200 * 100dvw), 48px);
		}
	}
}

#fAddress{
	display: grid;
	align-items: start;
	grid-gap: clamp(24px, calc(56 / 1200 * 100dvw), 56px);
	margin: 0 16px;
	padding: 16px 0;
	& dl{
		display: grid;
		grid-gap: 8px 0;
		justify-content: center;
	}
	& dt{
		display: none;
	}
	& dd:first-of-type{
		font-weight: 700;
	}
	@media (max-width: 767.98px) {
		margin: auto;
		width: var(--wrap);
		& dd+dt{
			margin-top: 8px;
		}
	}
}

#copyright{
	display: grid;
	grid-template-columns: var(--wrap);
	justify-content: center;
	place-items: center;
	min-height: 48px;
	padding: 4px 0;
	background: var(--color-theme);
	color: #fff;
	& p{
		font-size: 12px;
		line-height: 1.25;
		text-align: center;
	}
	@media (max-width: 767.98px) {
		& p{
			width: 22em;
		}
	}
	@media (min-width: 768px) {
	}
}

#pageTop{
	position: sticky;
	bottom: 0;
	font-size: 0;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s ease-out 1s;
	z-index: 100;
	.done:not(.scrollTop) &{
		opacity: 1;
	}
	&:hover:before{
		background: rgba(var(--color-theme-rgb), .7);
	}
	&:before,
	&:after{
		content: "";
		position: absolute;
		right: clamp(8px, calc(16 / 1200 * 100dvw), 16px);
		bottom: clamp(8px, calc(16 / 1200 * 100dvw), 16px);
		aspect-ratio: 1;
		width: 48px;
		border: 1px solid #fff;
		border-radius: 8px;
	}
	&:before{
		background: rgba(var(--color-theme-rgb), .8);
	}
	&:after{
		background: #fff;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M2.582 13.891c-0.272 0.268-0.709 0.268-0.979 0s-0.271-0.701 0-0.969l7.908-7.83c0.27-0.268 0.707-0.268 0.979 0l7.908 7.83c0.27 0.268 0.27 0.701 0 0.969s-0.709 0.268-0.978 0l-7.42-7.141-7.418 7.141z" /></svg>') center / 30px no-repeat;
	}
	@media (max-width: 767.98px) {
		bottom: 48px;
	}
}

#pagenation{
	display: grid;
	grid-template-columns: var(--wrap);
	justify-content: center;
	margin: clamp(56px, calc(96 / 1200 * 100dvw), 96px) auto;
	& ul,
	& ol{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		grid-gap: 8px;
	}
	& a{
		display: grid;
		aspect-ratio: 1;
		width: 48px;
		place-items: center;
		border: 1px solid var(--color-theme);
		border-radius: 100%;
		color: var(--color-theme);
		font-size: 20px;
		text-decoration: none;
		line-height: 1;
		&[rel="prev"],
		&[rel="next"]{
			font-size: 0;
			border-color: transparent;
			&:before, &:after{
				content: "";
				grid-column: 1;
				grid-row: 1;
				aspect-ratio: 1;
				width: 100%;
			}
			&:before{
				background: currentColor;
				border-radius: 100%;
			}
			&:after{
				background: #fff;
				-webkit-mask: var(--icon-arrow) center / 40% no-repeat;
				transform: translateX(2px);
			}
		}
		&[rel="prev"]{
			transform: scale(-1, 1);
		}
		&[rel="list"]{
			aspect-ratio: unset;
			width: auto;
			min-width: min(80%, 240px);
			height: 48px;
			padding: 8px 1.5em;
			border-radius: 24px;
			font-size: inherit;
		}
		&.lsc-current-page{
			background: var(--color-theme);
			border-color: transparent;
			color: #fff;
		}
	}
	[LSC-LB*="lscListPgn"]{
		display: none;
	}
}

.wrap{
	width: var(--wrap);
	margin: 0 auto;
}

.subject{
	margin: 0;
	padding-top: clamp(24px, calc(56 / 1200 * 100dvw), 56px);
	font-weight: 700;
	font-size: clamp(32px, calc(40 / 1200 * 100dvw), 40px);
	color: var(--color-theme);
	text-align: center;
	letter-spacing: 0.05em;
}

.headline{
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: clamp(32px, calc(40 / 1200 * 100dvw), 40px);
	color: var(--color-theme);
	text-align: center;
	letter-spacing: 0.05em;
}

.title{
	display: grid;
	justify-items: center;
	grid-row-gap: 16px;
	position: relative;
/*	margin-bottom: clamp(24px, calc(48 / 1200 * 100dvw), 48px);*/
	padding: 0;
	font-weight: 700;
	font-size: clamp(24px, calc(32 / 1200 * 100dvw), 32px);
	line-height: 1.4;
	letter-spacing: 0.05em;
	&:not([data-ruby]){
		&:before{
			display: none;
		}
	}
	&:before{
		content: attr(data-ruby);
		font-weight: 500;
		font-size: clamp(12px, calc(14 / 1200 * 100dvw), 14px);
		color: var(--color-theme);
		letter-spacing: 0.15em;
		line-height: 1;
		text-transform: uppercase;
	}
	&:after{
		content: "";
		width: 48px;
		height: 4px;
		background: var(--color-theme);
		border-radius: 2px;
	}
	&.left{
		@media (min-width: 576px) {
			justify-items: left;
		}
	}
}

.subTitle{
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: 0.5em;
	color: inherit;
	font-weight: 700;
	font-size: clamp(18px, calc(24 / 768 * 100dvw), 24px)!important;
	letter-spacing: 0.05em;
	&:before{
		content: "";
		width: 3px;
		height: 1em;
		background: rgba(var(--color-theme-rgb), .5);
		transform: translateY(calc(0.875em - 50%));
	}
}

.buttonSet{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 16px;
	& li{
		display: contents;
	}
	@media (max-width: 575.98px) {
		flex-direction: column;
		padding: 0 10%;
	}
}

/*.button{
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 0.5em;
	min-width: min(100%, 240px);
	min-height: clamp(48px, calc(56 / 768 * 100dvw), 56px);
	padding: 0.25em 1.5em;
	background: var(--color-theme);
	border-radius: 50px;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
	&:before,
	&:after{
		content: "";
		grid-column: 2;
		grid-row: 1;
		aspect-ratio: 1;
		width: 20px;
	}
	&:before{
		background: currentColor;
		border-radius: 100%;
	}
	&:after{
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		-webkit-mask: var(--icon-more) no-repeat center/ contain;
	}
}*/
.button{
	display: inline-grid;
	grid-template-columns: auto 16px;
	justify-content: center;
	align-items: center;
	grid-gap: 8px;
	padding: 8px 32px;
	min-width: min(100%, 280px);
	min-height: 48px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	background: var(--color-theme);
	&:after{
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		-webkit-mask: var(--icon-more) no-repeat center/ contain;
	}
	&:hover{
		opacity: .8;
	}
}

.list{
	display: grid;
	grid-gap: 8px;
	list-style: none;
	&:where(.point, .count){
		& > li{
			position: relative;
			padding-left: 1em;
			&:before{
				position: absolute;
				top: 0;
				left: 0;
			}
		}
	}
	&.point{
		list-style: none;
		margin: 0;
		padding: 0;
		& > li{
			&:before{
				content: "●";
				color: var(--color-theme);
				transform: scale(0.5);
			}
		}
	}
	&.notes{
		list-style: none;
		margin: 0;
		padding: 0;
		& > li{
			display: block;
			padding-left: 14px;
			text-indent: -14px;
			font-size: 14px;
			position: relative;
			&:before{
				content: "※";
			}
		}
	}
	&.count{
		list-style: none;
		margin: 0;
		padding: 0;
		counter-reset: count;
		grid-column-gap: 0;
		& > li{
			padding-left: 1em;
			&:before{
				counter-increment: count;
				content: counter(count)".";
			}
		}
		&:has(li:nth-child(10)) > li{
			padding-left: 1.5em;
			&:nth-child(-n+9):before{
				content: "0"counter(count)".";
			}
		}
		& .list.count{
			& > li{
				&:before{
					content: "（"counter(count)"）";
				}
			}
		}
	}
	& .list{
		margin-top: 8px;
	}
}

.table{
	& :where(th, td, dt, dd){
		padding: 0.8em;
		line-height: 1.5;
	}
	& :where(th,td){
		border: 1px solid rgba(var(--color-border-rgb), 0.5);
		vertical-align: middle;
	}
	&:is(table){
		width: 100%;
		table-layout: fixed;
		border-collapse: collapse;
	}
	& thead{
		background: rgba(var(--color-theme-rgb), 0.15);
	}
	& th{
		background: rgba(var(--color-bg-rgb), 0.5);
	}
	& > dt{
		background: rgba(var(--color-theme-rgb), 0.15);
	}
	& > dd{
		background: rgba(var(--color-bg-rgb), 0.5);
	}
	@media (max-width: 575.98px) {
		& > dd+dt{
			margin-top: 4px;
		}
	}
	@media (min-width: 576px) {
		&:is(dl){
			display: grid;
			grid-template-columns: clamp(132px, 30%, 15em) 1fr;
			grid-gap: 4px 0;
			}
	}
}

.tableScroll{
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	.table{
		width: auto;
		min-width: 100%;
		white-space: nowrap;
	}
}

.googlemap{
	& iframe{
		aspect-ratio: 3 / 2;
		width: 100%;
		height: auto;
	}
}

/* youtube 埋め込み */
.youtube,
.youtubeShorts{
	display: grid;
	& iframe{
		justify-self: center;
		height: auto;
	}
	&.youtube iframe{
		aspect-ratio: 16 / 9;
		width: 100%;
		max-width: 850px;
	}
	&.youtubeShorts iframe{
		aspect-ratio: 9 / 16;
		width: 31.6%;
	}
}

.center{
	text-align: center;
	justify-items: center;
}


:root{
	--icon-arrow: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.6,2.58c-.27-.27-.27-.71,0-.98s.7-.27.97,0l7.83,7.91c.27.27.27.71,0,.98l-7.83,7.91c-.27.27-.7.27-.97,0s-.27-.71,0-.98l7.14-7.42S5.6,2.58,5.6,2.58Z"/></svg>');
	--icon-more: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.9,12.66H3.66c-.19,0-.34-.06-.47-.19s-.19-.28-.19-.47.06-.34.19-.47c.13-.13.28-.19.47-.19h15.24l-4.92-4.89c-.13-.13-.2-.28-.2-.45,0-.17.06-.33.2-.48.15-.14.3-.22.47-.22.17,0,.32.07.47.21l5.77,5.74c.11.11.2.23.24.35.05.12.07.25.07.39,0,.14-.02.27-.07.39-.05.12-.13.24-.24.35l-5.77,5.74c-.13.13-.28.19-.46.2-.18,0-.34-.06-.48-.21-.14-.14-.21-.3-.21-.46,0-.16.07-.32.21-.46l4.92-4.89Z"/></svg>');
	--icon-popup: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M184.62-120q-27.62 0-46.12-18.5Q120-157 120-184.62v-430.76q0-27.62 18.5-46.12Q157-680 184.62-680h80v-95.38q0-27.62 18.5-46.12 18.5-18.5 46.11-18.5h446.15q27.62 0 46.12 18.5Q840-803 840-775.38v446.15q0 27.61-18.5 46.11t-46.12 18.5H680v80q0 27.62-18.5 46.12Q643-120 615.38-120H184.62Zm144.61-184.62h446.15q9.24 0 16.93-7.69Q800-320 800-329.23v-446.15q0-9.24-7.69-16.93-7.69-7.69-16.93-7.69H329.23q-9.23 0-16.92 7.69-7.69 7.69-7.69 16.93v446.15q0 9.23 7.69 16.92 7.69 7.69 16.92 7.69Z"/></svg>');
}


