@charset "utf-8";

:root {
	--geisei-navy: rgb(32, 60, 94);
	--geisei-blue: rgb(138, 189, 221);
	--geisei-gray: rgb(86, 99, 105);
	--onestop-green: rgb(157, 177, 0);
	--onestop-orange: rgb(255, 99, 2);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

a,
a > * {
	-webkit-transition: initial;
	transition: initial;
}

dl dd {
	line-height: 200%;
}

.button {
	position: relative;
	padding: 0;
	border: 2px solid var(--geisei-navy);
	border-radius: 8px;
	border-radius: 0.5em;
	background-color: var(--geisei-navy);
	color: white;
	font-size: 100%;
	line-height: 100%;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.button:last-child,
.button:only-child {
	margin-bottom: 0;
}

.button:hover,
.button:focus {
	border-color: var(--geisei-blue);
	background-color: white;
	color: var(--geisei-blue);
}

.button.rounded {
	border-radius: 3rem;
}

.button.extended {
	width: 100%;
}

.button.large {
	font-size: 125%;
}

.button.small {
	font-size: 90%;
}

.button.wide {
	min-width: 300px;
	min-width: 18.75em;
	max-width: 50%;
	width: 50%;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {

	.button.wide {
		width: 100%;
		max-width: 75vw;
	}
}

@media print,
screen and (max-width: 39.9375em) {

	.button.wide {
		max-width: inherit;
	}
}

.button > * {
	-webkit-transition: none;
	transition: none;
}

.button > span {
	position: relative;
	width: 100%;
	padding: 0.85em 1em;
	padding-right: 2em;
}

.button > span {
	content: none;
}

.button > span::before {
	display: block;
	position: absolute;
	top: calc(50% - 0.5em/4);
	right: 1em;
	z-index: 2;
	width: 0.5em;
	height: 0.5em;
	border: 2px solid white;
	border-top: none;
	border-right: none;
	content: '';
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.button[href^="http"] > span::before {
	border-right: 2px solid white;
	border-left: none;
}

.button:hover > span::before {
	border-color: var(--geisei-blue);
}

.notes {
	font-size: 14px;
	font-size: 87.5%;
}

.accordion-check {
	display: none;
}

.accordion-label {
	display: block;
}

.accordion-content {
	display: block;
	position: relative;
	height: 0;
	padding: 0 10px;
	border: 1px solid #333;
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	visibility: hidden;
}

.accordion-check:checked + .accordion-label + .accordion-content {
	height: auto;
	width: 100%;
	opacity: 1;
	visibility: visible;
}

#page:not(.information) .contents .details .row:only-child {
	padding-bottom: calc(60px + 420px);
	padding-bottom: calc(3.75em + 26.25em);
}

.details.onestop h2,
.details.onestop h3,
.details.onestop h4,
.details.onestop h5,
.details.onestop h6 {
	font-size: inherit;
	line-height: 125%;
}

.details.onestop h3 > span {
	letter-spacing: -0.025em !important;
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop h3 > span span {
		display: inline;
	}
}

.details.onestop .underline {
	border-bottom-style: solid;
	border-bottom-width: 2px;
	font-weight: 700;
}

.details.onestop .row .inner {
	padding: 80px;
	padding: 5em;
	background-color: white;
}

#page.page.bespoke.onestop .details.onestop .row .inner {
	padding-top: 0;
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .row .inner {
		padding: calc(100vw/12);
	}
}

.details.onestop .row ~ .row .inner {
	padding-top: 0 !important;
}

.details.onestop .row .cell {
	padding-bottom: 0 !important;
}

#page.page.bespoke.onestop .details.onestop .row:first-child .block {
	border-radius: 0;
	background: none;
}

#page.page.bespoke.onestop .details.onestop .row:first-child .block::before {
	content: none;
}

.details.onestop .block:not(:last-child) {
	margin-bottom: 60px;
	margin-bottom: 3.75em;
}

.details.onestop .row:first-child .block h3 {
	margin-bottom: 80px !important;
	margin-bottom: 2em !important;
}

#page.page.bespoke.onestop .details.onestop .row:first-child .block p {
	padding: inherit;
	font-size: 100%;
}

.details.onestop .block em {
	color: var(--geisei-navy) !important;
}

.details.onestop .block ul {
	margin-left: 0;
}

#page.page.bespoke.onestop .details.onestop .block ul > li {
	margin-right: 0;
}

#page.page.bespoke.onestop .details.onestop .block ul.notes > li:not(:last-child) {
	margin-bottom: 0.75em;
}

@media print,
screen and (max-width: 39.9375em) {

	.details.onestop .block > h4,
	.details.onestop .block > h5,
	.details.onestop .block > h6 {
		text-justify: inter-ideograph !important;
		text-align: justify !important;
	}
}

.details.onestop .block > h4 {
	position: relative;
	margin-bottom: 1em !important;
	padding-bottom: 0.75em;
	color: var(--geisei-navy) !important;
	font-size: 30px;
	font-size: 187.5%;
}

@media print,
screen and (min-width: 40em) {
	body:not(.rms) .details.onestop .block > h4 {
		text-align: center !important;
	}
}

@media print,
screen and (min-width: 75em) {
	.rms .details.onestop .block > h4 {
		text-align: center !important;
	}
}

.details.onestop .block > h4::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: 2px;
	background-color: var(--geisei-navy);
	content: '';
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .block > h4 + p {
		text-align: center;
	}
}

.rms .details.onestop .intro .block > h3 {
	color: var(--geisei-navy);
	font-size: 36px;
	font-size: 225%;
	font-weight: 700;
	line-height: 100%;
}

@media print,
screen and (min-width: 40em) {
	.rms .details.onestop .intro .block > h3 {
		text-align: center;
	}
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.rms .details.onestop .intro .block > h3 {
		line-height: 125%;
	}
}

@media print,
screen and (min-width: 75em) {
	.rms .details.onestop .intro .block > h3 > span span {
		display: inline;
	}
}

.details.onestop .row:first-child .block > h4 + p + ul > li {
	position: relative;
	background-color: rgba(138, 189, 221, 0.2);
	line-height: 150%;
}

.details.onestop .row:first-child .block > h4 + p + ul > li {
	padding: 40px;
	padding: 2.5em;
	padding-bottom: calc(40px - (20px*1.5)/4);
	padding-bottom: calc(2.5em - (1.25em*1.5)/4);
	padding-left: calc(40px*2 + 40px);
	padding-left: calc(2.5em*2 + 2.5em);
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .row:first-child .block > h4 + p + ul > li {
		padding: 30px;
		padding: 1.875em;
		padding-bottom: calc(30px - (20px*1.5)/4);
		padding-bottom: calc(1.875em - (1.25em*1.5)/4);
		padding-left: calc(30px*2 + 40px);
		padding-left: calc(1.875em*2 + 2.5em);
	}
}

/*@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .row:first-child .block > h4 + p + ul > li {
		padding: 20px;
		padding: 1.25em;
		padding-bottom: calc(20px - (20px*1.5)/4);
		padding-bottom: calc(1.25em - (1.25em*1.5)/4);
		padding-left: calc(20px*2 + 40px);
		padding-left: calc(1.25em*2 + 2.5em);
	}
}*/

#page.page.bespoke.onestop .details.onestop .row:first-child .block > h4 + p + ul > li {
	border-radius: 32px;
	border-radius: 2em;
}

.details.onestop .row:first-child .block > h4 + p + ul > li:not(:last-child) {
	margin-bottom: 1em;
}

.details.onestop .row:first-child .block > h4 + p + ul > li::before {
	position: absolute;
	top: 50%;
	left: 30px;
	left: 1.875em;
	z-index: 2;
	width: 40px;
	width: 2.5em;
	height: 40px;
	height: 2.5em;
	content: url('../images/onestop/icn_onestop_check.svg');
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.details.onestop .row:first-child .block > h4 + p + ul > li em {
	font-size: 20px;
	font-size: 125%;
	font-weight: 500;
}

.details.onestop .block p ~ *[class]:not(p):not(.notes):not(.annotation),
.details.onestop .block p ~ figure {
	margin-top: 1.5em;
}

.details.onestop .block ul.notes {
	padding-left: 1em;
}

.details.onestop .block ul.annotation {
	display: block;
	margin-top: 1em;
}

.details.onestop .row:first-child .block ul.annotation {
	margin-top: 20px;
	margin-top: 1.428571428571429em;
}

.details.onestop .block ul.annotation > li {
	position: relative;
	padding-left: 1.25em;
	text-indent: -1em;
	line-height: 150%;
}

.details.onestop .block ul.annotation > li::before {
	content: '※';
}

.details.onestop .block ul.cueing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	margin-top: 1.5em;
}

.details.onestop .block ul.cueing > li {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

@media print,
screen and (max-width: 74.9375em) {
	.rms .details.onestop .block:not(.how-to-apply) ul.cueing > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .block:not(.how-to-apply) ul.cueing > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

.details.onestop .block.how-to-apply ul.cueing > li {
	max-width: calc((100% - 40px)/2);
	max-width: calc((100% - 2.5em)/2);
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	body:not(.rms) .details.onestop .block.how-to-apply ul.cueing > li {
		max-width: calc((100% - 30px)/2);
		max-width: calc((100% - 1.875em)/2);
	}
}

@media print,
screen and (max-width: 74.9375em) {
	.rms .details.onestop .block.how-to-apply ul.cueing > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: inherit;
	}

	.rms .details.onestop .block.how-to-apply ul.cueing > li:not(:first-child) {
		margin-top: 1em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .block.how-to-apply ul.cueing > li {
		max-width: inherit;
	}

	/*.details.onestop .block.how-to-apply ul.cueing > li:not(:first-child) {
		margin-top: 1em;
	}*/
}

@media print,
screen and (min-width: 40em) {
	#page.page.bespoke.onestop .details.onestop .block ul.cueing > li:first-child {
		border-top-left-radius: 32px;
		border-top-left-radius: 2em;
		border-bottom-left-radius: 32px;
		border-bottom-left-radius: 2em;
	}

	#page.page.bespoke.onestop .details.onestop .block ul.cueing > li:last-child {
		border-top-right-radius: 32px;
		border-top-right-radius: 2em;
		border-bottom-right-radius: 32px;
		border-bottom-right-radius: 2em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	#page.page.bespoke.onestop .details.onestop .block ul.cueing > li:first-child {
		border-top-left-radius: 32px;
		border-top-left-radius: 2em;
		border-top-right-radius: 32px;
		border-top-right-radius: 2em;
	}

	#page.page.bespoke.onestop .details.onestop .block ul.cueing > li:last-child {
		border-bottom-right-radius: 32px;
		border-bottom-right-radius: 2em;
		border-bottom-left-radius: 32px;
		border-bottom-left-radius: 2em;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li {
	border: 2px solid var(--geisei-navy);
}

@media print,
screen and (min-width: 40em) and (max-width: 74.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	body:not(.rms) .details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li {
		max-width: calc(100%/3);
	}
}

@media print,
screen and (min-width: 40em) {
	body:not(.rms) .details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li:not(:last-child) {
		border-right: none;
	}
}

@media print,
screen and (min-width: 75em) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li:not(:last-child) {
		border-right: none;
	}
}

@media print,
screen and (max-width: 74.9375em) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li:not(:last-child) {
		border-bottom: none;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li:not(:last-child) {
		border-bottom: none;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 1em;
	padding-bottom: calc(3em - 1em/2);
	font-size: 18px;
	font-size: 112.5%;
	font-weight: 500;
	text-align: center;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button),
.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button)::after {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button)::after {
	position: absolute;
	bottom: 1em;
	left: 50%;
	width: 1em;
	height: 1em;
	border: 2px solid var(--geisei-navy);
	border-top: none;
	border-right: none;
	content: '';
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button):hover::after {
	border-color: var(--geisei-blue);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button) > span {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing.steps > li > a:not(.button) small {
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ * {
	margin-top: 60px !important;
	margin-top: 3.75em !important;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing + dl > dd + dd {
	margin-top: 30px;
	margin-top: 1.875em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing + dl > dd + dd > p {
	text-align: center;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] {
	width: 100%;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt {
	margin-bottom: 1em;
	color: var(--geisei-navy);
	font-size: 24px;
	font-size: 150%;
	line-height: 125%;
}

@media print,
screen and (min-width: 40em) {
	body:not(.rms) .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt {
		text-align: center;
		line-height: 100%;
	}
}

@media print,
screen and (min-width: 75em) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt {
		text-align: center;
		line-height: 100%;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt > span {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	padding-left: calc(6em*0.75);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt > span::before {
	position: absolute;
	top: 50%;
	left: 0;
	padding: calc((24px -18px)/2) 1em;
	padding: calc((1.333333333333333em - 1em)/2) 1em;
	border-radius: 4px;
	background-color: var(--onestop-green);
	color: white;
	font-family: 'Roboto Slab', sans-serif;
	font-size: 18px;
	font-size: 75%;
	text-transform: uppercase;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl.step1 > dt > span::before {
	content: 'step1';
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl.step2 > dt > span::before {
	content: 'step2';
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl.step3 > dt > span::before {
	content: 'step3';
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt + dd > p {
		text-align: center;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] > dt + dd ~ dd {
	margin-top: 40px;
	margin-top: 2.5em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents,
.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability {
	border-color: var(--geisei-navy);
	border-style: solid;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents,
.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd,
.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:last-child),
.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions {
	padding: 40px;
	padding: 2.5em;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {

	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents,
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd,
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:last-child),
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions {
		padding: 30px;
		padding: 1.875em;
	}
}

@media print,
screen and (max-width: 39.9375em) {

	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents,
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd,
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:last-child),
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions {
		padding: 20px;
		padding: 1.25em;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 1.5em;
	padding-bottom: calc(40px - 1em*1.5/4);
	padding-bottom: calc(2.5em - 1em*1.5/4);
	border-width: 2px;
}

#page.page.bespoke.onestop .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents,
#page.page.bespoke.onestop .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability {
	border-radius: 32px;
	border-radius: 2em;
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents {
		width: calc(100%/12*10);
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

@media print,
screen and (min-width: 40em) {
	body:not(.rms) .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li {
		max-width: calc((100% - 40px*2)/3);
		max-width: calc((100% - 2.5em*2)/3);
	}
}

@media print,
screen and (min-width: 75em) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li {
		max-width: calc((100% - 40px*2)/3);
		max-width: calc((100% - 2.5em*2)/3);
	}
}

@media print,
screen and (max-width: 74.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li:not(:last-child) {
	margin-right: 40px !important;
	margin-right: 2.5em !important;
}

@media print,
screen and (min-width: 40em) and (max-width: 74.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	body:not(.rms) .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li:not(:last-child) {
		margin-right: 30px !important;
		margin-right: 1.875em !important;
	}
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.rms .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li:not(:last-child) {
		margin-right: 0 !important;
		margin-bottom: 30px !important;
		margin-bottom: 1.875em !important;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li:not(:last-child) {
		margin-right: 0 !important;
		margin-bottom: 30px !important;
		margin-bottom: 1.875em !important;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li > figure {
	margin: 0 auto;
	max-width: 140px;
	max-width: 8.75em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .required-documents > li > figure + p {
	margin-top: 1em;
	text-align: center;
	line-height: 150%;
	white-space: nowrap;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability {
	border-width: 2px;
	overflow: hidden;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dt {
	padding: 0.5em 1em;
	background-color: var(--geisei-navy);
	color: white;
	font-size: 20px;
	font-size: 125%;
	text-align: center;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd {
	padding-top: 0;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd:first-of-type {
	padding-top: 20px;
	padding-top: 1.25em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd:not(:last-child) {
	padding-bottom: 20px;
	padding-bottom: 1.25em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li {
	counter-increment: number;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:first-child) {
	margin-top: 40px;
	margin-top: 2.5em;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:first-child) {
		margin-top: 30px;
		margin-top: 1.875em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:first-child) {
		margin-top: 20px;
		margin-top: 1.25em;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:not(:last-child) {
	border: 1px solid rgba(86, 99, 105, 0.2);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li:first-child {
	padding-bottom: calc(40px - 1em*2/4);
	padding-bottom: calc(2.5em - 1em*2/4);
}

#page.page.bespoke.onestop .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li {
	border-radius: 16px;
	border-radius: 1em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li > dl > dt {
	margin-bottom: 1em;
	color: var(--geisei-navy);
	font-size: 20px;
	font-size: 125%;
	line-height: 100%;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li > dl > dt > span {
	position: relative;
	padding-left: 1.5em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability > dd > ul > li > dl > dt > span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	border-radius: 3rem;
	background-color: var(--geisei-navy);
	color: white;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 500;
	font-size: 0.75em;
	text-align: center;
	line-height: 1.5em;
	content: counter(number);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions {
	margin-top: 30px;
	margin-top: 1.875em;
	background-color: rgba(138, 189, 221, 0.2);
}

#page.page.bespoke.onestop .details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions {
	border-radius: 8px;
	border-radius: 0.5em;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt {
	margin-bottom: 1.5em;
	font-size: 20px;
	font-size: 125%;
	line-height: 100%;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions dt {
	color: var(--geisei-navy);
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt::before,
.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt::after {
	display: block;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: auto;
	height: 1px;
	background-color: var(--geisei-navy);
	content: '';
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt > span {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	margin: 0 0.5em;
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd:not(:first-child) {
	margin-top: 40px;
	margin-top: 2.5em;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd:not(:first-child) {
		margin-top: 30px;
		margin-top: 1.875em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd:not(:first-child) {
		margin-top: 20px;
		margin-top: 1.25em;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd > * {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd > dl {
		max-width: calc(100% - 240px);
		max-width: calc(100% - 15em);
	}

	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd > dl {
		padding-right: 30px;
		padding-right: 1.875em;
	}
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd > dl {
		padding-bottom: 30px;
		padding-bottom: 1.875em;
	}
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions > dt ~ dd > figure {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		width: 240px;
		width: 15em;
	}
}

.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions dl > dt {
	margin-bottom: calc(1em - 1em*1.5/4);
	font-size: 18px;
	font-size: 112.5%;
	line-height: 150%;
}

/*@media print,
screen and (min-width: 40em) {
	.details.onestop .applications .block:not(.how-to-apply) ul.cueing ~ dl[class*="step"] .availability .download-instructions dl > dt {
		line-height: 100%;
	}
}*/

.details.onestop .block.online ul.app-stores {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 60%;
	margin: 20px auto 0;
	margin: 1.25em auto 0;
	margin-bottom: 0 !important;
	gap: 20px;
	gap: 1.25em;
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .block.online ul.app-stores {
		max-width: 100%;
		margin-top: 0;
	}
}

/*.details.onestop .block.online ul.app-stores > li {
	max-width: calc((100% - 40px)/2);
	max-width: calc((100% - 2.5em)/2);
}*/

.details.onestop .block.online ul.app-stores > li a {
	display: block;
}

.details.onestop .block.online ul.app-stores > li img {
	width: auto;
	max-width: 100%;
	max-height: 60px;
	max-height: 3.75em;
	min-height: 60px;
	min-height: 3.75em;
}

/*#page.page.bespoke.onestop .row:not(:first-child) .details.onestop .block ul:not(.annotation) > li::before {
	content: none !important;
}*/

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs {
	padding: 40px;
	padding: 2.5em;
	background: var(--geisei-blue);
}

#page.page.bespoke.onestop .details.onestop .applications .mailing .step1 .availability ul.print-at-cvs {
	border-radius: 16px;
	border-radius: 1em;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs {
		padding: 30px;
		padding: 1.875em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs {
		padding: 20px;
		padding: 1.25em;
	}
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dt {
	display: inline-block;
	margin-bottom: 0.75em;
	padding: 0.25em 1.25em;
	border-radius: 3rem;
	background-color: white;
	color: var(--geisei-navy);
	font-weight: 600;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd:not(:last-child) {
	margin-bottom: 20px;
	margin-bottom: 1.25em;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd:first-of-type {
	margin-bottom: 1em;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd:first-of-type > p {
	color: var(--geisei-navy);
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	max-width: calc((100% - 20px*2)/3);
	max-width: calc((100% - 1.25em*2)/3);
	margin: 0;
	padding: 1em;
	border-radius: 8px;
	border-radius: 0.5em;
	background-color: white;
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: inherit;
	}

	.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li:not(:last-child) {
		margin-bottom: 20px;
		margin-bottom: 1.25em;
	}
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li p {
	color: inherit;
	font-weight: 700;
	text-align: center;
	line-height: 150%;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li p:last-child {
	margin-top: 0.5em;
	font-size: 14px;
	font-size: 87.5%;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li p:not(:last-child) {
	margin-bottom: 0.5em;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li p:last-of-type {
	color: initial;
}

@media print,
screen and (min-width: 75em) {
	.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li p:last-of-type {
		min-height: calc(1em*1.5*2);
	}
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl ul > li figure.icon {
	width: 120px;
	width: 7.5em;
	height: 120px;
	height: 7.5em;
	margin: 0 auto;
	margin-top: 1em !important;
	border-radius: 20px;
	border-radius: 1.25em;
	overflow: hidden;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd.attention {
	padding: 20px 30px;
	padding: 1em 1.5em;
	border: 8px solid rgb(255, 0, 0);
	border: 0.5em solid rgb(255, 0, 0);
	border-radius: 8px;
	border-radius: 0.5em;
	background-color: white;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd.attention > p {
	color: rgb(255, 0, 0);
	font-size: 20px;
	font-size: 125%;
	font-weight: 500;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd.attention > p strong {
	font-weight: 700;
}

.details.onestop .applications .mailing .step1 .availability ul.print-at-cvs > li > dl > dd.attention > p strong.underline {
	border-bottom-color: rgb(255, 0, 0);
}

.details.onestop .applications .step2 figure {
	margin-right: auto;
	margin-left: auto;
	width: calc(100%/12*10);
}

.details.onestop .applications .step3 .button,
.details.onestop .applications .step3 button {
	border-color: var(--onestop-orange);
	background-color: var(--onestop-orange);
}

.details.onestop .applications .step3 .button:hover,
.details.onestop .applications .step3 button:hover {
	border-color: var(--onestop-orange);
	background-color: white;
	color: var(--onestop-orange);
}

.details.onestop .applications .step3 .button:hover > span::before,
.details.onestop .applications .step3 button:hover > span::before {
	border-color: var(--onestop-orange);
}

.details.onestop .applications .online .step1 .flow {
	display: block;
	width: 100%;
	height: 75vh;
	padding: 1.5em;
	border: 8px solid var(--geisei-navy);
	border: 0.5em solid var(--geisei-navy);
	border-radius: 16px;
	border-radius: 1em;
	background: white;
	overflow-y: auto;
}

.details.onestop .applications .online .step1 .flow p + ul {
	margin-top: 1em;
}

.details.onestop .applications .online .step1 .flow ul {
	counter-reset: step;
}

.details.onestop .applications .online .step1 .flow ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.details.onestop .applications .online .step1 .flow ul li:not(:last-child) {
	margin-bottom: 20px;
	margin-bottom: 1.25em;
}

@media print,
screen and (min-width:40em) {
	.details.onestop .applications .online .step1 .flow ul li figure {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 40%;
		flex: 0 1 40%;
		padding-right: 20px;
		padding-right: 1.25em;
	}

	.details.onestop .applications .online .step1 .flow ul li.step4 figure,
	.details.onestop .applications .online .step1 .flow ul li.step5 figure {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 60%;
		flex: 0 1 60%;
	}

	.details.onestop .applications .online .step1 .flow ul li p {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 60%;
		flex: 1 0 60%;
	}

	_:-ms-lang(x)::-ms-backdrop,
	.details.onestop .applications .online .step1 .flow ul li p {
		-ms-flex: 1 1 54%;
		flex: 1 1 54%;
	}

	.details.onestop .applications .online .step1 .flow ul li.step4 p,
	.details.onestop .applications .online .step1 .flow ul li.step5 p {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 40%;
		flex: 1 0 40%;
	}
}

@media print,
screen and (max-width:39.9375em) {

	.details.onestop .applications .online .step1 .flow ul li figure,
	.details.onestop .applications .online .step1 .flow ul li p {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}

	.details.onestop .applications .online .step1 .flow ul li figure {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.details.onestop .applications .online .step1 .flow ul li figure + p {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-bottom: 1em;
	}
}

.details.onestop .applications .online .step1 .flow ul li p {
	position: relative;
	padding-left: 1.75em;
}

.details.onestop .applications .online .step1 .flow ul li p::before,
.details.onestop .applications .online .step1 .flow ul li p::after {
	display: block;
	position: absolute;
	top: calc((2em - 1.25em)/2);
	left: 0;
	z-index: 2;
	width: 1.25em;
	height: 1.25em;
	content: '';
}

.details.onestop .applications .online .step1 .flow ul li p::before {
	border-radius: 3rem;
	background: var(--geisei-navy);
}

.details.onestop .applications .online .step1 .flow ul li p::after {
	font-family: 'Roboto Slab', sans-serif;
	color: white;
	text-align: center;
	line-height: 1.25em;
	letter-spacing: normal;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	counter-increment: step;
	content: counter(step);
}

.details.onestop .applications .online .step1 .flow ul li p span.notes {
	margin-top: 1em;
	padding-left: 1em;
}

.details.onestop .applications .online .step1 .flow ul li p > span + span {
	margin-top: 1em;
}

.details.onestop .applications .online .step1 .flow ul li p span.notes span:first-letter {
	margin-left: -1em;
}

.details.onestop .applications .online .step1 .video {
	margin-top: 20px;
	margin-top: 1.25em;
}

.details.onestop .applications .online .step1 .flow + .video > video {
	width: 100%;
	max-width: 100%;
	max-height: 75vh;
	margin: 0 auto;
}

.details.onestop .applications .online .step1 .video div[id^="RVideo"] {
	width: 100% !important;
}

@media print,
screen and (min-width:40em) {
	.details.onestop .applications .online .step1 .video div[id^="RVideo"] {
		height: calc((75em - 0.9375rem*2 - (75em*0.2 + 1.875em))*0.5625) !important;
	}
}

@media print,
screen and (max-width:39.9375em) {
	.details.onestop .applications .online .step1 .video div[id^="RVideo"] {
		height: calc((100vw - 0.9375rem*2)*0.5625) !important;
	}
}

.details.onestop .faqs .block > h4 + ul > li:not(:first-child) {
	margin-top: 20px;
	margin-top: 1.25em;
}

.details.onestop .faqs .block > h4 + ul .accordion-label {
	background: var(--geisei-navy);
	color: white;
}

.details.onestop .faqs .block > h4 + ul .accordion-label {
	width: 100%;
	margin: 0;
	padding: 1.5em;
	border-radius: 16px;
	border-radius: 1em;
}

#page.page.bespoke.onestop .details.onestop .faqs .block > h4 + ul .accordion-label {
	border-radius: 32px;
	border-radius: 2em;
}

.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.details.onestop .faqs .block > h4 + ul .accordion-label p {
	position: relative;
	padding: 0 2em;
	padding-left: 2.5em;
	font-size: 20px;
	font-size: 125%;
	line-height: 150%;
}

.details.onestop .faqs .block > h4 + ul .accordion-label p:before,
.details.onestop .faqs .block > h4 + ul .accordion-label p:after,
.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label + .accordion-content::after {
	display: block;
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	content: '';
}

.details.onestop .faqs .block > h4 + ul .accordion-label p:before,
.details.onestop .faqs .block > h4 + ul .accordion-label p:after {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.details.onestop .faqs .block > h4 + ul .accordion-label p::before,
.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label + .accordion-content::after {
	width: 1.25em;
	height: 1em;
	padding-right: 0.25em;
	border-right-width: 1px;
	border-right-style: solid;
	font-family: 'Roboto Slab', sans-serif;
	line-height: 1;
}

.details.onestop .faqs .block > h4 + ul .accordion-label p::before {
	left: 0;
	border-right-color: white;
	font-size: 125%;
	content: 'Q';
}

.details.onestop .faqs .block > h4 + ul .accordion-label p::after {
	right: 0;
	width: 0.5em;
	height: 0.5em;
	border: 2px solid white;
	border-top: none;
	border-left: none;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label p::after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.details.onestop .faqs .block > h4 + ul .accordion-content {
	padding: 0 calc(1.5em - 8px);
	padding: 0 calc(1.5em - 0.5em);
	border-top: none;
	border-radius: 0 0 1em 1em;
}

#page.page.bespoke.onestop .details.onestop .faqs .block > h4 + ul .accordion-content {
	border-radius: 0 0 2em 2em;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p,
.details.onestop .faqs .block > h4 + ul .accordion-content dl {
	padding: calc(1.5em - 8px) 0;
	padding: calc(1.5em - 0.5em) 0;
	padding-left: calc(2.5em + 0.5em);
	color: var(--geisei-navy);
}

.details.onestop .faqs .block > h4 + ul .accordion-content p,
.details.onestop .faqs .block > h4 + ul .accordion-content dd {
	line-height: 200%;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p ~ p,
.details.onestop .faqs .block > h4 + ul .accordion-content p + ul,
.details.onestop .faqs .block > h4 + ul .accordion-content dl + dl {
	padding-top: 0;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p + ul {
	padding-bottom: 0;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p a {
	display: inline !important;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p em {
	color: rgb(255, 0, 0);
	font-size: 125%;
	font-weight: 700;
}

.details.onestop .faqs .block > h4 + ul .accordion-content p + a {
	display: block;
	margin-top: -1em !important;
	margin-left: calc(2.5em + 0.5em);
	margin-bottom: 1em;
}

.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label + .accordion-content {
	border: 8px solid var(--geisei-navy);
	border: 0.5em solid var(--geisei-navy);
	border-top: none;
}

.details.onestop .faqs .block > h4 + ul .accordion-check:checked + .accordion-label + .accordion-content::after {
	top: calc(0.5em*1.25);
	left: calc(0.5em*1.25);
	border-right-color: var(--geisei-navy);
	color: var(--geisei-navy);
	font-size: 25px;
	font-size: calc(1em*1.5625);
	content: 'A';
}

.details.onestop .reception .block:not(:last-child) {
	margin-bottom: 40px !important;
	margin-bottom: 2.5em !important;
}

.details.onestop .reception .block > dl {
	padding: 40px;
	padding: 2.5em;
}

.details.onestop .reception .block:not(.addressee):not(.inquiry) > dl {
	padding-bottom: calc(40px - (1em*2)/4);
	padding-bottom: calc(2.5em - (1em*2)/4);
}

@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .reception .block:not(:last-child) {
		margin-bottom: 30px !important;
		margin-bottom: 1.875em !important;
	}

	.details.onestop .reception .block > dl {
		padding: 30px;
		padding: 1.875em;
	}

	.details.onestop .reception .block:not(.addressee):not(.inquiry) > dl {
		padding-bottom: calc(30px - (1em*2)/4);
		padding-bottom: calc(1.875em - (1em*2)/4);
	}
}

/*@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .reception .block:not(:last-child) {
		margin-bottom: 20px !important;
		margin-bottom: 1.25em !important;
	}

	.details.onestop .reception .block > dl {
		padding: 20px;
		padding: 1.25em;
	}

	.details.onestop .reception .block:not(.addressee):not(.inquiry) > dl {
		padding-bottom: calc(20px - (1em*2)/4);
		padding-bottom: calc(1.25em - (1em*2)/4);
	}
}*/

#page.page.bespoke.onestop .details.onestop .reception .block > dl {
	border-radius: 32px;
	border-radius: 2em;
}

.details.onestop .reception .block dl > dt,
.details.onestop .reception .block.addressee > dl dl > dt {
	position: relative;
	margin-bottom: 1em;
	padding-bottom: 0.75em;
	font-size: 24px;
	font-size: 150%;
	text-justify: inter-ideograph;
	text-align: justify;
	line-height: 125%;
}

@media print,
screen and (min-width: 40em) {

	body:not(.rms) .details.onestop .reception .block dl > dt,
	body:not(.rms) .details.onestop .reception .block.addressee > dl dl > dt {
		text-align: center;
		line-height: 100%;
	}
}

@media print,
screen and (min-width: 75em) {

	.rms .details.onestop .reception .block dl > dt,
	.rms .details.onestop .reception .block.addressee > dl dl > dt {
		text-align: center;
		line-height: 100%;
	}
}

@media print,
screen and (max-width: 39.9375em) {

	body:not(.rms) .details.onestop .reception .block dl dt > span {
		display: inline;
	}
}

@media print,
screen and (max-width: 74.9375em) {

	.rms .details.onestop .reception .block dl dt > span {
		display: inline;
	}
}

.details.onestop .reception .block.addressee > dl > dt {
	margin-bottom: 0;
	padding-bottom: 0;
}

.details.onestop .reception .block dl > dt::after,
.details.onestop .reception .block.addressee > dl dl > dt::after {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: auto;
	height: 1px;
	content: '';
}

.details.onestop .reception .block.addressee > dl {
	padding-bottom: 0;
	background-color: rgba(255, 99, 2, 0.2);
}

.details.onestop .reception .block.caution > dl {
	position: relative;
	border: 2px solid red;
	background-color: white;
}

.details.onestop .reception .block.caution > dl::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 0.5em 2em;
	background-color: red;
	color: white;
	font-weight: 700;
	content: '必ずご確認ください';
}

#page.page.bespoke.onestop .details.onestop .reception .block.caution > dl::before {
	border-radius: calc(32px - 2px);
	border-radius: calc(2em - 2px);
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
}

.details.onestop .reception .block.caution > dl {
	padding-top: calc(40px/2 + (1em + 0.5em*2));
	padding-top: calc(2.5em/2 + (1em + 0.5em*2));
}

/*@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .reception .block.caution > dl {
		padding-top: calc(30px/2 + (1em + 0.5em*2));
		padding-top: calc(1.875em/2 + (1em + 0.5em*2));
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .reception .block.caution > dl {
		padding-top: calc(20px/2 + (1em + 0.5em*2));
		padding-top: calc(1.25em/2 + (1em + 0.5em*2));
	}
}*/

.details.onestop .reception .block.day-off > dl {
	background-color: rgba(138, 189, 221, 0.2);
}

.details.onestop .reception .block.inquiry > dl {
	background-color: var(--geisei-navy);
}

.details.onestop .reception .block.addressee > dl > dt {
	padding: 2px;
	padding: 1.25em;
	background-color: white;
}

#page.page.bespoke.onestop .details.onestop .reception .block.addressee > dl > dt {
	border-radius: 16px;
	border-radius: 1em;
}

.details.onestop .reception .block.caution > dl > dt {
	padding-bottom: 0;
	color: red;
	line-height: 150%;
}

.details.onestop .reception .block.day-off > dl > dt {
	color: var(--geisei-navy);
}

.details.onestop .reception .block.inquiry > dl > * {
	color: white;
}

.details.onestop .reception .block.day-off > dl > dt::after {
	background-color: var(--geisei-navy);
}

.details.onestop .reception .block.inquiry > dl > dt::after {
	background-color: white;
}

.details.onestop .reception .block.addressee > dl > dd {
	padding: calc((40px - 1em*0.875)/2) 0;
	padding: calc((2.5em - 1em*0.875)/2) 0;
}

/*@media print,
screen and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	.details.onestop .reception .block.addressee > dl > dd {
		padding: calc((30px - 1em*0.875)/2) 0;
		padding: calc((1.875em - 1em*0.875)/2) 0;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .reception .block.addressee > dl > dd {
		padding: calc((20px - 1em*0.875)/2) 0;
		padding: calc((1.25em - 1em*0.875)/2) 0;
	}
}*/

.details.onestop .reception .block.addressee > dl > dd > * {
	margin-top: 0;
	padding-left: 0 !important;
}

.details.onestop .reception .block.addressee > dl > dt::after {
	content: none;
}

.details.onestop .reception .block.addressee > dl dl {
	font-size: 66.66666666666667%;
}

.details.onestop .reception .block.addressee > dl dl > dt {
	color: var(--onestop-orange);
}

.details.onestop .reception .block.addressee > dl dl > dt::after {
	background-color: var(--onestop-orange);
}

.details.onestop .reception .block.addressee > dl dl > dd {
	font-size: 20px;
	font-size: 125%;
	font-weight: normal;
}

.details.onestop .reception .block.day-off > dl > dd > p em {
	color: var(--geisei-navy);
	font-size: 18px;
	font-size: 112.5%;
	font-weight: 700;
}

.details.onestop .reception .block.day-off > dl > dd > p strong em {
	font-size: 22px;
	font-size: 122.2222222222222%;
}

.details.onestop .reception .block.day-off > dl > dd > p .underline {
	border-bottom-color: var(--geisei-navy);
}

.details.onestop .reception .block.inquiry > dl ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.details.onestop .reception .block.inquiry > dl > dt ~ dd:not(:first-child) {
	margin-top: 30px;
	margin-top: 1.875em;
}

.details.onestop .reception .block.inquiry > dl ul > li {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	max-width: calc((100% - 30px)/2);
	max-width: calc((100% - 1.875em)/2);
}

.shipping .details.onestop .reception .block.inquiry > dl ul > li {
	max-width: 100%;
}

@media print,
screen and (min-width: 40em) {

	.shipping .details.onestop .reception .block.inquiry > dl > dt + dd > p,
	.shipping .details.onestop .reception .block.inquiry > dl > dd:last-child ul ul > li {
		text-align: center;
	}
}

@media print,
screen and (max-width: 74.9375em) {
	.details.onestop .reception .block.inquiry > dl ul > li {
		max-width: inherit;
	}
}

@media print,
screen and (min-width: 40em) and (max-width: 63.9375em),
screen and (min-width: 64em) and (orientation:portrait) {
	body:not(.rms) .details.onestop .reception .block.inquiry > dl ul > li:not(:last-child) {
		margin-right: 30px;
		margin-right: 1.875em;
	}

	body:not(.rms) .details.onestop .reception .block.inquiry > dl ul > li:last-child {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}

@media print,
screen and (max-width: 74.9375em) {
	.rms .details.onestop .reception .block.inquiry > dl ul > li:not(:first-child) {
		margin-top: 30px;
		margin-top: 1.875em;
	}
}

@media print,
screen and (max-width: 39.9375em) {
	.details.onestop .reception .block.inquiry > dl ul > li:not(:first-child) {
		margin-top: 30px;
		margin-top: 1.875em;
	}
}

.details.onestop .reception .block.inquiry > dl ul > li dl > * {
	text-align: center;
}

.details.onestop .reception .block.inquiry > dl ul > li dl dt.reception-tel {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 32px;
	font-size: 200%;
}

.details.onestop .reception .block.inquiry > dl ul > li dl dt.reception-tel a {
	color: white;
}

.details.onestop .reception .block.inquiry > dl ul > li dl dt.reception-tel > span {
	position: relative;
	display: inline-block;
	padding-left: 1.25em;
}

.details.onestop .reception .block.inquiry > dl ul > li dl dt.reception-tel > span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1em;
	height: 1em;
	background: url('../images/onestop/icn_faqs_phone.svg') center center no-repeat;
	background-size: cover;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: '';
}

.details.onestop .reception .block.inquiry > dl ul > li dl dt.reception-tel + dd {
	margin-top: 0.5em;
	text-align: center;
}

.details.onestop .reception .block.inquiry > dl ul > li .button {
	border-color: white;
	background-color: white;
	color: var(--geisei-navy);
}

.details.onestop .reception .block.inquiry > dl ul > li .button > span {
	padding-right: 1em;
}

.details.onestop .reception .block.inquiry > dl ul > li .button > span::before {
	content: none;
}

.details.onestop .reception .block.inquiry > dl ul > li .button:hover {
	border-color: var(--geisei-blue);
	background-color: var(--geisei-blue);
	color: white;
}
