@charset "UTF-8";
/* transition
------------------------------------------ */
/*-------------------------
px => rem
-------------------------*/
@-webkit-keyframes toggleOpenTop {
	0% {
		-webkit-transform: translateY(-3px);
		transform: translateY(-3px);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
}
@keyframes toggleOpenTop {
	0% {
		-webkit-transform: translateY(-3px);
		transform: translateY(-3px);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
}

@-webkit-keyframes toggleOpenBottom {
	0% {
		-webkit-transform: translateY(3px);
		transform: translateY(3px);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@keyframes toggleOpenBottom {
	0% {
		-webkit-transform: translateY(3px);
		transform: translateY(3px);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@-webkit-keyframes toggleCloseTop {
	0% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(-3px);
		transform: translateY(-3px);
	}
}

@keyframes toggleCloseTop {
	0% {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(-3px);
		transform: translateY(-3px);
	}
}

@-webkit-keyframes toggleCloseBottom {
	0% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(3px);
		transform: translateY(3px);
	}
}

@keyframes toggleCloseBottom {
	0% {
		-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
	50% {
		-webkit-transform: translateY(0) rotate(0deg);
		transform: translateY(0) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(3px);
		transform: translateY(3px);
	}
}

@-webkit-keyframes walkWrapperSP {
	0% {
		left: -603px;
	}
	100% {
		left: 0;
	}
}

@keyframes walkWrapperSP {
	0% {
		left: -603px;
	}
	100% {
		left: 0;
	}
}

@-webkit-keyframes walkWrapperPC {
	0% {
		left: -1203px;
	}
	100% {
		left: 0;
	}
}

@keyframes walkWrapperPC {
	0% {
		left: -1203px;
	}
	100% {
		left: 0;
	}
}

@-webkit-keyframes walkInner {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 100%;
	}
}

@keyframes walkInner {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 100%;
	}
}

@-webkit-keyframes strokeDraw {
	0% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes strokeDraw {
	0% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes linetoggle {
	0% {
		background-position: 100% 100%;
		background-size: 100% 1px;
	}
	50% {
		background-position: 100% 100%;
		background-size: 0 1px;
	}
	51% {
		background-position: 0 100%;
	}
	100% {
		background-position: 0 100%;
		background-size: 100% 1px;
	}
}

@keyframes linetoggle {
	0% {
		background-position: 100% 100%;
		background-size: 100% 1px;
	}
	50% {
		background-position: 100% 100%;
		background-size: 0 1px;
	}
	51% {
		background-position: 0 100%;
	}
	100% {
		background-position: 0 100%;
		background-size: 100% 1px;
	}
}

@-webkit-keyframes sliderIndicator {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes sliderIndicator {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-webkit-text-size-adjust: 100%;
	/* Prevent adjustments of font size after orientation changes in iOS */
	word-break: normal;
}

*,
::before,
::after {
	/* Set `background-repeat: no-repeat` to all elements and pseudo elements */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	background-repeat: no-repeat;
}

::before,
::after {
	text-decoration: inherit;
	/* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
	vertical-align: inherit;
}

* {
	padding: 0;
	/* Reset `padding` and `margin` of all elements */
	margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
	overflow: visible;
	/* Show the overflow in Edge and IE */
	height: 0;
	/* Add the correct box sizing in Firefox */
	color: inherit;
	/* Correct border color in Firefox. */
}

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

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

small {
	font-size: 80%;
	/* Set font-size to 80% in `small` elements */
}

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

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

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

a:active,
a:hover {
	outline-width: 0;
	/* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
	font-family: monospace,monospace;
	/* Specify the font family of code elements */
}

pre {
	font-size: 1em;
	/* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	border-color: inherit;
	/* Correct border color in all Chrome, Edge, and Safari. */
	text-indent: 0;
	/* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
	border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
	border-radius: 0;
}

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

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

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

textarea {
	overflow: auto;
	/* Internet Explorer 11+ */
	resize: vertical;
	/* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
	font: inherit;
	/* Specify font inheritance of form elements */
}

optgroup {
	font-weight: bold;
	/* Restore the font weight unset by the previous rule */
}

button {
	overflow: visible;
	/* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
	text-transform: none;
	/* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
	cursor: pointer;
}

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

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	outline: 1px dotted ButtonText;
}

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

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
	border-style: none;
	background-color: transparent;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline-width: 0;
}

/* Style select like a standard input */
select {
	-moz-appearance: none;
	/* Firefox 36+ */
	-webkit-appearance: none;
	/* Chrome 41+ */
}

select::-ms-expand {
	display: none;
	/* Internet Explorer 11+ */
}

select::-ms-value {
	color: currentColor;
	/* Internet Explorer 11+ */
}

legend {
	/* Correct the color inheritance from `fieldset` elements in IE */
	display: table;
	/* Correct the text wrapping in Edge and IE */
	max-width: 100%;
	/* Correct the text wrapping in Edge and IE */
	max-width: 100%;
	border: 0;
	/* Correct `color` not being inherited in IE 8/9/10/11 */
	color: inherit;
	/* Correct the text wrapping in Edge and IE */
	white-space: normal;
	/* Correct the text wrapping in Edge 18- and IE */
}

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

/* Replace pointer cursor in disabled elements */
[disabled] {
	cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
	border-style: none;
	/* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy='true'] {
	cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
	cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled='true'] {
	cursor: default;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::before,
::after {
	min-width: 0;
}

body {
	min-width: 320px;
	color: #333;
	font-family: "Hiragino Sans","Hiragino Kaku Gothic Std","Helvetica Neue",Arial,Meiryo,sans-serif;
	font-weight: 300;
}

li {
	list-style-type: none;
}

a {
	color: #333;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

summary {
	display: block;
	cursor: pointer;
}

summary::-webkit-details-marker {
	display: none;
}

/* Lazyload
------------------------------------------ */
.lazyload,
.lazyloading {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

:root {
	--grad-green: linear-gradient(0deg, #E5E300 0.78%, #C5D601 53.59%, #B1CE02 102.01%, #AACC03 132.82%);
	--arrow-nomal: url('data:image/svg+xml;charset=utf8,%3Csvg width="56" height="50" viewBox="0 0 56 50" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M41.3712 0H14.1676V24.8224L1.002 24.8224C0.0761198 24.8224 -0.3526 25.9722 0.3474 26.5784L27.1138 49.7588C27.4896 50.0842 28.0473 50.0842 28.4231 49.7588L55.1896 26.5784C55.8895 25.9722 55.4608 24.8224 54.5349 24.8224L41.3712 24.8224V0Z" fill="%23D9D9D9" /%3E%3C/svg%3E');
}

.lp-fee-discount-main {
	position: relative;
	z-index: 2;
	min-height: 100dvh;
	padding-bottom: 88px;
	background-color: #fff;
}

.sr-only {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	border-width: 0;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

._pc {
	display: none;
}

._sp {
	display: block;
}

@-webkit-keyframes updown {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 -10%;
	}
	100% {
		translate: 0 0;
	}
}

@keyframes updown {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 -10%;
	}
	100% {
		translate: 0 0;
	}
}

.lp-fee-discount-about {
	margin-top: 56px;
}

.lp-fee-discount-about .desc {
	margin-top: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
}

.lp-fee-discount-attention {
	margin-top: 56px;
}

.lp-fee-discount-attention .lp-fee-discount-hdg[class] {
	color: #333;
}

.lp-fee-discount-attention .note {
	display: grid;
	margin-top: 24px;
	row-gap: 16px;
}

.lp-fee-discount-attention .note .note-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.65;
}

.lp-fee-discount-attention .note .note-item::before {
	content: "※";
}

.lp-fee-discount .lp-fee-discount-inner {
	margin-inline: 5.3333vw;
}

.lp-fee-discount .lp-fee-discount-hdg {
	color: #0350bf;
}

.lp-fee-discount .lp-fee-discount-hdg.-level2 {
	font-size: 1.75rem;
	letter-spacing: .03em;
	line-height: 1.5;
}

.lp-fee-discount .lp-fee-discount-hdg.-level3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-box-align: center;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-ms-flex-align: center;
	font-size: 1.25rem;
	letter-spacing: .03em;
	line-height: 1.5;
}

.lp-fee-discount .lp-fee-discount-hdg.-level3::before {
	width: 3px;
	height: 1em;
	background-color: currentColor;
	content: "";
}

.lp-fee-discount-detail {
	margin-top: 56px;
	background-color: #0350bf;
	color: #fff;
	padding-block: 56px;
}

.lp-fee-discount-detail .lp-fee-discount-hdg {
	color: #fff;
	text-align: center;
}

.lp-fee-discount-detail .article {
	margin-top: 56px;
}

.lp-fee-discount-detail .article + .article {
	margin-top: 64px;
}

.lp-fee-discount-detail .article .article-head .head-desc {
	margin-top: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
	line-height: 1.65;
}

.lp-fee-discount-detail .article .article-head .head-note {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 4px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-head .head-note::before {
	content: '※';
}

.lp-fee-discount-detail .article .article-note {
	display: grid;
	margin-top: 20px;
	row-gap: 8px;
}

.lp-fee-discount-detail .article .article-note > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.875rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-note > li::before {
	content: '※';
}

.lp-fee-discount-detail .article .article-body {
	position: relative;
	padding: 32px 20px;
	margin-top: 32px;
	background-color: #fff;
	border-radius: 10px;
	color: #333;
	font-weight: 500;
}

.lp-fee-discount-detail .article .article-body.-target .body-hdg {
	display: grid;
	row-gap: 12px;
	text-align: center;
}

.lp-fee-discount-detail .article .article-body.-target .body-hdg.is-inview .main > span {
	translate: 0 0;
}

.lp-fee-discount-detail .article .article-body.-target .body-hdg .sub {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-target .body-hdg .main {
	overflow: hidden;
	font-size: 1.375rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-target .body-hdg .main > span {
	display: block;
	-webkit-transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	translate: 0 100%;
}

.lp-fee-discount-detail .article .article-body.-target .body-human {
	display: grid;
	overflow: hidden;
	align-items: flex-end;
	justify-content: center;
	padding-top: 24px;
	-webkit-box-align: end;
	-webkit-box-pack: center;
	-webkit-column-gap: 1.0667vw;
	-moz-column-gap: 1.0667vw;
	column-gap: 1.0667vw;
	-ms-flex-align: end;
	-ms-flex-pack: center;
	grid-template-columns: 10.6667vw 9.3333vw 10.6667vw 9.3333vw 10.6667vw 9.3333vw 10.6667vw;
}

.lp-fee-discount-detail .article .article-body.-target .body-human.is-inview img {
	translate: 0 0;
}

.lp-fee-discount-detail .article .article-body.-target .body-human img {
	-webkit-transition: translate 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition-delay: var(--delay);
	transition-delay: var(--delay);
	translate: 0 100%;
}

.lp-fee-discount-detail .article .article-body.-require .body-hdg {
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5;
	text-align: center;
}

.lp-fee-discount-detail .article .article-body.-require .body-hdg.is-inview > span {
	translate: 0 0;
}

.lp-fee-discount-detail .article .article-body.-require .body-hdg > span {
	display: block;
	-webkit-transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	translate: 0 100%;
}

.lp-fee-discount-detail .article .article-body.-require .body-card {
	display: grid;
	padding-top: 24px;
}

.lp-fee-discount-detail .article .article-body.-require .body-card.is-inview li img {
	translate: 0 0 0;
}

.lp-fee-discount-detail .article .article-body.-require .body-card li {
	overflow: hidden;
	-webkit-transition: translate 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.lp-fee-discount-detail .article .article-body.-require .body-card li img {
	display: block;
	width: 100%;
	-webkit-transition: translate 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	translate: 0 100% 0;
}

.lp-fee-discount-detail .article .article-body.-require .body-card li:nth-child(2) img {
	display: block;
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.lp-fee-discount-detail .article .article-body.-require .body-card li:nth-child(3) img {
	display: block;
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}

.lp-fee-discount-detail .article .article-body.-require .body-card li:nth-child(4) img {
	display: block;
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}

.lp-fee-discount-detail .article .article-body.-require .body-sec + .body-sec {
	margin-top: 48px;
}

.lp-fee-discount-detail .article .article-body.-require .body-sec.-theo .body-card {
	gap: 16px;
}

.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-hdg > span {
	display: grid;
	gap: 7px;
	place-content: center;
}

.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-hdg img {
	width: 178px;
}

.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-card {
	gap: 16px;
}

.lp-fee-discount-detail .article .article-body.-judge .body-hdg {
	overflow: hidden;
	color: #0350bf;
	text-align: center;
}

.lp-fee-discount-detail .article .article-body.-judge .body-hdg.is-inview > span {
	translate: 0 0;
}

.lp-fee-discount-detail .article .article-body.-judge .body-hdg > span {
	display: block;
	-webkit-transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.45s cubic-bezier(0.23, 1, 0.32, 1);
	translate: 0 100%;
}

.lp-fee-discount-detail .article .article-body.-judge .body-card {
	display: grid;
	margin-top: 24px;
	grid-template-areas: "card1" "arrow" "card2";
}

.lp-fee-discount-detail .article .article-body.-judge .body-card.is-inview li img {
	translate: 0 0;
}

.lp-fee-discount-detail .article .article-body.-judge .body-card::before {
	width: 5.3333vw;
	height: 5.8667vw;
	margin: 4.2667vw auto;
	background: var(--grad-green);
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: '';
	grid-area: arrow;
}

.lp-fee-discount-detail .article .article-body.-judge .body-card li {
	overflow: hidden;
}

.lp-fee-discount-detail .article .article-body.-judge .body-card li:nth-child(2) > img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.lp-fee-discount-detail .article .article-body.-judge .body-card li > img {
	width: 100%;
	-webkit-transition: translate 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transition: translate 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	translate: 0 100%;
}

.lp-fee-discount-detail .article .article-body.-judge .body-note {
	display: block;
	margin-top: 8px;
	color: #808080;
	font-size: 0.75rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table {
	--radius: 10px;
	width: 100%;
	border: 1px solid #d9d9d9;
	border-collapse: separate;
	border-radius: var(--radius);
	border-spacing: 0;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table th {
	border-bottom: 1px solid #d9d9d9;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table th:not(:last-child) {
	border-right: 1px solid #d9d9d9;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table td:not(:last-child) {
	border-right: 1px solid #d9d9d9;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tr:not(:last-child) td {
	border-bottom: 1px solid #d9d9d9;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table thead tr {
	background-color: #0350bf;
	-webkit-clip-path: inset(0 round var(--radius) var(--radius) 0 0);
	clip-path: inset(0 round var(--radius) var(--radius) 0 0);
	color: #fff;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table thead tr th {
	padding: 12px 4px;
	font-size: 0.8125rem;
	line-height: 1.5385;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr .-en {
	font-family: 'Lato',sans-serif;
	font-weight: 700;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td {
	padding: 10px;
	font-size: 0.6875rem;
	letter-spacing: 0;
	line-height: 1.5455;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td.em {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td.em.-tax {
	font-size: 1rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td.em.-tax .note {
	display: block;
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr:last-child {
	-webkit-clip-path: inset(0 round 0 0 var(--radius) var(--radius));
	clip-path: inset(0 round 0 0 var(--radius) var(--radius));
}

.lp-fee-discount-detail .article .article-body.-discount .article-note {
	margin-top: 8px;
}

.lp-fee-discount-detail .article .article-body.-discount .article-note li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #808080;
	font-size: 0.75rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-note li::before {
	content: "※";
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig {
	margin-top: 40px;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-hdg {
	color: #0350bf;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-graph {
	margin-top: 20px;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-graph img {
	width: 100%;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-note {
	display: grid;
	margin-top: 24px;
	row-gap: 8px;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-note > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #808080;
	font-size: 0.75rem;
	line-height: 1.5;
}

.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-note > li::before {
	content: "※";
}

.lp-fee-discount-faq {
	padding-top: 56px;
	padding-bottom: 60px;
	background-color: #f2f6fd;
}

.lp-fee-discount-faq .hdg {
	display: grid;
	grid-auto-rows: -webkit-min-content;
	grid-auto-rows: min-content;
	row-gap: 6px;
}

.lp-fee-discount-faq .hdg .hdg-ja {
	font-size: 1rem;
	line-height: 1.5;
}

.lp-fee-discount-faq .hdg .hdg-en {
	font-family: 'Lato',sans-serif;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.lp-fee-discount-faq .faq {
	margin-top: 24px;
}

.lp-fee-discount-faq .lp-fee-discount-faq__link {
	margin-top: 32px;
	text-align: right;
}

.lp-fee-discount-faq .faq-list .faq-list-col {
	counter-increment: number;
}

.lp-fee-discount-faq .faq-list .faq-list-col:not(:last-child) {
	border-bottom: solid 1px rgba(51, 51, 51, 0.4);
}

.lp-fee-discount-faq .faq-list .faq-list-col .answer {
	display: none;
}

.lp-fee-discount-faq .faq-list .question {
	position: relative;
	padding-left: 38px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
	padding-block: 16px;
}

.lp-fee-discount-faq .faq-list .question:before {
	position: absolute;
	top: 18px;
	left: 0;
	content: "Q" counter(number) ".";
	font-family: 'Lato',sans-serif;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.2;
}

.lp-fee-discount-faq .faq-list .question a {
	display: block;
	width: 100%;
	padding-right: 35px;
}

.lp-fee-discount-faq .faq-list .question a > .ico {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: #333;
	border-radius: 50%;
}

.lp-fee-discount-faq .faq-list .question a > .ico:before, .lp-fee-discount-faq .faq-list .question a > .ico:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background-color: #fff;
	border-radius: 1.5px;
	content: "";
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease,-webkit-transform 0.3s ease;
}

.lp-fee-discount-faq .faq-list .question a > .ico:after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.lp-fee-discount-faq .faq-list .question a.-open .ico:after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(0deg);
	transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.lp-fee-discount-faq .faq-list .answer {
	position: relative;
	padding-bottom: 36px;
	padding-left: 36px;
}

.lp-fee-discount-faq .faq-list .answer:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "A .";
	font-family: 'Lato',sans-serif;
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 1;
}

.lp-fee-discount-faq .faq-list .answer p + p,
.lp-fee-discount-faq .faq-list .answer p + ul,
.lp-fee-discount-faq .faq-list .answer p + ol,
.lp-fee-discount-faq .faq-list .answer p + dl,
.lp-fee-discount-faq .faq-list .answer ul + p,
.lp-fee-discount-faq .faq-list .answer ul + ul,
.lp-fee-discount-faq .faq-list .answer ul + ol,
.lp-fee-discount-faq .faq-list .answer ul + dl,
.lp-fee-discount-faq .faq-list .answer ol + p,
.lp-fee-discount-faq .faq-list .answer ol + ul,
.lp-fee-discount-faq .faq-list .answer ol + ol,
.lp-fee-discount-faq .faq-list .answer ol + dl,
.lp-fee-discount-faq .faq-list .answer dl + p,
.lp-fee-discount-faq .faq-list .answer dl + ul,
.lp-fee-discount-faq .faq-list .answer dl + ol,
.lp-fee-discount-faq .faq-list .answer dl + dl {
	margin-top: 10px;
}

.lp-fee-discount-faq .faq-list .faq-list-desc {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.6;
}

.lp-fee-discount-faq .faq-list .faq-list-case {
	display: grid;
	margin-top: 12px !important;
	font-weight: 500;
	row-gap: 10px;
}

.lp-fee-discount-faq .faq-list .faq-list-case li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.lp-fee-discount-faq .faq-list .faq-list-case li:before {
	content: "・";
}

.lp-fee-discount-faq .faq-list .faq-list__notes {
	color: rgba(255, 255, 255, 0.5);
}

.lp-fee-discount-footer {
	position: relative;
	background-color: #0350bf;
}

.lp-fee-discount-footer .footer-middle[class] {
	border-top: solid 1px #4584e0;
	border-bottom: solid 1px #4584e0;
	font-weight: 500;
	margin-inline: 0;
	padding-block: 56px 36px;
	padding-inline: 5.3333vw;
}

.lp-fee-discount-footer .footer-inner.-plus-policy {
	border-top: 1px solid #ccc;
}

.lp-fee-discount-footer .footer-lower {
	position: relative;
	overflow: hidden;
	height: 284px;
	padding-top: 78px;
}

.lp-fee-discount-footer .footer-lower .copyright {
	color: #82aff1;
	font-family: 'Lato',sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.8333;
	text-align: center;
}

.lp-fee-discount-footer .footer-lower .walk {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
}

.lp-fee-discount-footer .footer-lower .walk span {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(/img/common/bg_walk-stop.png);
	background-position: 51.4096% 0;
	background-repeat: repeat-x;
	background-size: 603px 80px;
}

.lp-fee-discount-footer .footer-logo {
	width: 104px;
	height: 32px;
	margin: 0 auto 20px;
}

.lp-fee-discount-footer .footer-logo img {
	width: 100%;
	height: auto;
}

.lp-fee-discount-footer .footer-sitemap .item a {
	position: relative;
	display: inline-block;
}

.lp-fee-discount-footer .footer-sitemap .item a[target="_blank"]:after {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	margin-left: 5px;
	background-image: url(/img/common/icon_blank-white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	vertical-align: 0.24em;
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap-main {
	display: grid;
	-webkit-column-gap: calc(40 / 335 * 100%);
	-moz-column-gap: calc(40 / 335 * 100%);
	column-gap: calc(40 / 335 * 100%);
	grid-template-columns: repeat(2, fit-content(100%));
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap-main .item a {
	font-size: 0.8125rem;
	line-height: 1.65;
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap-main .item + .item {
	margin-top: 7px;
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap__sub {
	margin-top: 50px;
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap__sub .item a {
	font-size: 0.75rem;
	line-height: 1.65;
}

.lp-fee-discount-footer .footer-sitemap .footer-sitemap__sub .item + .item {
	margin-top: 6px;
}

.lp-fee-discount-footer .sitemap-list > .item a {
	color: #fff;
}

.lp-fee-discount-footer .footer-pagetop {
	position: absolute;
	right: 20px;
	bottom: 262px;
	overflow: visible;
	width: 40px;
	height: 40px;
	margin: 0;
	text-align: center;
}

.lp-fee-discount-footer .footer-pagetop a {
	display: block;
	color: #fff;
	font-family: 'Lato',sans-serif;
	font-weight: 700;
}

.lp-fee-discount-footer .footer-pagetop a span {
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	margin-top: 5px;
	font-family: 'Lato',sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.65;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}

.lp-fee-discount-footer .footer-pagetop a:before {
	position: relative;
	z-index: 1;
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	background-color: #fff;
	background-image: url(/img/common/ico_pagetop_naked-blue.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	content: "";
}

.lp-fee-discount-footer .footer-misc {
	display: grid;
	margin: 40px 0 0;
	color: #fff;
	row-gap: 30px;
}

.lp-fee-discount-footer .footer-misc .footer-misc-title {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.65;
}

.lp-fee-discount-footer .footer-misc .footer-misc-desc {
	margin-top: 4px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.65;
}

.lp-fee-discount.is-walk .footer-lower > .walk {
	position: absolute;
	bottom: 0;
	left: -603px;
	width: 1809px;
	height: 80px;
	-webkit-animation: walkWrapperSP 12s linear infinite;
	animation: walkWrapperSP 12s linear infinite;
}

.lp-fee-discount.is-walk .footer-lower > .walk span {
	-webkit-animation: walkInner 1.2s steps(29) infinite;
	animation: walkInner 1.2s steps(29) infinite;
	background-image: url(/img/common/bg_walk-anim.png);
	background-position: 0 0;
	background-size: 603px 2400px;
}

@forward './about';
@forward './attention';
@forward './component';
@forward './detail';
@forward './faq';
@forward './footer';
@forward './mv';
.lp-fee-discount-mv {
	border: 2.6667vw solid #0350bf;
	background-color: #f2f6fd;
}

.lp-fee-discount-mv .mv-inner {
	position: relative;
	overflow: hidden;
	aspect-ratio: 355 / 493;
	margin-inline: auto;
}

.lp-fee-discount-mv .mv-logo {
	position: absolute;
	top: 2.6667vw;
	left: 2.6667vw;
	width: 37.3333vw;
}

.lp-fee-discount-mv .mv-head {
	color: #0350bf;
}

.lp-fee-discount-mv .mv-head .head-hdg {
	display: grid;
	justify-content: center;
	margin-top: 37.8667vw;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	place-items: center;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-upper {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	overflow: hidden;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-upper .main {
	font-size: 9.6vw;
	font-weight: 600;
	line-height: 1.5;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-upper .sub {
	margin-top: 1.0667vw;
	margin-left: 1.0667vw;
	font-size: 7.4667vw;
	font-weight: 700;
	line-height: 1.5;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle {
	margin-top: 1.6vw;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle .split {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 0.5333vw;
	-moz-column-gap: 0.5333vw;
	column-gap: 0.5333vw;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle .split > span {
	padding: 1.8667vw;
	background-color: #0350bf;
	color: #fff;
	font-size: 13.0667vw;
	font-weight: 600;
	line-height: 1;
}

.lp-fee-discount-mv .mv-head .head-hdg .hdg-bottom {
	font-size: 11.4667vw;
	font-weight: 700;
	letter-spacing: .03em;
	line-height: 1.5;
}

.lp-fee-discount-mv .mv-human {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	justify-content: center;
	-webkit-box-pack: center;
	-webkit-column-gap: 2.6667vw;
	-moz-column-gap: 2.6667vw;
	column-gap: 2.6667vw;
	-ms-flex-pack: center;
	margin-inline: auto;
}

.lp-fee-discount-mv .mv-human img {
	width: 20.8vw;
}

@media screen and (min-width: 768px) {
	.lp-fee-discount-main {
		padding-bottom: 140px;
	}
	._pc {
		display: block;
	}
	._sp {
		display: none;
	}
	.lp-fee-discount-about {
		margin-top: 104px;
	}
	.lp-fee-discount-about .desc {
		max-width: 960px;
		margin-top: 24px;
		font-size: 1rem;
		line-height: 1.65;
	}
	.lp-fee-discount-attention {
		margin-top: 96px;
	}
	.lp-fee-discount-attention .note {
		margin-top: 30px;
		row-gap: 16px;
	}
	.lp-fee-discount-attention .note .note-item {
		font-size: 1rem;
		line-height: 1.65;
	}
	.lp-fee-discount .lp-fee-discount-inner {
		width: min(calc(1040 / 1280 * 100%), 1040px);
		margin-inline: auto;
	}
	.lp-fee-discount .lp-fee-discount-hdg.-level2 {
		font-size: 2rem;
		line-height: 1.5;
	}
	.lp-fee-discount .lp-fee-discount-hdg.-level3 {
		-webkit-column-gap: 12px;
		-moz-column-gap: 12px;
		column-gap: 12px;
		font-size: 1.75rem;
		line-height: 1.5;
	}
	.lp-fee-discount .lp-fee-discount-hdg.-level3::before {
		width: 4px;
	}
	.lp-fee-discount-detail {
		margin-top: 104px;
		padding-block: 72px 120px;
	}
	.lp-fee-discount-detail .article {
		margin-top: 72px;
	}
	.lp-fee-discount-detail .article + .article {
		margin-top: 96px;
	}
	.lp-fee-discount-detail .article .article-head .head-desc {
		margin-top: 24px;
		font-size: 1rem;
		line-height: 1.65;
	}
	.lp-fee-discount-detail .article .article-head .head-note {
		font-size: 0.875rem;
		line-height: 1.6;
	}
	.lp-fee-discount-detail .article .article-body {
		padding: 40px;
		margin-top: 40px;
	}
	.lp-fee-discount-detail .article .article-body.-target .body-hdg .sub {
		font-size: 0.875rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-target .body-human {
		width: min(57.2656vw, 733px);
		padding-top: 30px;
		-webkit-column-gap: min(0.7813vw, 10px);
		-moz-column-gap: min(0.7813vw, 10px);
		column-gap: min(0.7813vw, 10px);
		grid-template-columns: min(7.9688vw, 102px) min(6.875vw, 88px) min(7.9688vw, 102px) min(6.875vw, 88px) min(7.9688vw, 102px) min(6.875vw, 88px) min(7.9688vw, 102px);
		margin-inline: auto;
	}
	.lp-fee-discount-detail .article .article-body.-require .body-hdg {
		font-size: 1.125rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-require .body-card {
		padding-top: 32px;
	}
	.lp-fee-discount-detail .article .article-body.-require .body-sec + .body-sec {
		margin-top: 60px;
	}
	.lp-fee-discount-detail .article .article-body.-require .body-sec.-theo .body-card {
		gap: 20px;
		grid-template-columns: repeat(3, 1fr);
	}
	.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-hdg > span {
		gap: 3px;
		grid-template-columns: repeat(2, fit-content(100%));
	}
	.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-hdg img {
		width: 159px;
	}
	.lp-fee-discount-detail .article .article-body.-require .body-sec.-docomo .body-card {
		gap: 20px;
		grid-template-columns: repeat(4, 1fr);
	}
	.lp-fee-discount-detail .article .article-body.-judge .body-hdg {
		font-size: 1.25rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-judge .body-card {
		grid-template-areas: "card1 arrow card2";
		grid-template-columns: min(23.4375vw, 300px) auto min(23.4375vw, 300px);
		place-content: center;
	}
	.lp-fee-discount-detail .article .article-body.-judge .body-card::before {
		width: min(1.5625vw, 20px);
		height: min(1.7188vw, 22px);
		margin: auto min(3.125vw, 40px);
		-webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
		clip-path: polygon(100% 50%, 0 0, 0 100%);
	}
	.lp-fee-discount-detail .article .article-body.-judge .body-note {
		position: absolute;
		right: 12px;
		bottom: 12px;
		margin-top: 0;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table colgroup col:first-child {
		width: 42%;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table colgroup col:nth-child(2) {
		width: 29%;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table colgroup col:nth-child(3) {
		width: 29%;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table thead tr th {
		padding: 20px;
		font-size: 1rem;
		line-height: 1.25;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td {
		padding: 20px;
		font-size: 0.875rem;
		line-height: 1.5;
		text-align: center;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td.em.-tax {
		font-size: 1.125rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-table tbody tr td.em.-tax .note {
		display: inline;
		font-size: 0.75rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-note {
		margin-top: 20px;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-note li {
		font-size: 0.875rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig {
		margin-top: 48px;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-hdg {
		font-size: 1rem;
		line-height: 1.5;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-graph {
		margin-top: 32px;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-graph img {
		max-width: 680px;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-note {
		margin-top: 40px;
	}
	.lp-fee-discount-detail .article .article-body.-discount .article-fig .fig-note > li {
		font-size: 0.875rem;
		line-height: 1.5;
	}
	.lp-fee-discount-faq {
		padding-top: 80px;
		padding-bottom: 72px;
	}
	.lp-fee-discount-faq .col {
		display: grid;
		grid-template-columns: auto calc(740 / 1040 * 100%);
	}
	.lp-fee-discount-faq .hdg .hdg-ja {
		font-size: 1.125rem;
		line-height: 1.8333;
	}
	.lp-fee-discount-faq .hdg .hdg-en {
		font-size: 2.5rem;
		line-height: 1;
	}
	.lp-fee-discount-faq .faq {
		margin-top: -32px;
	}
	.lp-fee-discount-faq .faq-list .question {
		padding-left: 48px;
		font-size: 1rem;
		line-height: 1.625;
		padding-block: 32px;
	}
	.lp-fee-discount-faq .faq-list .question:before {
		top: 30px;
		font-size: 1.5rem;
		line-height: 1.0833;
	}
	.lp-fee-discount-faq .faq-list .question a {
		padding-right: 48px;
		-webkit-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
	.lp-fee-discount-faq .faq-list .question a:hover {
		opacity: 0.6;
	}
	.lp-fee-discount-faq .faq-list .answer {
		padding-bottom: 48px;
		padding-left: 48px;
	}
	.lp-fee-discount-faq .faq-list .answer:before {
		font-size: 1.5rem;
		line-height: 1.0833;
	}
	.lp-fee-discount-faq .faq-list .answer p + p,
	.lp-fee-discount-faq .faq-list .answer p + ul,
	.lp-fee-discount-faq .faq-list .answer p + ol,
	.lp-fee-discount-faq .faq-list .answer p + dl,
	.lp-fee-discount-faq .faq-list .answer ul + p,
	.lp-fee-discount-faq .faq-list .answer ul + ul,
	.lp-fee-discount-faq .faq-list .answer ul + ol,
	.lp-fee-discount-faq .faq-list .answer ul + dl,
	.lp-fee-discount-faq .faq-list .answer ol + p,
	.lp-fee-discount-faq .faq-list .answer ol + ul,
	.lp-fee-discount-faq .faq-list .answer ol + ol,
	.lp-fee-discount-faq .faq-list .answer ol + dl,
	.lp-fee-discount-faq .faq-list .answer dl + p,
	.lp-fee-discount-faq .faq-list .answer dl + ul,
	.lp-fee-discount-faq .faq-list .answer dl + ol,
	.lp-fee-discount-faq .faq-list .answer dl + dl {
		margin-top: 25px;
	}
	.lp-fee-discount-faq .faq-list .faq-list-desc {
		font-size: 1rem;
		line-height: 1.6;
	}
	.lp-fee-discount-footer .footer-middle[class] {
		border-top: none;
		padding-block: 64px;
	}
	.lp-fee-discount-footer .footer-inner {
		max-width: 1120px;
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		margin: 0 auto;
		padding-inline: min(11.1111vw, 160px);
	}
	.lp-fee-discount-footer .footer-lower {
		height: 340px;
		padding-top: 64px;
	}
	.lp-fee-discount-footer .footer-lower .walk {
		left: 0;
		width: 100%;
		height: 160px;
	}
	.lp-fee-discount-footer .footer-lower .walk span {
		background-size: 1206px 160px;
	}
	.lp-fee-discount-footer .footer-logo {
		width: 136px;
		height: 42px;
		margin-bottom: 15px;
	}
	.lp-fee-discount-footer .footer-sitemap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.lp-fee-discount-footer .footer-sitemap .footer-sitemap-main {
		max-width: 400px;
		-webkit-column-gap: calc(36 / 400 * 100%);
		-moz-column-gap: calc(36 / 400 * 100%);
		column-gap: calc(36 / 400 * 100%);
		grid-template-columns: calc(156 / 400 * 100%) calc(208 / 400 * 100%);
		padding-block: 20px;
	}
	.lp-fee-discount-footer .footer-sitemap .footer-sitemap-main .item + .item {
		margin-top: 8px;
	}
	.lp-fee-discount-footer .footer-sitemap .footer-sitemap__sub {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-basis: 57.5%;
		margin-top: 0;
		-ms-flex-preferred-size: 57.5%;
	}
	.lp-fee-discount-footer .footer-pagetop {
		right: 32px;
		bottom: 318px;
		width: 48px;
		height: 48px;
	}
	.lp-fee-discount-footer .footer-pagetop a:hover:after {
		z-index: 2;
		background-image: url(/img/common/ico_pagetop_naked-white.svg);
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	.lp-fee-discount-footer .footer-pagetop a span {
		margin-top: 14px;
	}
	.lp-fee-discount-footer .footer-pagetop a:before {
		width: 48px;
		height: 48px;
		margin-bottom: 10px;
	}
	.lp-fee-discount-footer .footer-pagetop a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 50%;
		width: 48px;
		height: 48px;
		border: 2px solid #fff;
		margin-left: -24px;
		background-color: #0350bf;
		background-image: url(/img/common/ico_pagetop_naked-blue.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		border-radius: 50%;
		content: "";
		opacity: 0;
		-webkit-transform: scale3d(0.6, 0.6, 1);
		transform: scale3d(0.6, 0.6, 1);
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
		transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	}
	.lp-fee-discount-footer .footer-misc {
		padding-left: calc(80 / 980 * 100%);
		border-left: 1px solid #4584e0;
		margin-top: 0;
		margin-left: calc(120 / 980 * 100%);
		padding-block: 20px;
		row-gap: 18px;
	}
	.lp-fee-discount.is-walk .footer-lower > .walk {
		left: -1206px;
		width: 3618px;
		height: 160px;
		-webkit-animation: walkWrapperPC 20s linear infinite;
		animation: walkWrapperPC 20s linear infinite;
	}
	.lp-fee-discount.is-walk .footer-lower > .walk span {
		-webkit-animation-duration: 1.2s;
		animation-duration: 1.2s;
		background-size: 1206px 4800px;
	}
	.lp-fee-discount-mv {
		border: min(1.5625vw, 20px) solid #0350bf;
	}
	.lp-fee-discount-mv .mv-inner {
		max-width: 1280px;
		aspect-ratio: 1240 / 700;
	}
	.lp-fee-discount-mv .mv-logo {
		top: min(1.5625vw, 20px);
		left: min(1.5625vw, 20px);
		width: min(15.3125vw, 196px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg {
		margin-top: min(10.9375vw, 140px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-upper .main {
		font-size: min(3.9063vw, 50px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-upper .sub {
		margin-top: min(0.3125vw, 4px);
		margin-left: min(0.3125vw, 4px);
		font-size: min(2.9688vw, 38px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle {
		margin-top: min(0.3125vw, 4px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle .split {
		-webkit-column-gap: min(0.3125vw, 4px);
		-moz-column-gap: min(0.3125vw, 4px);
		column-gap: min(0.3125vw, 4px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-middle .split > span {
		padding: min(0.7813vw, 10px);
		font-size: min(5.8594vw, 75px);
	}
	.lp-fee-discount-mv .mv-head .head-hdg .hdg-bottom {
		margin-top: min(0.3125vw, 4px);
		font-size: min(5.1563vw, 66px);
	}
	.lp-fee-discount-mv .mv-human {
		-webkit-column-gap: min(3.2813vw, 42px);
		-moz-column-gap: min(3.2813vw, 42px);
		column-gap: min(3.2813vw, 42px);
	}
	.lp-fee-discount-mv .mv-human img {
		width: min(15.9375vw, 204px);
	}
}

@media (hover: hover) {
	.lp-fee-discount-detail .article .article-body.-target .body-human:hover img {
		-webkit-animation: updown 0.45s ease forwards var(--delay);
		animation: updown 0.45s ease forwards var(--delay);
	}
	.lp-fee-discount-mv .mv-human:hover img {
		-webkit-animation: updown 0.45s ease forwards var(--delay);
		animation: updown 0.45s ease forwards var(--delay);
	}
}

@media screen and (min-width: 768px) and (hover: hover) {
	.lp-fee-discount-detail .article .article-body.-require .body-card li:hover {
		translate: 0 -5%;
	}
}

@media screen and (max-width: 767px) {
	.lp-fee-discount-detail .article .article-body.-discount {
		padding-top: 20px;
	}
	.lp-fee-discount-mv .mv-human img:first-child {
		display: none;
	}
}

@media screen and (min-width: 1120px) {
	.lp-fee-discount-footer .sitemap-list > .item a {
		-webkit-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
	.lp-fee-discount-footer .sitemap-list > .item a:hover {
		opacity: 0.6;
	}
}
