@charset "UTF-8";

/* =========================================================
	Variables
========================================================= */
:root {
	--lp-design-width: 850;
	--lp-unit: min(calc(100vw / var(--lp-design-width)), 1px);

	--lp-width: calc(var(--lp-design-width) * 1px);
	--lp-side-padding: calc(50 * var(--lp-unit));
	--lp-content-padding-sm: calc(18 * var(--lp-unit));
	--lp-content-padding-md: calc(36 * var(--lp-unit));

	--lp-design-width: 850;
	--lp-display-width: 600px;
	--lp-unit: min(
		calc(100vw / var(--lp-design-width)),
		calc(var(--lp-display-width) / var(--lp-design-width))
	);

	--lp-width: var(--lp-display-width);
	--lp-side-padding: calc(50 * var(--lp-unit));
	--lp-content-padding-sm: calc(18 * var(--lp-unit));
	--lp-content-padding-md: calc(36 * var(--lp-unit));

	--color-red: #e60000;
	--color-text: #3c3c3c;
	--color-white: #fff;
	--color-bg: #efefef;
	--color-border: #b5b5b5;

	--header-bar-height: 50px;

	--header-height: 80px;

	--font-base: "Noto Sans JP", sans-serif;
	--font-en: "Google Sans Flex", "Noto Sans JP", sans-serif;

	--z-bg: 0;
	--z-page: 1;
	--z-fixed-side: 20;
}

/* =========================================================
	Base
========================================================= */
body {
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	background-color: var(--color-bg);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: var(--z-bg);
	background: url("../img/bg_body.jpg") top center / 2000px auto no-repeat;
	pointer-events: none;
}
html {
	margin-top: var(--header-bar-height);
}
[id] {
	scroll-margin-top: var(--header-height);
}
a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

/* =========================================================
	Layout
========================================================= */
.l-page {
	position: relative;
	z-index: var(--z-page);
	min-height: 100vh;
	border-top: 9px solid #ED2200;
}

.l-main {
	position: relative;
	z-index: 1;
	width: min(100%, var(--lp-width));
	margin-right: auto;
	margin-left: auto;
	background-color: var(--color-white);
}

.l-container {
	margin-right: var(--lp-side-padding);
	margin-left: var(--lp-side-padding);
}

.l-section {
	padding-right: var(--lp-side-padding);
	padding-left: var(--lp-side-padding);
}

/* =========================================================
	Fixed Side
========================================================= */
.l-fixed-menu,
.l-fixed-cta {
	position: fixed;
	top: 50%;
	z-index: var(--z-fixed-side);
	transform: translateY(-50%);
}

.l-fixed-menu {
	right: calc(50% + 340px);
	width: 320px;
}

.l-fixed-cta {
	left: calc(50% + 340px);
	width: 320px;
}

.l-fixed-menu__list {
	display: grid;
	gap: calc(34 * var(--lp-unit));
}

.l-fixed-menu__item a,
.c-fixed-cta__btn {
	display: block;
	transition: opacity 0.3s;
}

.l-fixed-menu__item img,
.c-fixed-cta__btn img {
	display: block;
	width: 100%;
	height: auto;
}

.c-fixed-cta {
	padding: calc(36* var(--lp-unit)) calc(30 * var(--lp-unit)) calc(34 * var(--lp-unit));
	border: 2px solid var(--color-border);
	border-radius: 8px;
	background-color: var(--color-white);
	text-align: center;
}

.c-fixed-cta__text {
	margin-bottom: calc(26 * var(--lp-unit));
	font-size: calc(28 * var(--lp-unit));
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.02em;
}

.c-fixed-cta__text strong {
	font-weight: 600;
}

@media (hover: hover) {
	.l-fixed-menu__item a:hover,
	.c-fixed-cta__btn:hover {
		opacity: 0.75;
	}
}

@media (max-width: 1500px) {
	.l-fixed-menu {
		right: calc(50% + 305px);
		width: 320px;
	}

	.l-fixed-cta {
		left: calc(50% + 305px);
		width: 320px;
	}
}

@media (max-width: 1260px) {
	.l-fixed-menu,
	.l-fixed-cta {
		display: none;
	}
}

.c-balloon-and-text {
    position: relative;
}
.c-balloon-and-text p {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-weight: 600;
    width: 100%;
    font-size: calc(46 * var(--lp-unit));
    text-align: center;
    line-height: 1.1;
}

/* =========================================================
	Utility
========================================================= */
.u-content-sm {
	padding-right: var(--lp-content-padding-sm);
	padding-left: var(--lp-content-padding-sm);
}

.u-content-md {
	padding-right: var(--lp-content-padding-md);
	padding-left: var(--lp-content-padding-md);
}
.u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.u-font-en {
	font-family: var(--font-en);
}
.u-letter-tight {
    letter-spacing: -2px;
    color: var(--color-text)!important;
    font-size: calc(48 * var(--lp-unit))!important;
    font-weight: 600!important;
    line-height: 1.45!important;
}
@media (min-width: 768px) {
	.u-only-sp {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.u-only-pc {
		display: none !important;
	}
}

/* =========================================================
	SP
========================================================= */
@media (max-width: 767px) {
	body {
		font-size: 3.764vw;
	}

	body::before {
		display: none;
	}

	.l-main {
		width: 100%;
	}

	.l-container {
		width: auto;
	}

	.l-section {
		padding-right: 5.882vw;
		padding-left: 5.882vw;
	}
}

/* =========================================================
	Hero
========================================================= */
.p-hero {
	background: url("../img/bg_mv.svg") top center / 100% auto no-repeat;
}

.p-hero__content {
	padding-top: calc(25 * var(--lp-unit));
	padding-bottom: calc(150 * var(--lp-unit));
}

.p-hero__ribbon {
	width: 100%;
}

.p-hero__lead {
	margin-top: 2.4%;
	font-size: 4.47vw;
	font-weight: 900;
	line-height: 1.32;
	text-align: center;
	letter-spacing: 0.02em;
}

.p-hero__catch {
    display: block;
	margin-top: 1%;
	margin-right: -5.882%;
	margin-left: -5.882%;
}

.p-hero__benefit-list {
	display: grid;
	gap: calc(22 * var(--lp-unit));
	margin-top: 17%;
    padding-left: calc(14 * var(--lp-unit));
    padding-right: calc(35 * var(--lp-unit));
}

.p-hero__notes {
    padding: 0 calc(35 * var(--lp-unit));
	margin-top: 2.2%;
	color: var(--color-white);
	font-size: calc(24 * var(--lp-unit));
	font-weight: 500;
	line-height: 1.45;
}

.p-hero__notes li {
	position: relative;
	padding-left: 2.2em;
}

.p-hero__notes li::before {
	content: "※ " counter(note);
	position: absolute;
	top: 0;
	left: 0;
}

.p-hero__notes {
	counter-reset: note;
}

.p-hero__notes li {
	counter-increment: note;
}

.p-hero__notes li + li {
	margin-top: 0.25em;
}

/* =========================================================
	Hero - Tablet / PC
========================================================= */
@media (min-width: 851px) {

}

/* =========================================================
	Hero CTA
========================================================= */
.p-hero__cta {
	margin-top: 25%;
}

.p-hero__cta-link {
	display: block;
	transition: opacity .3s;
    width: 88.8%;
    margin-left: auto;
    margin-right: auto;
}

@media (hover:hover) {
	.p-hero__cta-link:hover {
		opacity: .8;
	}
}


/* =========================================================
	Fee
========================================================= */
.p-fee {
	background: url("../img/bg_cield.svg") top center / 100% auto no-repeat;
}

.p-fee__content {
	padding-top: 7.6%;
	padding-bottom: 8%;
}

.p-fee__balloon {
	margin-right: auto;
	margin-left: auto;
}

.p-fee__title {
	margin-top: 2%;
	color: var(--color-white);
	font-size: calc(88 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.04em;
}

.p-fee__item {
	margin-top: 4%;
	text-align: center;
}
.p-fee__item.first {
	margin-top: 22%;
}

.p-fee__item-title {
	color: #3C3C3C;
	font-weight: 600;
	line-height: 1.45;
    font-size: calc(58 * var(--lp-unit));
    text-align: center;

}

.p-fee__item-title span {
	display: inline-block;
	margin-top: 1%;
	padding-right: 0.08em;
	padding-left: 0.08em;
	color: var(--color-red);
	font-size: 1.2em;
	font-weight: 900;
	line-height: 1.15;
    font-size: calc(88 * var(--lp-unit));
}

.p-fee__item-title sup {
	font-size: 0.5em;
	vertical-align: super;
}

.p-fee__image {
	width: 58%;
	margin-top: 4%;
	margin-right: auto;
	margin-left: auto;
}

/* =========================================================
	Fee Table
========================================================= */
.p-fee__table-block {
	text-align: center;
}

.p-fee__free-icon {
	width: 28.8%;
	margin-right: auto;
	margin-left: auto;
}

.p-fee__table-title {
	margin-top: 5%;
	color: #3C3C3C;
	font-size: calc(48 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
}

.p-fee__table-title span {
	color: var(--color-red);
	font-size: 1.18em;
}

.p-fee__table {
	margin-top: 5%;
}

.p-common__notes {
	margin-top: 4%;
	font-size: calc(24 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
    margin-bottom: calc(90 * var(--lp-unit));
}
.p-common__notes.yellow {
	margin-top: 12%;
    margin-bottom: 0;
    padding-bottom: 2em;
    background-color: #FFFF00;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: .75em .75em 1.5em;
}

.p-common__notes li {
	position: relative;
	padding-left: 2.2em;
}

.p-common__notes li:not(.dot)::before {
	content: "※ " counter(fee-note);
	position: absolute;
	top: 0px;
	left: 0;
}
.p-common__notes li.dot::before {
    content: "・ ";
    position: absolute;
	top: 0;
	left: 0.2em;
}
.p-common__notes {
	counter-reset: fee-note;
}

.p-common__notes li {
	counter-increment: fee-note;
}

.p-common__notes li + li {
	margin-top: 0.2em;
}

.p-common__notes sup {
	font-size: 0.7em;
	vertical-align: super;
}

/* =========================================================
	Credit Cost
========================================================= */
.p-credit-cost {
	background: url("../img/bg_cield.svg") top center / 100% auto no-repeat;
}

.p-credit-cost__content {
	padding-top: 7%;
}

.p-credit-cost__balloon {
	width: 100%;
}

.p-credit-cost__heading {
	margin-top: 2%;
	color: var(--color-white);
	font-size: calc(46 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.p-credit-cost__heading span {
	display: inline;
	font-weight: 900;
	line-height: 1;
	font-size: calc(88 * var(--lp-unit));
}

.p-credit-cost__heading small {
	font-size: 0.35em;
	font-weight: 700;
}

.p-credit-cost__icon {
	width: 24%;
	margin-top: 19%;
	margin-right: auto;
	margin-left: auto;
}

.p-credit-cost__title {
	margin-top: 5%;
	color: var(--color-text);
	font-size: calc(48 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
}

.p-credit-cost__title span {
	display: block;
	color: var(--color-red);
	font-size: 1.3em;
	line-height: 1.1;
}

.p-credit-cost__table {
	margin-top: 6%;
}

/* =========================================================
	Credit Cost Notes / Large Plan
========================================================= */
.p-credit-cost__notes {
	margin-top: 4%;
	font-size: calc(18 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
}

.p-credit-cost__notes li {
	position: relative;
	padding-left: 2.2em;
}

.p-credit-cost__notes {
	counter-reset: credit-cost-note;
}

.p-credit-cost__notes li {
	counter-increment: credit-cost-note;
}

.p-credit-cost__notes li::before {
	content: "※ " counter(credit-cost-note);
	position: absolute;
	top: 0;
	left: 0;
}

.p-credit-cost__notes li + li {
	margin-top: 0.2em;
}

.p-credit-cost__large-plan {
	margin-top: 11%;
	padding: 24% 6% 7%;
	background: url("../img/frame_oguchi.svg") top center / 100% auto no-repeat;
	text-align: center;
    padding-bottom: 31%;
}

.p-credit-cost__large-plan-title {
	color: #0077ff;
	font-size: calc(88 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.15;
    margin-top: 14%;
}

.p-credit-cost__large-plan-title span {
	font-size: calc(58 * var(--lp-unit));    
}

.p-credit-cost__large-plan-text {
	margin-top: 6%;
	color: var(--color-text);
	font-size: calc(38 * var(--lp-unit));
	font-weight: 500;
	line-height: 1.45;
}

.p-credit-cost__large-plan-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88%;
	margin: 8% auto 0;
	padding: 4% 6%;
	background-color: #0077ff;
	box-shadow: 0 6px 0 #666;
	color: #fff;
	font-size: calc(38 * var(--lp-unit));
	font-weight: 900;
	line-height: 1;
	transition: opacity 0.3s;
}

.p-credit-cost__large-plan-btn::after {
	content: "";
	width: 0.55em;
	height: 0.55em;
	margin-left: 12%;
	border-top: 4px solid currentColor;
	border-right: 4px solid currentColor;
	transform: rotate(45deg);
}

@media (hover: hover) {
	.p-credit-cost__large-plan-btn:hover {
		opacity: 0.75;
	}
}

/* =========================================================
	Card Point
========================================================= */
.p-card-point {
	background: url("../img/bg_cield_big.svg") top center / 100% auto no-repeat;
}

.p-card-point__content {
	padding-top: 7%;
	padding-bottom: 8%;
}

.p-card-point__heading {
	margin-top: 4%;
	color: var(--color-white);
	font-size: calc(88 * var(--lp-unit));
	font-weight: 900;
	line-height: 0.8;
	text-align: center;
}

.p-card-point__heading span {
	font-size: 0.55em;
	font-size: calc(46 * var(--lp-unit));
}

.p-card-point__heading small {
	font-size: 0.35em;
}

.p-card-point__lead-note {
	margin-top: 2%;
	color: var(--color-white);
	font-size: calc(17 * var(--lp-unit));
	font-weight: 700;
	text-align: center;
}

.p-card-point__flow {
	width: 76.93%;
	margin: 17% auto 0;
}

.p-card-point__text,
.p-card-point__catch {
	margin-top: 8%;
	color: var(--color-text);
	font-size: calc(48 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}
.p-card-point__text {
    font-size: calc(38 * var(--lp-unit));
    padding: 0;
}
.p-card-point__catch {
	margin-top: 3%;
}

.p-card-point__text span,
.p-card-point__catch span {
	color: var(--color-red);
	font-size: 1.3em;
	line-height: 1.1;
}
.p-card-point__catch {
    font-size: calc(58 * var(--lp-unit));
}
.p-card-point__catch span {
    font-size: 1.86em;
}

.p-card-point__percent {
	width: 70%;
	margin: 7% auto 0;
}

.p-card-point__arrow {
	margin-top: 8%;
}

.p-card-point__grow-title {
    font-size: calc(48 * var(--lp-unit));
    font-weight: 600;
    text-align: center;
}
.p-card-point__grow {
	width: 79.6%;
	margin: 7% auto 2%;
}

.p-card-point__global {
	margin-top: 6%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.p-card-point__notes {
	margin-top: 8%;
	font-size: calc(17 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.45;
}

.p-card-point__notes li {
	position: relative;
	padding-left: 2.2em;
}

.p-card-point__notes {
	counter-reset: card-note;
}

.p-card-point__notes li {
	counter-increment: card-note;
}

.p-card-point__notes li::before {
	content: "※ " counter(card-note);
	position: absolute;
	top: 0;
	left: 0;
}
.p-common__notes.tsumitate {
	margin-bottom: 0;
}
.p-common__notes li.row2::before {
	top: 2px;
}
.p-card-point__notes.tsumitate li::before {
	content: "※ 1"
}
.p-common__notes.tsumitate2 {
	margin-top: 0.4em;
}
.p-common__notes.tsumitate2 li::before {
	content: "※ 2";
	top:0;
}

.p-card-point__notes li + li {
	margin-top: 0.6em;
}

.p-card-point__note-text {
	margin-top: 3%;
	font-size: calc(24 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0;
}

.p-card-point__case {
	margin-top: 10%;
	text-align: center;
}

.p-card-point__case-title {
	color: var(--color-red);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
}

.p-card-point__case-rate {
	width: 69%;
	margin: 3% auto 0;
	padding: 0.25em 0;
	background-color: var(--color-red);
	color: var(--color-white);
	font-size: calc(32 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.2;
}

.p-card-point__case-num {
	position: relative;
	display: inline-block;
	margin-top: 2%;
	color: var(--color-red);
	font-family: var(--font-en);
	font-size: calc(132 * var(--lp-unit));
	font-weight: 900;
	line-height: 1;
}

.p-card-point__case-num small {
	position: absolute;
	top: 8%;
	right: -0.9em;
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: 0.18em;
}

.p-card-point__case-num img {
	position: absolute;
	top: -55%;
	right: -57%;
	width: 48%;
}

.p-card-point__case-text {
	margin-top: 2%;
	color: var(--color-text);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
}

/* =========================================================
	Card Point Ponta
========================================================= */
.p-card-point__ponta {
	margin-top: 0;
	text-align: center;
}

.p-card-point__ponta-image {
	width: 72%;
	margin-right: auto;
	margin-left: auto;
}

.p-card-point__ponta-text {
	margin-top: 7%;
	color: var(--color-text);
	font-size: calc(58 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.25;
}

.p-card-point__ponta-text span {
	display: block;
	color: var(--color-red);
	font-size: calc(110 * var(--lp-unit));
	line-height: 1.1;
}

.p-card-point__more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4%;
	width: 92%;
	margin: 8% auto 0;
	padding: 3.5% 6%;
	border: 4px solid var(--color-text);
	border-radius: 999px;
	color: var(--color-text);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1;
	transition: opacity 0.3s;
}

.p-card-point__more img {
	width: 7.2%;
	max-width: 46px;
}

@media (hover: hover) {
	.p-card-point__more:hover {
		opacity: 0.75;
	}
}

/* =========================================================
	Card Point au PAY
========================================================= */
.p-card-point__au {
	margin-top: 8%;
	padding: 5%;
	border-radius: 48px;
	background: url("../img/bg_orange_grad_sec.jpg") top center / cover no-repeat;
}
.p-card-point__au-inner {
    background-color: #fff;
    border-radius: 28px;
}

.p-card-point__au[hidden] {
	display: none;
}

.p-card-point__au-content {
	padding: 8% 5% 10%;	
	text-align: center;
}

.p-card-point__au-title {
	color: var(--color-text);
	font-size: calc(44 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
}

.p-card-point__au-title span {
	display: block;
	margin-top: 4%;
	color: var(--color-red);
	font-size: 0.9em;
	line-height: 1.25;
}

.p-card-point__au-title strong {
	font-family: var(--font-en);
	font-size: 2em;
	line-height: 0.8;
}

.p-card-point__au-lead {
	position: relative;
	margin-top: 9%;
	padding: 5% 3%;
	background-color: #555;
	color: #fff;
	font-size: calc(40 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
}

.p-card-point__au-lead::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -24px;
	width: 0;
	height: 0;
	border-top: 24px solid #555;
	border-right: 24px solid transparent;
	border-left: 24px solid transparent;
	transform: translateX(-50%);
}

.p-card-point__au-case {
	margin-top: 8%;
}

.p-card-point__au-case + .p-card-point__au-case {
	padding-top: 8%;
	position: relative;
}
.p-card-point__au-case + .p-card-point__au-case::before {
	display: block;
	content: '';
	height: 4px;
	position: absolute;
	top: 0;
	left: 5%;
	border-top: 5px dotted #888;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.p-card-point__au-case-title {
	color: var(--color-text);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.3;
}

.p-card-point__au-rate {
	width: 78%;
	margin: 4% auto 0;
	padding: 0.15em 0;
	background: url("../img/bg_orange_grad.jpg") center / cover no-repeat;
	color: #fff;
	font-size: calc(32 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.2;
}

.p-card-point__au-num {
	position: relative;
	display: inline-block;
	margin-top: 3%;
	color: var(--color-red);
	font-family: var(--font-en);
	font-size: calc(120 * var(--lp-unit));
	font-weight: 900;
	line-height: 1;
}

.p-card-point__au-num img {
	position: absolute;
	top: -65%;
	right: -48%;
	width: 46%;
}

.p-card-point__au-text {
	margin-top: 2%;
	color: var(--color-red);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.3;
}

/* button reset */
.p-card-point__more {
	appearance: none;
	border: 4px solid var(--color-text);
	background-color: transparent;
	cursor: pointer;
}

.p-card-point__au-plus {
	width: 18%;
	margin: 0 auto 9%;
}

.p-card-point__au-bonus-title {
	margin-top: 6%;
	color: var(--color-text);
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}

.p-card-point__au-bonus-title sup {
	font-size: calc(24 * var(--lp-unit));
	vertical-align: middle;
}
.p-card-point__au-bonus-title span {
	display: block;
	margin-top: 2%;
	color: var(--color-red);
	font-size: calc(48 * var(--lp-unit));
	line-height: 1.2;
}
.p-card-point__au-bonus-title span span {
	font-size: calc(68 * var(--lp-unit));
}

.p-card-point__au-notes {
	margin-top: 8%;
	padding: 4%;
	background-color: #fff600;
	color: #3C3C3C;
	font-size: calc(14 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.45;
	text-align: left;
}

.p-card-point__au-notes li {
	position: relative;
	padding-left: 2.2em;
}

.p-card-point__au-notes {
	counter-reset: au-note;
}

.p-card-point__au-notes li {
	counter-increment: au-note;
}

.p-card-point__au-notes li::before {
	content: "※ " counter(au-note);
	position: absolute;
	top: 0;
	left: 0;
}

/* =========================================================
	Point Program
========================================================= */
.p-point-program {
	margin-top: 10%;
	padding: 15% 5% 19%;
	background: url("../img/bg_point.jpg") top center / contain no-repeat;
}

.p-point-program__content {
	padding: 26% 5% 9%;
	border-radius: 0 0 28px 28px;
	text-align: center;
}

.p-point-program__title {
	color: var(--color-red);
	font-size: calc(48 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.5;
}

.p-point-program__title span {
	color: var(--color-text);
}

.p-point-program__lead {
	position: relative;
	margin-top: 10%;
	padding: 5% 3%;
	background-color: #555;
	color: #fff;
	font-size: calc(36 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
}

.p-point-program__lead::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -23px;
	width: 0;
	height: 0;
	border-top: 24px solid #555;
	border-right: 24px solid transparent;
	border-left: 24px solid transparent;
	transform: translateX(-50%);
}

.p-point-program__rate {
	width: 88%;
	margin: 12% auto 0;
}
.p-point-program__rate-text {
    font-size: calc(48 * var(--lp-unit));
    color: #E60000;
    font-weight: 900;
    margin-top: 3%;
}

.p-point-program__btn {
	width: 100%;
	margin: 10% auto 0;
}

.p-point-program__btn a {
	display: block;
	transition: opacity 0.3s;
}

@media (hover: hover) {
	.p-point-program__btn a:hover {
		opacity: 0.75;
	}
}

/* =========================================================
	Closing
========================================================= */
.p-closing {
	padding: 8% 0;
	text-align: center;
}

.p-closing__title {
	color: var(--color-text);
	font-size: calc(58 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.25;
}

.p-closing__title span {
	display: block;
	margin-bottom: 3%;
	color: var(--color-red);
	font-size: calc(92 * var(--lp-unit));
	line-height: 1.15;
}

.p-closing__cta {
	width: 100%;
	margin: 10% auto 0;
}

.p-closing__cta a {
	display: block;
	transition: opacity .3s;
}

@media (hover:hover) {
	.p-closing__cta a:hover {
		opacity: .8;
	}
}

/* =========================================================
	Appeal
========================================================= */
.p-appeal {
	padding-bottom: 10%;
}

.p-appeal__content {
	padding: 7% 5%;
	margin: 0 -2%;
	border-radius: 32px;
	background-color: #e9e9e9;
}
.p-appeal__content:not(:last-of-type) {
	margin-bottom: calc(73 * var(--lp-unit));
}

.p-appeal__heading {
	padding: 7% 5% 12%;
	margin-left: 1%;
	margin-right: 1%;
	background: url("../img/bg_cield_slim.svg") top center / 100% auto no-repeat;
	color: #fff;
	font-size: calc(48 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
}

.p-appeal__title {
	margin-top: 5%;
	color: var(--color-text);
	font-size: calc(68 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
}

.p-appeal__title span {
	color: var(--color-red);
	font-size: 1.2em;
}

.p-appeal__card {
	margin-top: 8%;
	padding: 10% 3%;
	border-radius: 24px;
	background-color: #fff;
}

.p-appeal__item + .p-appeal__item {
	margin-top: 12%;
}

.p-appeal__label {
	padding: 0.4em 1em;
	border-radius: 999px;
	background-color: #666;
	color: #fff;
	font-size: calc(42 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
}

.p-appeal__value {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4%;
	margin-top: 10%;
}

.p-appeal__value-icon {
	width: 91%;
}
.p-appeal__value-icon-2 {
	width: 80%;
}
.p-appeal__value-money {
	width: 18%;
	opacity: 0.35;
}

.p-appeal__value-text {
	color: var(--color-red);
	font-family: var(--font-en);
	font-size: calc(120 * var(--lp-unit));
	font-weight: 900;
	line-height: 1;
}

.p-appeal__value-text span {
	font-family: var(--font-base);
	font-size: 0.55em;
}

/* =========================================================
	Appeal Text / Block
========================================================= */
.p-appeal__text {
	margin-top: 8%;
	color: var(--color-text);
	font-size: calc(38 * var(--lp-unit));
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
	letter-spacing: 0.05em;
}

.p-appeal__block {
	padding:0;
	border-radius: 28px;
}

.p-appeal__block-title {
	color: var(--color-text);
	font-size: calc(53 * var(--lp-unit));
	font-weight: 900;
	line-height: 1.18;
	text-align: center;
	margin-bottom: 0.8em;
}

.p-appeal__block-title span {
	color: var(--color-red);
	font-size: calc(78 * var(--lp-unit));
	font-weight: 900;
}
.p-appeal__image {
	padding: 8%;
	margin-top: 8%;
    border-radius: 26px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10%;
	row-gap: 5%;
}
.p-appeal__image.support {
	padding-left: 2%;
	padding-right: 2%;
}
.p-appeal__image.support h3 {
	width: 100%;
}
.p-appeal__image.support .icons {
	display: flex;
	justify-content: space-between;
	margin: 8% 2%;
}
.p-appeal__image.support .icons .box {
	width: 33%;
	text-align: center;
	font-size: calc(33 * var(--lp-unit));
}
.p-appeal__image.support .icons .box img {
	width: 83%;
	margin-left: auto;
	margin-right: auto;
}
.p-appeal__image.support p {
	font-size: calc(33 * var(--lp-unit));
	margin-top: 0.6em;
	font-weight: 600;
	line-height: 1.5;
}
.bench_icon {
	margin-top: 7%;
	width: 95%;
}
.p-appeal__image.support .bench_icon + p {
	font-size: calc(24 * var(--lp-unit));
	margin-top: 1.5em;
}
.p-appeal__content.rankAA .p-appeal__image {
	background-image: url("../img/bg_net_no1.jpg");
	background-size: cover;
}
.p-appeal__content.rankAA .p-appeal__image img {
	border-radius: 3%;
}
.p-appeal__image--note {
	color: #fff;
	font-size: calc(26 * var(--lp-unit));
	margin-top: 0.5em;
}
.p-appeal__image--note li {
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 400;
}
.p-appeal__image img.appstore {
	width: 45%;
}
.p-appeal__image img.gooddesign {
	width: 24%;
}
.p-appeal__image img.app {
	margin-top: 4%;
}

/* =========================================================
	Footer
========================================================= */
.l-footer {
	margin-top: 8%;
	color: #fff;
	font-size: calc(20 * var(--lp-unit));
	font-weight: 700;
	line-height: 1.5;
}

.l-footer__notes {
	padding: 8% 3%;
	background-color: #5A5A5A;
	letter-spacing: -1px;
}

.l-footer__company {
	padding: 8% 3%;
	background-color: #838383;
}

.l-footer__section + .l-footer__section {
	margin-top: 8%;
}

.l-footer h2 {
	margin-bottom: 1%;
	font-size: 1em;
	font-weight: 600;
	font-size: calc(34 * var(--lp-unit));
}

.l-footer__section:first-of-type {
	/*margin-top: 1em;*/
}
.l-footer__notes .l-footer__section:first-of-type h2 {
	margin-bottom: 1em;
}
.l-footer ul li {
	font-weight: 500;
	position: relative;
	padding-left: 1em;
	font-size: calc(29 * var(--lp-unit));
}

.l-footer ul li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.l-footer a {
	text-decoration: underline;
}
.l-footer__company p {
	font-size: calc(29 * var(--lp-unit));
	font-weight: 500;
}
.l-footer__copyright {
	padding: 6% 3%;
	background-color: #fff;
	color: #3C3C3C;
	font-size: calc(29 * var(--lp-unit));
	font-weight: 400;
	line-height: 1.5;
}

/*----------------
 ヘッダー
----------------*/

/*====================================
このCSSファイルは scssではなく
eスマ側で追加したCSS
====================================*/


.sp_only{
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc_only{
    display: none !important;
  }
  .sp_only{
    display: block !important;
  }
  header .header_top_inner > a.logo_right { 
    flex-grow: 0;
    margin-left: auto;
    display: block;
    pointer-events: auto;
  }
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 
追従ヘッダ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* リセットCSS */
.header_bottom_menu ul,
.header_bottom_menu li,
.header_bottom_menu li span{
  /* margin: 0;
  padding: 0;
  list-style: none; */
  box-sizing: border-box;
}
.header_bottom_menu li a {
  /* display: inline-block; */
  text-decoration: none;
  box-sizing: border-box;
}


/* ここから */
header{
  background: #FFF;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.10);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
}

header a{
  /* color: #666; */
  color: #333333;
  line-height: 1.75;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  font-weight: bold;
}
header a.font_weight_normal{
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  header .header_bottom ul li .header_text_small{
    font-size: 11px;
  } 
}

@media screen and (min-width: 769px) {
  header .header_bottom_menu ul li .header_text_small{
    font-size: 11px;
  }
}



@media screen and (max-width: 768px) {
  /* SP時 aタグで囲ってる場合に使用。右のロゴを右端によせるために使用 */
  header .logo_right_wrap {
    flex-grow: 1;
  }
}


header .header_top{
  border-bottom: solid 3px #E60000;
}
header .header_top_inner{
  height: 50px;
  display: flex;
  width: 100%;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1010px;
  margin: 0 auto;
}
header.PC_wide_1200px .header_top_inner{
  max-width: 1200px;
}
header .header_top .logo{
  display:block;
  width: 256px;
}
header .header_top .mission_logo{
  display:block;
  width: 163px;
}
header .header_bottom{
}
.header_bottom_menu{
  background-color: #fff;
  padding: 5px 0;
}
.header_bottom_menu ul{
  /* display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center; */
  max-width: 1010px;
  margin: 0 auto;
  list-style: none;
  gap:0px;
}
header.PC_wide_1200px .header_bottom_menu ul,
header.PC_wide_1200px .header_bottom_menu ul{
  max-width: 1200px;
}
.header_bottom_menu ul li{
  width: 100%;
  text-align: center;
  border-left: solid #707070 1px;
  padding: 1px 0 0 3px;
}
.header_bottom_menu ul li a{
  text-decoration: none;
  display: block;
  width: 100%;
}
.header_bottom_menu ul li img{
  width: 83%;
}

.header_bottom_menu ul li:last-of-type{
  /* border-right: solid #707070 1px; */
}

@media screen and (max-width: 1058px) {
  header .header_top_inner{
    padding-left: 24px;
    padding-right: 24px;
    width: auto;
  }
}
/* スマホ */
@media screen and (max-width: 768px) {
  header{
    /* height: 54px; */
    height: initial;
  }
  header .header_top{
    height: 54px;
  }
  header .logo_right{
    flex-grow: 1;
  }
    header .header_top_inner{
    padding-left: 16px;
    padding-right: 16px;
  }
  header .header_top .logo{
    /* width: 75px; */
    width: 86px;
  }
  header .header_top .mission_logo{
    /* width: 117px; */
    width: 166px;
    margin: 0 0 0 auto;
    padding-right: 0px;
    margin-right: 13px;
  }

  header .header_bottom{
    display: none;
    position: relative;
    background-color: #fff;
    justify-content: center;
    align-items: center;
  }
  header .header_bottom nav{
    max-width: 1010px;
    width: 100%;
    display: flex;
    justify-content: cefnter;
    align-items: center;
    margin: 0 auto;
  }
  header .header_bottom nav ul{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 8px 21px 24px;
    width: 100%;
  }
  header .header_bottom nav ul li{
    list-style: none;
    width: 100%;
    position: relative;
    border-bottom: solid 1px #D0D0D0;
  }
  header .header_bottom nav ul li a{
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    font-size: 17px;
    line-height: 1.3;
    padding: 13px 0;
  }
  header .header_bottom nav ul li a::after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../img/download.svg) no-repeat center;
    background-size: contain;
    /* top: 15px; */
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  header .header_bottom nav ul li a:hover {
    cursor: pointer;
    opacity: 1;
    color: #666;
  }
}

@media screen and (min-width: 769px) {
  header  .header_bottom_menu ul{
    display: grid;
    border-right: 1px solid #707070;
    border-left: 1px solid #707070;
    margin: 0 auto;
  }
  header  .header_bottom_menu ul.column-two {
     /* PC時2カラム */
    grid-template-columns: repeat(2, 1fr);
  }
  header .header_bottom_menu ul.column-three {
     /* PC時3カラム */
    grid-template-columns: repeat(3, 1fr);
  }
  header  .header_bottom_menu ul.column-four {
     /* PC時4カラム */
    grid-template-columns: repeat(4, 1fr);
  }
  header  .header_bottom_menu ul.column-five {
     /* PC時5カラム */
    grid-template-columns: repeat(5, 1fr);
  }
  header  .header_bottom_menu ul.column-six {
     /* PC時6カラム */
    grid-template-columns: repeat(6, 1fr);
  }
  header  .header_bottom_menu ul.column-seven{
    /* PC時7カラム */
    grid-template-columns: repeat(7, 1fr);
  }

  header  .header_bottom_menu ul li{
    display: flex;      
    align-items: center;
    border-left: 1px solid #707070;
  }
  header  .header_bottom_menu ul li:first-child{
    border-left: initial;
  }
  header  .header_bottom_menu ul li a{
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 3px;
    transition: 0.3s;
    font-size: 14px;
    line-height: 1.4;
  }
  header  .header_bottom_menu ul li a:hover{
    color: #666;
    opacity: 0.6;
    transition: 0.3s;
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 
ハンバーガーメニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.openbtn{
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 24px;
}
.openbtn span{
  display: inline-block;
  transition: all .3s;
  position: absolute;
  top: 0;
  height: 3px;
  width: 100%;
  background-color: #E60000;
}
.openbtn span:nth-of-type(1) {
  top:0px; 
}
.openbtn span:nth-of-type(2) {
  top:11px;
}
.openbtn span:nth-of-type(3) {
  top:21px;
}
.openbtn.active span:nth-of-type(1) {
  top: 6px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 18px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
@media screen and (max-width: 768px){
  .openbtn{
    width: 20px;
    height: 16px;
  }
  .openbtn span{
    height: 2px;
  }
  .openbtn span:nth-of-type(2) {
    top: 7px;
  }
  .openbtn span:nth-of-type(3) {
    top: 14px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 4px;
    left: 0px;
    transform: translateY(4px) rotate(-45deg);
    width: 100%;
  }
  .openbtn.active span:nth-of-type(3){
    top: 14px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 
ページ別 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/* 
「#forPage_lp-fx-03」
→ ページ「/company/lp/fx/03」用のID
===========================
*/

/* headerとkvの余白調整 */
#forPage_lp-fx-03 main {
  top: initial;/* 無効化 */
  padding-top: 49px;
}
@media screen and (min-width: 769px) {
  #forPage_lp-fx-03 main {
    /* padding-top: 112px; */
    padding-top: 92px;
  }
  /* #forPage_lp-fx-03 .header_bottom_menu ul li{
    height: 82px;
    display: flex;
    align-items: center;
  } */
}
@media screen and (max-width: 768px) {
  #forPage_lp-fx-03 header .header_bottom nav ul li a:hover {
    color: #333333;
  }
  #forPage_lp-fx-03 header .header_bottom nav ul li a {
    color: #333333;
  }
}
@media (min-width: 769px) and (max-width: 916px){
  #forPage_lp-fx-03 main {
    padding-top: 112px;
  }
}



/* 
「#forPage_lp-fx-swap」
→ ページ「/company/lp/fx/swap.html」用のID
===========================
*/
/* headerとkvの余白調整 */
#forPage_lp-fx-swap main {
  top: initial;/* 無効化 */
  padding-top: 49px;
}
@media screen and (min-width: 769px) {
  #forPage_lp-fx-swap main {
    /* padding-top: 112px; */
    padding-top: 92px;
  }
  /* #forPage_lp-fx-swap .header_bottom_menu ul li{
    height: 82px;
    display: flex;
    align-items: center;
  } */
}
@media (min-width: 769px) and (max-width: 916px){
  #forPage_lp-fx-swap main {
    padding-top: 112px;
  }
}


/* 
「#forPage_lp-lp61」
→ページ「/company/lp/lp61.html」用のID
===========================
*/
#forPage_lp-lp61 header ul li a{
   font-family: "メイリオ", Meiryo, -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}
@media screen and (min-width: 769px) {
  /* #forPage_lp-lp61 .header_bottom_menu ul li{
    padding: 10px 3px;
  } */
  #forPage_lp-lp61 main {
    padding-top: 101px;
  }
}

/* 
「#forPage_fx-sys-daiyo
→ページ「/item/fx/sys/daiyo.html」用のID
===========================
*/
#forPage_fx-sys-daiyo header ul li a{
   font-family: "メイリオ", Meiryo, -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif;
}
@media screen and (min-width: 769px) {
  #forPage_fx-sys-daiyo main {
    padding-top: 101px;
  }
}



/* 
「#forPage_lp-fxmanga」
→ページ「/company/lp/fxmanga.html」用のID
===========================
*/
#forPage_lp-fxmanga header ul li a {
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',メイリオ,Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  color: #242424;
}

/* headerとkvの余白調整 */
@media screen and (min-width: 769px) {
  #forPage_lp-fxmanga {
    /* padding-top: 60px; */
    padding-top: 4px;
  }
}
@media screen and (min-width: 1024px) {
  #forPage_lp-fxmanga {
    /* padding-top: 24px; */
  }
}



/* 
「#forPage_lp-fx-07」
→ページ「/company/lp/fx/07.html」用のID
===========================
*/



#forPage_lp-fx-07 h1{
  padding-top: 49px;
}
#forPage_lp-fx-07 header ul li a {
   font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 769px) {
  #forPage_lp-fx-07 h1{
    /* padding-top: 111px; */
    padding-top: 91px;
  }
  #forPage_lp-fx-07 .header_bottom_menu ul li{
    /* リストの高さを揃える */
    /* height: 82px; */
    /* height: 50px; */
    display: flex;
    align-items: center;
  }
}



/* 
「#forPage_fx-sys-userdata」
→ページ「/item/fx/sys/userdata.html」用のID
===========================
*/
#forPage_fx-sys-userdata header ul li a {
   font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #forPage_fx-sys-userdata h1{
    margin: 50px 0 0;
  }
}
@media screen and (min-width: 769px) {
    #forPage_fx-sys-userdata header {
    /* 高さの無効化 */
    height: initial;
  }
  #forPage_fx-sys-userdata h1{
    padding-top: 111px;
  }
  #forPage_fx-sys-userdata .header_bottom_menu ul li{
    /* リストの高さを揃える */
    /* height: 82px; */
    height: 50px;
    display: flex;
    align-items: center;
  }
}


/* 
「#forPage_lp-ufjcardcp-2506」
→ページ「/company/lp/ufjcardcp/2506.html」用のID
===========================
*/
#forPage_lp-ufjcardcp-2506 .header_bottom_menu ul li a,
#forPage_lp-ufjcardcp-2506 .header_bottom ul li a{
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #forPage_lp-ufjcardcp-2506 .header_bottom {
    padding-bottom: 28px;
  }
  #forPage_lp-ufjcardcp-2506 .header_bottom .btn {
    padding: 9px 14px;
    min-width: 249px;
  }
}


/* 
「#forPage_lp-general-newnisa」
→ページ「/company/lp/general/newnisa.html」用のID
===========================
*/

@media screen and (min-width: 769px) {
  #forPage_lp-general-newnisa header {
    padding: 0px;
  }
  #forPage_lp-general-newnisa .header_bottom_menu ul li a{
    line-height: 1.2;
  }
  #forPage_lp-general-newnisa .header_bottom_menu {
    padding: 0px;
  }
}

@media screen and (max-width: 768px) {
  #forPage_lp-general-newnisa header {
    padding: 0px;
  }
}

/* 
「#forPage_lp-tsumitatenisa-01」
→ページ「/company/lp/tsumitatenisa/01」用のID
===========================
*/
  #forPage_lp-tsumitatenisa-01 header a{
    z-index: 101;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  }

@media screen and (max-width: 768px) {

  #forPage_lp-tsumitatenisa-01 header {
    padding: initial;
  }
  #forPage_lp-tsumitatenisa-01 header nav {
    float: initial;
    padding: initial;
  }
  #forPage_lp-tsumitatenisa-01 header nav ul li{
    margin-left: initial;
    border-top: initial;
  }
  #forPage_lp-tsumitatenisa-01 header .header_bottom nav ul li a {
    background: initial;
  }
}

@media screen and (min-width: 769px) {
  #forPage_lp-tsumitatenisa-01 header {
    padding: initial;
  }
  #forPage_lp-tsumitatenisa-01 header ul {
    padding: 0;
  }
  #forPage_lp-tsumitatenisa-01 header .header_bottom_menu ul li a  {
    padding: 0 3px;
  }
}

/* 
「#forPage_lp-nisa-01」
→ページ「/company/lp/nisa/01」用のID
===========================
*/

#forPage_lp-nisa-01 header a{
  font-family: "M PLUS 1", sans-serif;
  font-weight: 500;
}


/* 
「#forPage_lp-nisa-02」
→ページ「/company/lp/nisa/02」用のID
===========================
*/

#forPage_lp-nisa-02 {

}


/* 
「#forPage_lp-nisa-03」
→ページ「/company/lp/nisa/03」用のID
===========================
*/

#forPage_lp-nisa-03 header ul li a{
  word-break: keep-all;
}

@media screen and (max-width: 768px) {
  #forPage_lp-nisa-03 header .header_bottom nav ul li a{
    padding: 13px 10px 13px 0;
  }
}
@media screen and (min-width: 769px) {
  #forPage_lp-nisa-03 header ul li a{
    padding: 5px 3px;
  }
}

/* 
「#forPage_lp-nisa-04」
→ページ「/company/lp/nisa/04」用のID
===========================
*/
#forPage_lp-nisa-04 header ul li{

}
@media screen and (max-width: 768px) {
  #forPage_lp-nisa-04 header .header_bottom .header_text_small{
    font-size: 13px;
  }
  #forPage_lp-nisa-04 header .header_bottom nav ul li a{
    padding: 13px 19px 13px 0px;
  }
}

@media screen and (min-width: 769px) {
  #forPage_lp-nisa-04 header ul li .header_text_small{
    font-size: 11px;
  } 
}


/* 
「#forPage_lp-stock-01」
→ページ「/company/lp/stock/01」用のID
===========================
*/
#forPage_lp-stock-01 header {
  padding: 0px;
}
#forPage_lp-stock-01 header a{
  font-family: "メイリオ", Meiryo, 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
}
@media screen and (min-width: 769px) {

}

/* 
「#forPage_lp-stock-04」
→ページ「/company/lp/stock/04」用のID
===========================
*/
#forPage_lp-stock-04 {

}


/* 
「#forPage_lp-stock-05」
→ページ「/company/lp/stock/05」用のID
===========================
*/
#forPage_lp-stock-05 header a{
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", sans-serif; 
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #forPage_lp-stock-05 header .header_bottom nav ul li a{
    padding: 13px 10px 13px 0;
  }
}
@media (min-width: 769px) and (max-width: 1074px){
  #forPage_lp-stock-05 header .header_bottom_menu ul li a{
    font-size: 12px;
  }
}
@media (min-width: 1075px) and (max-width: 1175px){
  #forPage_lp-stock-05 header .header_bottom_menu ul li a{
    font-size: 13px;
  }
}

/* 
「#forPage_lp-stock-06」
→ページ「/company/lp/stock/06」用のID
===========================
*/
#forPage_lp-stock-06 header a {

}
@media screen and (max-width: 768px) {
  #forPage_lp-stock-06 header .header_bottom nav ul li a{
    padding: 13px 10px 13px 0;
  }
}
@media screen and (min-width: 769px) {
  #forPage_lp-stock-06 header .header_bottom_menu ul li a{
    padding: 0px 3px;
    letter-spacing: 0em;
  } 
}
@media (min-width: 769px) and (max-width: 1070px){
  #forPage_lp-stock-06 header .header_bottom_menu ul li a{
    font-size: 13px;
  }
}

/* 
「#forPage_lp-stock-07」
→ページ「/company/lp/stock/07」用のID
===========================
*/
#forPage_lp-stock-07 header {
  padding: 0px;
}
#forPage_lp-stock-07 header a{
  font-family: "メイリオ", Meiryo, 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
}

/* 
「#forPage_lp-app-indexad」
→ページ「/company/lp/app/index_ad.html」用のID
===========================
*/

#forPage_lp-app-indexad header{
  z-index: 100;
}

/* 
「#forPage_lp-point-01」
→ページ「/company/lp/point/01」用のID
===========================
*/

#forPage_lp-point-01 header{
  z-index: 110;
}
#forPage_lp-point-01 header a{
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 769px) {
  #forPage_lp-point-01 header .header_bottom_menu ul{
    padding-left: 0;
  }
  #forPage_lp-point-01 header .header_bottom_menu ul li a{
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #forPage_lp-point-01  header .header_bottom nav ul {
    margin: 0;
  }
}

/* 
「#forPage_lp-fx-04」
→ページ「/company/lp/fx/04」用のID
===========================
*/
#forPage_lp-fx-04 #page-container header .header_bottom_menu ul li a,
#forPage_lp-fx-04 #page-container header .header_bottom ul li a {
  text-decoration: none;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #forPage_lp-fx-04 #page-container header .logo{
    padding-left: initial;
  }
  /* #forPage_lp-fx-04 #page-container header .logo_right_wrap{
    flex-grow: 1;
  } */
  #forPage_lp-fx-04 #page-container header .header_top .mission_logo{
    width: 117px;
    width: 166px;
    margin: 0 0 0 auto;
    padding-right: 0px;
    margin-right: 13px;
  }
}
@media screen and (min-width: 769px) {
  #forPage_lp-fx-04 #page-container header .header_top .logo {
    display: block;
    width: 256px;
  }
  #forPage_lp-fx-04 #page-container header .header_top .mission_logo {
    display: block;
    width: 163px;
  }
}

/* 
「#forPage_lp-fx-05」
→ページ「/company/lp/fx/05」用のID
===========================
*/
#forPage_lp-fx-05 header a{
  font-family: 'Noto Sans JP', sans-serif;
}
#forPage_lp-fx-05 header{
  z-index: 100;
}
@media screen and (max-width: 768px) {
  /* #forPage_lp-fx-05 header .logo_right_wrap{
    flex-grow: 1;
  } */

   #forPage_lp-fx-05 header li{
    padding-left: 0px;
    padding-right: 0px;
   }
    #forPage_lp-fx-05 header li a{
      border-bottom: initial;
      padding-right: 20px;
    }
  #forPage_lp-fx-05 header .header_top .logo {
    width: 86px !important;
  }
}
@media screen and (min-width: 769px) {
  #forPage_lp-fx-05 header .header_top {
    position: relative;/* なぜかrelativeを入れないとメニューが途中で消えてしまう */
  }
  #forPage_lp-fx-05 .header_bottom_menu ul li a {
    padding: 3px 3px;
  }
}

/* 
「#forPage_lp-fx-06」
→ページ「/company/lp/fx/06」用のID
===========================

↓※※下記のcssでheaderに関する記述とぶつかっているため、表示調整に他ページより若干手間がかかる可能性あり
/company/lp/fx/lp06/css/style.css
*/

#forPage_lp-fx-06 header {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  height: initial;
}
#forPage_lp-fx-06 header a{
  font-family: 'Noto Sans JP', sans-serif;
}
#forPage_lp-fx-06 header > div {
  padding: initial;
  margin: initial;
  display: block;
  width: initial;
  height: initial;
  position: initial;
}
@media screen and (max-width: 768px) {
  #forPage_lp-fx-06 header > div {
    height: 100%;
  }
  /* #forPage_lp-fx-06 header .logo_right_wrap{
    flex-grow: 1;
  } */
  #forPage_lp-fx-06 header .header_bottom nav ul li a{
    padding: 13px 10px 13px 0;
  }
}


/* 
「#forPage_lp-fx-08」
→ページ「/company/lp/fx/08」用のID
===========================
*/

/* @media screen and (max-width: 768px) {
  #forPage_lp-fx-08 header .logo_right_wrap{
    flex-grow: 1;
  }
} */

/* 
「#forPage_lp-fx-09」
→ページ「/company/lp/fx/09」用のID
===========================
*/
#forPage_lp-fx-09 header a{
  font-family: 'Noto Sans JP', sans-serif;
}
#forPage_lp-fx-09 header {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

/* @media screen and (max-width: 768px) {
  #forPage_lp-fx-09 header .logo_right_wrap{
    flex-grow: 1;
  }
} */

/* 
「#forPage_lp-fx-10」
→ページ「/company/lp/fx/09」用のID
===========================
*/

@media (max-width: 768px) {
  #forPage_lp-fx-10 #page-container .mission_logo {
    width: 166px;
  }
}

/* 
「#forPage_lp-monthlymitsubishi-mufgconnect02」
→ページ「/company/lp/monthly-mitsubishi/mufg-connect_02.html」用のID
===========================
*/
@media (min-width: 768px) {
#forPage_lp-monthlymitsubishi-mufgconnect02 .header_top .header-btn {
    position: relative;
    left: -20px;
    background-color: var( --color-MUFGred,#E60000 );
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 3px 12px;
    display: inline-block;
    border-radius: 8px;
    border: 2px solid var( --color-MUFGred,#E60000 );
    margin-left: auto;
  }
}

.blkToTop {
    width: 3.6rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
}
.blkToTop.is-show, .fixed-sp-cta.is-show {
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 768px) {
    .blkToTop {
        width: 2.8rem;
        bottom: 15%;
        right: 1rem;
    }
}
.fixed-sp-cta {
	transition: opacity 0.3s;
	opacity: 0;
	visibility: hidden;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	z-index: 1;
	background-color: #fff;
	padding: 15px 0;
}
.fixed-sp-cta img {
	max-height: 80px;;
}
@media screen and (min-width:768px) {
	.fixed-sp-cta {
		display: none!important;
	}
}