<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*
------------------------

index

------------------------
	0. base
			0.1 font
			0.2 css variables
			0.3 reset
			0.4 common style
	1. module
			1.1 footer contents
			1.2 toast
			1.3 error
*/
/*--------------------------------

0. base

--------------------------------*/
/*--------------------------------
0.1 font
--------------------------------*/
/*--------------------------------
0.2 css variables
--------------------------------*/
:root {
	--nta-black1: #3C3D47;
	--nta-black1-rgb: 60, 61, 71;
	--nta-link: #4EA6CB;
	--nta-blue1: #6EB9DA;
	--nta-bg-blue1: #D9EBF3;
	--nta-bg-blue2: #E5F2F8;
	--nta-gray1: #A6ACAF;
	--nta-gray2: #84888B;
	--nta-bg-gray1: #F9F6F4;
	--nta-bg-gray2: #E1E4E7;
	--nta-bg-gray3: #F1F3F5;
	--nta-border-gray1: #C1C3C5;
	--nta-border-gray2: #E1E4E7;
	--nta-placeholder: #C1C3C5;
	--nta-bg-disabled: #E1E4E7;
	--nta-txt-disabled: #C1C3C5;
	--nta-red1: #E74444;
	--nta-bg-red1: #FFE1E1;
	--nta-bg-red2: #FCEDED;
	--nta-pink1: #EA7C84;
	--nta-yellow1: #F9C716;
	--nta-bg-yellow1: #FFF8DA;
	--nta-orange1: #F29A16;
}

/*--------------------------------
0.3 reset
--------------------------------*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* reset
========================================================================== */
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
}

img {
	vertical-align: top;
}

input::-ms-clear {
	visibility: hidden;
}

input::-ms-reveal {
	visibility: hidden;
}

input {
	display: inline;
	vertical-align: middle;
}

input:focus {
	outline: none;
}

button {
	cursor: pointer;
}

button:focus {
	outline: none;
}

a:visited,
a:focus {
	outline: none;
}

select::-ms-value {
	background: none;
	color: #333;
}

body {
	/*min-width: 1010px;*/
	font-family: 'Noto Sans JP', "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-seif;
	font-size: 14px;
	color: var(--nta-black1);
	line-height: 1;
	letter-spacing: 0.01rem;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: anywhere;
}

@media screen and (max-width: 759px) {
	body {
		min-width: initial;
	}
}

html.is-fixed {
	height: 100%;
}

body.is-fixed {
	height: 100%;
	overflow-y: hidden;
}

a {
	color: var(--nta-link);
}

/*--------------------------------
0.4 common style
--------------------------------*/
.f2-fc--red {
	color: var(--nta-red1);
}

.f2-fc--blue1 {
	color: var(--nta-blue1);
}

.f2-fw--bold {
	font-weight: 700;
}

.f2-nolink {
	color: var(--nta-txt);
	pointer-events: none;
	text-decoration: none;
}

@media print,
screen and (min-width: 760px) {
	.f2-is-sp {
		display: none !important;
	}
}

@media screen and (max-width: 759px) {
	.f2-is-pc {
		display: none !important;
	}
}

/*--------------------------------

1. module

--------------------------------*/
/*--------------------------------
1.1 footer contents
--------------------------------*/
/* パンくず */
.f2-breadcrumb__item::after,
.f2-footer-accordion__ttl::after,
.f2-footer-accordion__body .f2-link-list&gt;li a::after {
	font-family: 'Material Symbols Rounded';
	font-weight: 300;
	font-style: normal;
	font-size: 1em;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	font-variation-settings: "FILL"0, "wght"300, "GRAD"0, "opsz"24;
}

.f2-breadcrumb {
	margin-top: 32px;
	margin-bottom: 32px;
}

.f2-breadcrumb__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
}

.f2-breadcrumb__item {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.f2-breadcrumb__item:not(:last-child)::after {
	content: "\e5cc";
	font-size: 16px;
}

.f2-breadcrumb__item a {
	text-decoration: none;
	color: var(--nta-black1);
}

/* 注意文言 */
.f2-page-note {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 32px;
}

.f2-page-note__list {
	list-style: none;
}

.f2-page-note__list&gt;li {
	font-size: 14px;
	list-style: none;
	line-height: 1.5;
}

@media screen and (max-width: 759px) {
	.f2-page-note__list&gt;li {
		font-size: 12px;
	}
}

/* 認証・加盟店マーク */
.f2-certification-mark {
	margin-bottom: 32px;
}

.f2-certification-mark__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}

.f2-certification-mark__list&gt;li {
	padding: 0 8px;
	border-left: 1px dotted var(--nta-border-gray2);
}

.f2-certification-mark__list&gt;li:last-child {
	border-right: 1px dotted var(--nta-border-gray2);
}

.f2-certification-mark__list&gt;li img {
	width: 44px;
}

/* footer共通コンテンツ */
.f2-footer-section {
	margin-bottom: 32px;
}

.f2-footer-section__head {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	color: var(--nta-black1);
	background-color: var(--nta-bg-blue2);
	box-sizing: border-box;
	border-radius: 4px;
	position: relative;
}

.f2-footer-section__ttl {
	font-size: 20px;
	font-weight: 700;
}

.f2-footer-section__body {
	width: 96%;
	margin: auto;
	padding-top: 24px;
}

@media screen and (max-width: 759px) {
	.f2-footer-section {
		padding-left: 0;
		padding-right: 0;
	}

	.f2-footer-section__head {
		padding: 9px 16px;
	}

	.f2-footer-section__ttl {
		font-size: 16px;
	}

	.f2-footer-section__body {
		padding-top: 16px;
	}
}

.f2-footer-accordion {
	margin-bottom: 16px;
}

.f2-footer-accordion__trigger {
	background: var(--nta-bg-gray1);
	border-radius: 4px;
	position: relative;
	cursor: pointer;
}

.f2-footer-accordion__ttl {
	padding: 12px;
	position: relative;
	font-size: 16px;
	font-weight: 700;
}

.f2-footer-accordion__ttl::after {
	content: "\e145";
	font-variation-settings: "wght"400;
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	font-size: 24px;
	right: 8px;
	color: var(--nta-gray1);
	transform: rotate(0deg);
	transition: transform .4s;
}

.f2-footer-accordion__ttl.is-open::after {
	content: "\e15b";
	transform: rotate(180deg);
}

@media screen and (max-width: 759px) {
	.f2-footer-accordion {
		margin-bottom: 4px;
	}

	.f2-footer-accordion__ttl {
		padding: 11px 8px;
		font-size: 14px;
	}

	.f2-footer-accordion__ttl::after {
		font-size: 20px;
	}
}

.f2-footer-accordion__body {
	display: none;
	padding: 8px 0 24px;
}

.f2-footer-accordion__body .f2-link-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0 16px;
	line-height: 1.4;
}

.f2-footer-accordion__body .f2-link-list&gt;li {
	border-bottom: 1px solid var(--nta-border-gray2);
	width: calc((100% - 32px) / 3);
}

.f2-footer-accordion__body .f2-link-list&gt;li a {
	text-decoration: none;
	color: var(--nta-black1);
	display: block;
	padding: 12px 24px 12px 0;
	position: relative;
}

.f2-footer-accordion__body .f2-link-list&gt;li a::after {
	content: "\e5cc";
	font-variation-settings: 'wght'600;
	font-size: 16px;
	color: var(--nta-blue1);
	position: absolute;
	top: 50%;
	right: 4px;
	transform: translateY(-50%);
}

@media screen and (max-width: 759px) {
	.f2-footer-accordion__body .f2-link-list&gt;li {
		width: calc((100% - 16px) / 2);
	}

	.f2-footer-accordion__body .f2-link-list&gt;li a {
		padding: 10px 24px 10px 0;
	}
}

.f2-footer-sns-icon {
	margin-top: 32px;
	margin-bottom: 32px;
}

.f2-footer-sns-icon__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 24px;
}

.f2-footer-sns-icon__list&gt;li img {
	width: 40px;
}

@media screen and (max-width: 759px) {
	.f2-footer-sns-icon__list {
		gap: 16px;
	}
}


/*--------------------------------
1.2 toast
--------------------------------*/
.f2-toast-wrap {
	width: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	position: fixed;
	z-index: 9600;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.f2-toast {
	margin: 24px;
	max-width: 400px;
	background: #fff;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0 3px 20px 0 rgba(var(--nta-black1-rgb), .2);
	opacity: 0;
	display: none;
}

@media screen and (max-width: 759px) {
	.f2-toast {
		margin: 0 16px;
		max-width: calc(100% - 32px);
	}
}

.f2-toast.is-active {
	animation: toastShow 5s 0s cubic-bezier(0.5, 0, 0, 1.0) forwards;
	display: block;
}

@keyframes toastShow {
	0% {
		opacity: 0;
		transform: translateY(0);
	}

	10% {
		opacity: 1;
		transform: translateY(16px);
	}

	95% {
		opacity: 1;
		transform: translateY(16px);
	}

	100% {
		opacity: 0;
		transform: translateY(0);
	}
}

.f2-toast--info {
	border-color: var(--nta-orange1);
}

.f2-toast__inner {
	padding: 16px 24px;
	display: flex;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 759px) {
	.f2-toast__inner {
		padding: 12px;
	}
}

.f2-toast__icon {
	width: 40px;
	flex-shrink: 0;
	line-height: 1;
}

@media screen and (max-width: 759px) {
	.f2-toast__icon {
		width: 36px;
	}
}

.f2-icon-toast-info::before {
	font-family: 'Material Symbols Rounded';
	font-weight: 300;
	font-style: normal;
	font-size: 1em;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	font-variation-settings: "FILL"1, "wght"300, "GRAD"0, "opsz"24;
	content: "\e88e";
	font-size: 24px;
	color: var(--nta-orange1);
}

.f2-toast__txt {
	flex: 1;
	line-height: 1.4;
}

@media screen and (max-width: 759px) {
	.f2-toast__txt {
		font-size: 12px;
	}
}

/*--------------------------------
1.3 error
--------------------------------*/
.f2-error-txt {
	color: var(--nta-red1);
	margin-top: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.4;
}</pre></body></html>