@charset "UTF-8";

/* ==================================================

CONFIG

*/
:root {
	--text-black: #000;
	--bg-gray: #FAFAFA;
	--color-primary: #005070;
	--color-red: #DC0000;
}

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img,
picture,
svg {
	display: block;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

/* ==================================================

WEB FONTS

*/
@font-face {
	font-family: "DIN";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/DIN-Bold.woff) format("woff");
}

/* ==================================================

HTML

*/
html {
	background-color: var(--color-primary);
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1140px) {
	html {
		/* 幅1140px 1rem = 10px */
		font-size: calc(1000 / 1140 * 1vw);
	}
}
@media screen and (max-width: 767px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: calc(1000 / 375 * 1vw);
	}
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	font-optical-sizing: auto;
	line-height: 1.7;
	color: var(--text-black);
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
		letter-spacing: 0.02em;
	}
}

main {
	overflow: hidden;
	padding: 10rem 0 0 0;
	background-color: #FFF;
}
@media screen and (max-width: 767px) {
	main {
		padding: 0;
	}
}

/* ==================================================

	[ UTILITY ] VISIBLE

*/
@media screen and (min-width: 768px) {
	.u-visible-sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.u-visible-pc {
		display: none !important;
	}
}

/* ==================================================

	[ COMPONENT ] NUMBER

*/
.c-number {
	position: relative;
	bottom: -0.16em;
	font-family: "DIN", sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}
.c-number sub {
	position: relative;
	bottom: 0.14em;
	display: inline-block;
	margin: 0 -0.04em;
	vertical-align: baseline;
	font-size: 66%;
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-btn-entry {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 0 0 0.06em 0.5em;
	width: 45.6rem;
	height: 8.2rem;
	background-color: #FFF532;
	border-radius: 2.3rem;
	font-weight: 700;
	font-size: 2.9rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
}
.c-btn-entry::after {
	content: '';
	display: block;
	margin: 0.1em 0 0 2rem;
	width: 2.6rem;
	height: 2.6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-entry.svg);
	background-size: contain;
}
@media(hover: hover) {
	.c-btn-entry {
		transition: opacity 0.3s ease;
	}
	.c-btn-entry:hover {
		opacity: 0.7;
	}
	.c-btn-entry::after {
		transition: transform 0.3s ease;
	}
	.c-btn-entry:hover::after {
		transform: translateX(0.5rem);
	}
}
@media screen and (max-width: 767px) {
	.c-btn-entry {
		position: relative;
		padding: 0 0 0.06em 0;
		width: auto;
		height: 6rem;
		border-radius: 1rem;
		font-size: 2rem;
	}
	.c-btn-entry::after {
		position: absolute;
		top: 50%;
		right: 1.5rem;
		margin: -1rem 0 0 0;
		width: 2rem;
		height: 2rem;
	}
}

/* ==================================================

	[ COMPONENT ] HEADING

*/
.c-heading {
	position: relative;
}
.c-heading img {
	position: absolute;
	bottom: 0;
}
.c-heading h2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 0.08em;
	height: 6.6rem;
	background-color: var(--color-primary);
	text-align: center;
	font-weight: 900;
	font-size: 4rem;
	line-height: 1.1;
	color: #FFF;
}
.c-heading h2 span {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 100%;
	left: 0;
	margin-bottom: -1.5rem;
	width: 100%;
}
.c-heading h2 span img {
	width: 40rem;
}
.c-heading h2 em {
	display: block;
}
.c-heading .person {
	position: absolute;
	bottom: 0;
	width: 27rem;
}
@media screen and (max-width: 767px) {
	.c-heading h2 {
		padding: 1rem 0 1rem 0;
		height: auto;
		font-size: 2rem;
	}
	.c-heading h2 span {
		margin-bottom: -1.2rem;
	}
	.c-heading h2 span img {
		width: 22rem;
	}
	.c-heading .person {
		width: 10rem;
	}
}

/* ==================================================

	[ LAYOUT ] CONTAINER

*/
.l-container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0 4rem;
	width: 100%;
	max-width: 108rem;
}
@media screen and (max-width: 767px) {
	.l-container {
		padding: 0 2rem;
		max-width: initial;
	}
}

/* ==================================================

	[ LAYOUT ] HEADER

*/
.l-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
}
.l-header .inner {
	position: relative;
	z-index: 1001;
	padding: 0 0 0 5rem;
	height: 10rem;
	background-color: #FFF;
	font-weight: 700;
}
.l-header .inner nav {
	display: flex;
	align-items: center;
	height: 100%;
}
.l-header .inner nav ul {
	display: flex;
	align-items: center;
	gap: 3rem;
	flex: 1;
	text-align: center;
	line-height: 1.3;
}
.l-header .inner nav ul br {
	display: none;
}
.l-header .contact {
	display: flex;
	align-items: center;
	margin-left: 5rem;
	padding: 0 1rem;
	height: 100%;
	background-color: var(--color-primary);
	font-size: 1.4rem;
	line-height: 1.1;
	color: #FFF;
	letter-spacing: 0;
}
.l-header .contact dd {
	display: flex;
	align-items: center;
	margin: 0.5rem 0 -0.3rem 0;
	font-size: 3.2rem;
}
.l-header .contact dd::before {
	content: '';
	display: block;
	margin: 0.12em 0.1em 0 0;
	width: 2rem;
	height: 3rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-phone-white.svg);
	background-size: contain;
}
.l-header .toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
}
.l-header .toggle button {
	width: 6rem;
	height: 6rem;
}
.l-header .toggle button i {
	position: absolute;
	top: 2.9rem;
	left: 1.4rem;
	display: block;
	width: 3.2rem;
	height: 0.2rem;
	background-color: var(--color-primary);
	transition: margin 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.l-header .toggle button i:nth-child(1) {
	margin-top: -0.6rem;
}
.l-header .toggle button i:nth-child(3) {
	margin-top: 0.6rem;
}
.l-header .toggle button[aria-expanded="true"] i:nth-child(1) {
	margin-top: 0;
	transform: rotate(45deg);
}
.l-header .toggle button[aria-expanded="true"] i:nth-child(2) {
	opacity: 0;
}
.l-header .toggle button[aria-expanded="true"] i:nth-child(3) {
	margin-top: 0;
	transform: rotate(-45deg);
}
@media (any-hover: hover) {
	.l-header .inner nav a {
		transition: opacity 0.3s ease;
	}
	.l-header .inner nav a:hover {
		opacity: 0.5;
	}
}
@media screen and (max-width: 767px) {
	.l-header .inner {
		padding: 0 0 0 2rem;
		height: 6rem;
	}
	.l-header .inner .logo {
		width: 12rem;
	}
	.l-header .inner nav {
		display: none;
	}
	.l-header nav ul br {
		display: none;
	}
	.l-header .toggle {
		display: block;
	}
}


/* ==================================================

	[ LAYOUT ] MEGAMENU

*/
.l-megamenu {
	overflow: hidden;
	display: none;
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
}
.l-megamenu[aria-hidden="false"] {
	height: 100%;
}
.l-megamenu::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.l-megamenu.--show::before {
	opacity: 1;
}
.l-megamenu .scroll {
	overflow-y: auto;
	max-height: 100vh;
	transform: translateY(-100%);
	transition: transform 0.4s ease;
}
.l-megamenu.--show .scroll {
	transform: translateY(0);
}
.l-megamenu nav {
	position: relative;
	padding: 10rem 0 3rem 0;
	background-color: #FFF;
	text-align: center;
}
.l-megamenu nav ul {
	padding-bottom: 2rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
}
.l-megamenu nav li {
	margin-bottom: 3rem;
}
.l-megamenu .contact {
	display: flex;
	justify-content: center;
	margin: 0 2rem;
	padding: 1.6rem 0 2rem 0;
	height: auto;
	border-radius: 1rem;
	font-size: 1.4rem;
}
.l-megamenu .contact dd {
	margin: 0 0 -0.3rem 0;
	font-size: 3.2rem;
}
.l-megamenu .contact dd::before {
	margin: 0.12em 0.1em 0 0;
	width: 2rem;
	height: 3rem;
}
@media screen and (max-width: 767px) {
	.l-megamenu {
		display: block;
	}
}

/* ==================================================

	[ LAYOUT ] FOOTER

*/
.l-footer {
	padding: 3rem 0;
	background-color: var(--color-primary);
	color: #FFF;
}
.l-footer .l-container {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}
.l-footer nav ul {
	display: flex;
	gap: 4.5rem;
}
.l-footer small {
	display: block;
	font-weight: 400;
	font-size: 1.2rem;
}
@media (any-hover: hover) {
	.l-footer a {
		transition: opacity 0.3s ease;
	}
	.l-footer a:hover {
		opacity: 0.5;
	}
}
@media screen and (max-width: 767px) {
	.l-footer {
		text-align: center;
	}
	.l-footer .l-container {
		display: block;
	}
	.l-footer nav ul {
		justify-content: center;
		gap: 3rem;
		margin-bottom: 2rem;
	}
}

/* ==================================================

	[ PROJECT ] MAIN

*/
.p-main .fv {
	position: relative;
	display: flex;
	align-items: center;
	height: 80rem;
}
.p-main .fv .kv {
	position: absolute;
	inset: 0;
}
.p-main .fv .kv picture,
.p-main .fv .kv img {
	height: 100%;
	object-fit: cover;
}
.p-main .fv .l-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 122rem;
}
.p-main .fv .block {
	display: flex;
}
.p-main .fv h1 {
	font-weight: 900;
	font-size: 4.6rem;
	line-height: 1.2;
	color: var(--color-primary);
}
.p-main .fv h2 {
	position: relative;
	margin-top: 9rem;
	font-weight: 800;
	font-size: 3rem;
	line-height: 1.2;
	color: var(--color-primary);
}
.p-main .fv h2 span {
	display: block;
}
.p-main .fv h2 .price {
	display: flex;
	align-items: flex-end;
	margin-top: -7rem;
	font-weight: 900;
	font-size: 10rem;
}
.p-main .fv h2 .price .getu {
	margin-right: 0.5rem;
	text-align: center;
	font-size: 5.2rem;
	line-height: 1.1;
}
.p-main .fv h2 .price em {
	display: flex;
}
.p-main .fv h2 .price .c-number {
	font-size: 20rem;
}
.p-main .fv h2 .price .yen {
	position: relative;
}
.p-main .fv h2 .price .yen .tax {
	position: absolute;
	top: -0.8em;
	left: -0.26em;
	font-size: 2.8rem;
}
.p-main .fv h2 .cost {
	position: absolute;
	top: -5rem;
	right: -5rem;
	width: 16rem;
}
.p-main .fv h3 {
	margin-top: 3rem;
	font-weight: 700;
	font-size: 2.2rem;
	text-shadow: 0 0 0.6rem #FFF, 0 0 0.6rem #FFF, 0 0 0.6rem #FFF, 0 0 0.6rem #FFF, 0 0 0.6rem #FFF, 0 0 0.6rem #FFF, 0 0 0.4rem #FFF, 0 0 0.4rem #FFF;
}
.p-main .cashback {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3rem 0;
	background-color: #FFF532;
	line-height: 1.1;
	letter-spacing: 0;
}
.p-main .cashback .label {
	margin-right: 1.5rem;
}
.p-main .cashback .label em {
	display: block;
	padding: 0.3em 0.8em 0.36em 0.8em;
	border-radius: 1rem;
	background-color: var(--color-red);
	text-align: center;
	font-weight: 800;
	font-size: 2.7rem;
	color: #FFF;
}
.p-main .cashback h2 {
	display: flex;
	align-items: flex-end;
	margin-top: -4rem;
}
.p-main .cashback h2 > span {
	display: block;
	margin-right: 1rem;
	font-weight: 900;
	font-size: 4.5rem;
}
.p-main .cashback h2 > span span {
	font-size: 80%;
}
.p-main .cashback h2 > em {
	display: flex;
	align-items: flex-end;
	font-weight: 800;
	font-size: 5.2rem;
	color: var(--color-red);
}
.p-main .cashback h2 > em span {
	font-size: 10.2rem;
}
@media screen and (max-width: 767px) {
	.p-main .fv {
		align-items: flex-end;
		height: 53.8rem;
	}
	.p-main .fv .l-container {
		display: block;
		padding-right: 0;
	}
	.p-main .fv .block {
		display: block;
	}
	.p-main .fv h1 {
		font-size: 2.2rem;
	}
	.p-main .fv h2 {
		margin-top: 10rem;
		font-size: 1.6rem;
	}
	.p-main .fv h2 .price {
		margin-top: -2.5rem;
		font-size: 4.4rem;
	}
	.p-main .fv h2 .price .getu {
		font-size: 2.6rem;
	}
	.p-main .fv h2 .price .c-number {
		font-size: 9.2rem;
	}
	.p-main .fv h2 .price .yen .tax {
		left: -0.4em;
		font-size: 1.4rem;
	}
	.p-main .fv h2 .cost {
		top: -4rem;
		right: 1rem;
		width: 8.4rem;
	}
	.p-main .fv h3 {
		padding-bottom: 2rem;
		font-size: 1.2rem;
	}
	.p-main .cashback {
		padding: 1.8rem 0;
		letter-spacing: 0;
	}
	.p-main .cashback .label {
		margin-right: 1rem;
	}
	.p-main .cashback .label em {
		padding: 0.5em 0.5em 0.54em 0.5em;
		border-radius: 0.6rem;
		font-size: 1.1rem;
	}
	.p-main .cashback h2 {
		margin-top: -1.7rem;
	}
	.p-main .cashback h2 > span {
		margin-right: 0.5rem;
		font-size: 1.7rem;
	}
	.p-main .cashback h2 > em {
		font-size: 2.6rem;
	}
	.p-main .cashback h2 > em span {
		font-size: 5rem;
	}
}

/* ==================================================

	[ PROJECT ] CTA

*/
.p-cta {
	padding: 6rem 0;
	background-color: var(--color-primary);
}
.p-cta .list {
	display: flex;
	gap: 4rem;
}
.p-cta .list .block {
	flex: 1;
	height: 14.8rem;
	font-weight: 800;
	line-height: 1.2;
}
.p-cta .entry,
.p-cta .contact {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: #FFF;
	border: 0.3rem solid #80A7B7;
	border-radius: 1.6rem;
}
.p-cta .entry {
	font-size: 3.8rem;
	color: var(--color-primary);
}
.p-cta .entry::before {
	content: '';
	display: block;
	margin-right: 2rem;
	width: 7rem;
	height: 6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-entry.svg);
	background-size: contain;
}
.p-cta .contact {
	flex-direction: column;
	font-size: 2rem;
}
.p-cta .contact .tel {
	display: flex;
	align-items: center;
	margin: -1.5rem 0 1rem 0;
	font-size: 6.3rem;
	color: var(--color-primary);
	letter-spacing: 0;
	text-decoration: none;
}
.p-cta .contact .tel::before {
	content: '';
	display: block;
	margin-top: 0.1em;
	width: 4rem;
	height: 6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-phone.svg);
	background-size: contain;
}
@media (any-hover: hover) {
	.p-cta .entry {
		transition: opacity 0.3s ease;
	}
	.p-cta .entry:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.p-cta {
		padding: 3.5rem 0;
	}
	.p-cta .list {
		display: block;
		padding: 0 3.4rem;
	}
	.p-cta .list .block {
		height: auto;
	}
	.p-cta .entry,
	.p-cta .contact {
		height: auto;
		border-width: 0.16rem;
		border-radius: 0.8rem;
	}
	.p-cta .entry {
		margin-bottom: 3rem;
		padding: 1rem 0;
		font-size: 2.2rem;
	}
	.p-cta .entry::before {
		margin-right: 0.6rem;
		width: 4rem;
		height: 3rem;
	}
	.p-cta .contact {
		background-color: transparent;
		border: 0;
		font-size: 1.3rem;
		color: #FFF;
	}
	.p-cta .contact .tel {
		justify-content: center;
		margin: 0.6rem 0 1.4rem 0;
		padding: 0.2rem 0 0.5rem 0;
		width: 100%;
		background-color: #FFF;
		border: 0.16rem solid #80A7B7;
		border-radius: 0.8rem;
		font-size: 3.2rem;
	}
	.p-cta .contact .tel::before {
		margin-top: 0.1em;
		width: 2rem;
		height: 3rem;
	}
}

/* ==================================================

	[ PROJECT ] POINT

*/
.p-point {
	padding: 20rem 0 14rem 0;
}
.p-point .c-heading .person {
	right: 1rem;
}
.p-point .list {
	display: flex;
	margin-top: 7rem;
	gap: 3.5rem;
}
.p-point .list li {
	flex: 1;
}
.p-point .list .card {
	position: relative;
	padding-top: 3.85rem;
	height: 22rem;
	background-image: url(../img/point-frame.svg);
	background-size: 100% 100%;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}
.p-point .list .card .label {
	position: absolute;
	top: -1.4rem;
	left: 0;
	display: flex;
	justify-content: center;
	width: 100%;
}
.p-point .list .card .label em {
	display: block;
	padding: 0.2em 0.8em 0.26em 0.8em;
	background-color: var(--color-primary);
	font-size: 1.68rem;
	line-height: 1.2;
	color: #FFF;
}
.p-point .list .card h3 {
	margin-bottom: 1.8rem;
	font-size: 2rem;
	line-height: 1.3;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.p-point {
		padding: 6rem 0 6rem 0;
	}
	.p-point .c-heading .person {
		right: -1rem;
	}
	.p-point .list {
		flex-direction: column;
		margin-top: 4rem;
	}
	.p-point .list .card {
		height: 21rem;
	}
}

/* ==================================================

	[ PROJECT ] REASON

*/
.p-reason {
	position: relative;
	padding: 17rem 0 17rem 0;
}
.p-reason::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 0;
	width: 100%;
	background-color: var(--bg-gray);
	transform: skewY(-4deg);
}
.p-reason .c-heading .person {
	left: 3rem;
}
.p-reason .frame {
	position: relative;
	margin-top: 10rem;
	padding: 7rem 0 8rem 0;
	background-color: #FFF;
	border: 0.3rem solid var(--color-primary);
	border-radius: 1rem;
	box-shadow: 0.5rem 0.5rem 0.5rem rgba(0,0,0,0.15);
}
.p-reason .frame h2 {
	position: absolute;
	top: -5rem;
	left: -4.4rem;
	width: 20rem;
}
.p-reason .frame .subhead {
	display: flex;
	justify-content: center;
	text-align: center;
	font-weight: 800;
	font-size: 3.2rem;
	line-height: 1;
	color: var(--color-primary);
}
.p-reason .frame .subhead em {
	position: relative;
	display: block;
	padding: 0 3rem 5rem 3rem;
	min-width: 27rem;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	background-image: url(../img/reason-subhead-line.svg);
	background-size: 80rem 2.4rem;
}
.p-reason .frame .subhead em::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 2.2rem;
	width: 0.2rem;
	background-color: var(--color-primary);
}
.p-reason .frame .lead {
	text-align: center;
}
.p-reason .frame .char {
	position: absolute;
	width: 23rem;
}
@media screen and (max-width: 767px) {
	.p-reason {
		padding: 7rem 0 5rem 0;
	}
	.p-reason::before {
		transform: skewY(-6deg);
	}
	.p-reason .c-heading .person {
		left: 0;
	}
	.p-reason .frame {
		margin-top: 4rem;
		padding: 3rem 0 3rem 0;
		border-width: 0.2rem;
	}
	.p-reason .frame h2 {
		top: -3rem;
		left: -2rem;
		width: 10rem;
	}
	.p-reason .frame .subhead {
		padding: 0 2rem;
		font-size: 2rem;
		line-height: 1.4;
	}
	.p-reason .frame .subhead em {
		padding: 0 2rem 4rem 2rem;
		min-width: initial;
		width: 100%;
	}
	.p-reason .frame .subhead em::before {
		content: none;
	}
	.p-reason .frame .lead {
		text-align: center;
	}
	.p-reason .frame .lead br {
		display: none;
	}
	.p-reason .frame .lead p {
		display: inline;
	}
	.p-reason .frame .foot {
		padding: 0 2rem;
	}
	.p-reason .frame .char {
		width: 8.4rem;
	}
}

.p-reason-internet .detail {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3rem 0;
	gap: 1rem;
}
.p-reason-internet .detail h4 em {
	display: block;
	padding: 0.5em 0.4em;
	border-radius: 1.6rem;
	background-color: #FFF532;
	text-align: center;
	font-weight: 900;
	font-size: 3.2rem;
	line-height: 1.3;
}
.p-reason-internet .detail .speed img {
	width: 35rem;
}
.p-reason-internet .char {
	bottom: 3rem;
	left: 2rem;
}
@media screen and (max-width: 767px) {
	.p-reason-internet .detail {
		display: block;
		margin: 2rem 0;
		padding: 0 2rem;
	}
	.p-reason-internet .detail h4 em {
		margin: 0 auto 1.5rem auto;
		padding: 0.5em 0;
		width: 78%;
		border-radius: 1rem;
		font-size: 2rem;
	}
	.p-reason-internet .detail .speed {
		display: flex;
		justify-content: center;
	}
	.p-reason-internet .detail .speed img {
		width: 78%;
	}
	.p-reason-internet .lead {
		padding: 0 2rem;
	}
	.p-reason-internet .char {
		bottom: auto;
		top: 16rem;
		left: 0;
	}
}

.p-reason-price .block {
	position: relative;
	padding: 7rem 0 0 0;
	margin: 0 auto 7rem auto;
	width: 86rem;
	background-position: 0 0;
	background-repeat: repeat-x;
	background-image: url(../img/border-dashed.svg);
	background-size: 1.2rem 0.2rem;
}
.p-reason-price .block:last-child {
	margin-bottom: 0;
}
.p-reason-price .block01 {
	padding: 0;
	background-image: none;
}
.p-reason-price .block01 .figure {
	margin: 0 auto;
	padding-top: 4rem;
	width: 45rem;
}
.p-reason-price .block01 .char {
	right: -4rem;
	bottom: 0;
}
.p-reason-price .block02 ul {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 4rem;
}
.p-reason-price .block02 .card {
	width: 36.6rem;
	border: 0.3rem solid var(--color-primary);
	border-radius: 1rem;
}
.p-reason-price .block02 .card h4 {
	position: relative;
	padding: 0.4em 12rem 0.6em 0;
	background-color: var(--color-primary);
	text-align: center;
	font-weight: 900;
	font-size: 2.4rem;
	line-height: 1.2;
	color: #FFF;
}
.p-reason-price .block02 .card h4 img {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 12rem;
}
.p-reason-price .block02 .card .price {
	display: flex;
	justify-content: center;
	align-items: self-end;
	margin-top: -0.5rem;
	padding-bottom: 3rem;
	font-weight: 800;
	line-height: 1.1;
}
.p-reason-price .block02 .card .price span {
	display: block;
}
.p-reason-price .block02 .card .price .getu {
	margin-right: 0.2em;
	font-size: 2.1rem;
}
.p-reason-price .block02 .card .price .c-number {
	font-size: 8.2rem;
	color: var(--color-red);
}
.p-reason-price .block02 .card .price .yen {
	position: relative;
	font-size: 4.1rem;
}
.p-reason-price .block02 .card .price .yen .tax {
	display: block;
	overflow: hidden;
	position: absolute;
	top: -1rem;
	left: 0.2rem;
	width: 3.8rem;
	height: 1.4rem;
	background-position: center;
	background-image: url(../img/tax.svg);
	background-size: contain;
	font-size: 10px;
	text-indent: -999rem;
}
.p-reason-price .block02 .char {
	top: -16rem;
	left: -6rem;
}
@media screen and (max-width: 767px) {
	.p-reason-price .block {
		padding: 3rem 0 0 0;
		margin: 0 0 3rem 0;
		width: auto;
	}
	.p-reason-price .block01 {
		padding: 0;
	}
	.p-reason-price .block01 .figure {
		padding-top: 1rem;
		width: 80%;
	}
	.p-reason-price .block01 .char {
		right: 0;
		bottom: auto;
		top: -2rem;
	}
	.p-reason-price .block02 ul {
		flex-direction: column;
		margin-top: 3rem;
		padding: 0 2rem;
	}
	.p-reason-price .block02 .card {
		width: 100%;
		border-width: 0.2rem;
		border-radius: 1rem;
	}
	.p-reason-price .block02 .card h4 {
		padding: 0.4em 0 0.6em 1.5rem;
		text-align: left;
		font-size: 1.8rem;
	}
	.p-reason-price .block02 .card h4 img {
		right: 1rem;
		width: 8rem;
	}
	.p-reason-price .block02 .card .price {
		padding-bottom: 2rem;
	}
	.p-reason-price .block02 .card .price .getu {
		font-size: 1.8rem;
	}
	.p-reason-price .block02 .card .price .c-number {
		font-size: 6rem;
	}
	.p-reason-price .block02 .card .price .yen {
		font-size: 3rem;
	}
	.p-reason-price .block02 .card .price .yen .tax {
		top: -0.8rem;
		left: 0.1rem;
		width: 2.8rem;
		height: 1rem;
	}
	.p-reason-price .block02 .char {
		top: 2rem;
		left: 0.5rem;
	}
}

.p-reason-discount h4 {
	margin: 4rem auto 6rem auto;
	width: 54.8rem;
}
@media screen and (max-width: 767px) {
	.p-reason-discount h4 {
		margin: 2rem auto 3rem auto;
		width: 88%;
	}
}

.p-reason-lineup .image {
	margin: 2rem auto 3rem auto;
	width: 35rem;
}
.p-reason-lineup .lead {
	margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
	.p-reason-lineup .image {
		margin: 1rem auto 2rem auto;
		width: 60%;
	}
	.p-reason-lineup .lead {
		margin-bottom: 3rem;
		padding: 0 2rem;
	}
}

/* ==================================================

	[ PROJECT ] CAMPAIGN

*/
.p-campaign {
	position: relative;
	padding: 17rem 0 17rem 0;
}
.p-campaign::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 0;
	width: 100%;
	background-color: #E5E5E5;
	transform: skewY(4deg);
}
.p-campaign .c-heading .person {
	right: -5rem;
}
.p-campaign .lead {
	margin: 5rem 0;
	text-align: center;
}
.p-campaign .frame {
	display: flex;
	align-items: center;
	padding: 2rem;
	background-color: #FFF;
	border-radius: 3rem;
	box-shadow: 0.7rem 0.7rem 0.7rem rgba(0,0,0,0.15);
}
.p-campaign .frame .banner {
	flex-basis: 48.1rem;
}
.p-campaign .frame .detail {
	flex: 1;
	text-align: center;
}
.p-campaign .frame .detail h3 {
	font-weight: 800;
	font-size: 2rem;
	color: var(--color-primary);
}
.p-campaign .frame .detail p {
	margin: 1.5rem 0 3rem 0;
}
@media screen and (min-width: 768px) {
	.p-campaign .frame .detail .c-btn-entry {
		width: 36.8rem;
		height: 8rem;
		border-radius: 1.6rem;
		font-size: 2rem;
	}
	.p-campaign .frame .detail .c-btn-entry::after {
		margin-left: 0.5rem;
		width: 1.8rem;
		height: 1.8rem;
	}
}
@media screen and (max-width: 767px) {
	.p-campaign {
		padding: 7rem 0 5rem 0;
	}
	.p-campaign::before {
		transform: skewY(6deg);
	}
	.p-campaign .c-heading .person {
		right: -2rem;
	}
	.p-campaign .lead {
		margin: 3rem 0;
	}
	.p-campaign .frame {
		display: block;
		padding: 1rem;
		border-radius: 1.5rem;
	}
	.p-campaign .frame .banner {
		flex-basis: 48.1rem;
	}
	.p-campaign .frame .detail {
		margin-top: 2rem;
	}
	.p-campaign .frame .detail h3 {
		font-size: 2rem;
		line-height: 1.3;
	}
	.p-campaign .frame .detail .c-btn-entry {
		margin: 1rem;
	}
}

/* ==================================================

	[ PROJECT ] FLOW

*/
.p-flow {
	position: relative;
	padding: 24rem 0 17rem 0;
}
.p-flow::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 0;
	width: 100%;
	background-color: #FFF;
	transform: skewY(-4deg);
}
.p-flow .c-heading .person {
	left: 2rem;
}
.p-flow .lead {
	margin: 5rem 0 6rem 0;
	text-align: center;
}
.p-flow .step {
	display: flex;
	gap: 3rem;
	margin-bottom: 7rem;
}
.p-flow .step li {
	position: relative;
	flex: 1;
}
.p-flow .step .card {
	position: relative;
	padding: 2rem 0.5rem;
	height: 100%;
	border: 1px solid #000;
	text-align: center;
}
.p-flow .step .card .number {
	position: absolute;
	top: -2.6rem;
	left: -3rem;
	width: 8rem;
}
.p-flow .step .card h3 {
	min-height: 2.5em;
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.3;
	color: var(--color-primary);
}
.p-flow .step .card .image {
	margin: 0 auto;
	width: 20rem;
}
.p-flow .step .card p em {
	color: var(--color-red);
}
@media screen and (max-width: 767px) {
	.p-flow {
		padding: 8rem 0 5rem 0;
	}
	.p-flow::before {
		transform: skewY(-6deg);
	}
	.p-flow .c-heading .person {
		left: -1.5rem;
	}
	.p-flow .lead {
		margin: 3rem 0 3rem 0;
	}
	.p-flow .step {
		flex-direction: column;
		gap: 2rem;
		margin-bottom: 3rem;
	}
	.p-flow .step .card {
		padding: 2rem 0 3rem 0;
		height: auto;
	}
	.p-flow .step .card .number {
		top: 1.5rem;
		left: 1.5rem;
		width: 6rem;
	}
	.p-flow .step .card h3 {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.p-flow .step .card .image {
		margin-bottom: 1rem;
		width: 18rem;
	}
}

/* ==================================================

	[ PROJECT ] FAQ

*/
.p-faq {
	position: relative;
	padding: 17rem 0 17rem 0;
}
.p-faq::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 0;
	width: 100%;
	background-color: var(--bg-gray);
	transform: skewY(-4deg);
}
.p-faq .c-heading .person {
	right: 2rem;
	width: 32rem;
}
.p-faq .lead {
	margin: 5rem 0;
	text-align: center;
}
.p-faq .list li {
	background-color: #FFF;
}
.p-faq .list li:not(:last-child) {
	margin-bottom: 4rem;
}
.p-faq .list button {
	position: relative;
	display: block;
	padding: 1.2rem 6.5rem;
	width: 100%;
	border: 1px solid var(--color-primary);
	text-align: left;
	font-size: 2rem;
	color: var(--color-primary);
}
.p-faq .list button::before,
.p-faq .list button::after {
	content: '';
	display: block;
	position: absolute;
}
.p-faq .list button::before {
	left: 1.6rem;
	top: 1.2rem;
	width: 3.4rem;
	height: 3.4rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/faq-q.svg);
	background-size: contain;
}
.p-faq .list button::after {
	right: 2rem;
	top: 50%;
	margin-top: -1.3rem;
	width: 2.6rem;
	height: 2.6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-ac.svg);
	background-size: contain;
	transition: transform 0.3s ease;
}
.p-faq .list button[aria-expanded="false"]::after {
	transform: rotate(-180deg);
}
.p-faq .list .a {
	position: relative;
	overflow: hidden;
	height: 0;
}
.p-faq .list .a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-primary);
}
.p-faq .list .a .inner {
	position: relative;
	padding: 1.6rem 1rem 1.6rem 6.5rem;
	border: 1px solid var(--color-primary);
	border-top: 0;
}
.p-faq .list .a .inner::before {
	content: '';
	display: block;
	position: absolute;
	left: 1.6rem;
	top: 1.2rem;
	width: 3.4rem;
	height: 3.4rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/faq-a.svg);
	background-size: contain;
}

@media screen and (max-width: 767px) {
	.p-faq {
		padding: 7rem 0 5rem 0;
	}
	.p-faq::before {
		transform: skewY(-6deg);
	}
	.p-faq .c-heading .person {
		right: -1.5rem;
		width: 12rem;
	}
	.p-faq .lead {
		margin: 3rem 0;
	}
	.p-faq .list li:not(:last-child) {
		margin-bottom: 1rem;
	}
	.p-faq .list button {
		padding: 1.2rem 4rem 1.3rem 5rem;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.p-faq .list button::before {
		left: 1rem;
		top: 0.9rem;
		width: 3rem;
		height: 3rem;
	}
	.p-faq .list button::after {
		right: 1rem;
		margin-top: -1rem;
		width: 2rem;
		height: 2rem;
	}
	.p-faq .list .a .inner {
		padding: 1.4rem 1rem 1.4rem 5rem;
	}
	.p-faq .list .a .inner::before {
		left: 1rem;
		top: 1.2rem;
		width: 3rem;
		height: 3rem;
	}
}

/* ==================================================

	[ PROJECT ] VOICE

*/
.p-voice {
	position: relative;
	padding: 17rem 0 14rem 0;
}
.p-voice::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: -20vw;
	left: 0;
	width: 100%;
	background-color: #E5E5E5;
	transform: skewY(4deg);
}
.p-voice .c-heading .person {
	left: 2rem;
}
.p-voice .list {
	display: flex;
	gap: 4rem;
	margin-top: 15rem;
}
.p-voice .list li {
	flex: 1;
}
.p-voice .list .card {
	position: relative;
	padding: 8.5rem 1.5rem 3rem 1.5rem;
	height: 100%;
	border: 0.5rem solid var(--color-primary);
	border-radius: 2rem;
	background-color: #FFF;
	line-height: 1.5;
}
.p-voice .list .card .icon {
	position: absolute;
	top: -7.5rem;
	left: 50%;
	width: 13.9rem;
	transform: translateX(-50%);
}
.p-voice .list .card h3 {
	text-align: center;
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1.3;
	color: var(--color-primary);
}
.p-voice .list .card .text {
	margin: 2rem 0;
	letter-spacing: 0;
}
.p-voice .list .card .info {
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.p-voice {
		padding: 7rem 0 5rem 0;
	}
	.p-voice::before {
		transform: skewY(6deg);
	}
	.p-voice .c-heading .person {
		left: -2rem;
	}
	.p-voice .list {
		flex-direction: column;
		gap: 2rem;
		margin-top: 3rem;
	}
	.p-voice .list .card {
		padding: 2rem;
		height: auto;
		border-width: 0.2rem;
		border-radius: 1rem;
	}
	.p-voice .list .card .head {
		display: flex;
		align-items: center;
	}
	.p-voice .list .card .icon {
		position: static;
		width: 9rem;
		flex-shrink: 0;
		transform: translateX(0);
	}
	.p-voice .list .card h3 {
		padding-left: 2rem;
		text-align: left;
		font-size: 1.9rem;
	}
}

/* ==================================================

	[ PROJECT ] FORM

*/
.p-form {
	position: relative;
	padding: 14rem 0;
	background-color: #FFF;
}
.p-form .lead {
	margin: 5rem 0 -1rem 0;
	font-size: 2rem;
}
.p-form h3 {
	margin: 10rem 0 3rem 0;
	font-weight: 700;
	font-size: 2.8rem;
	color: var(--color-primary);
}
.p-form .CMS-FORM-GROUP {
	position: relative;
	padding: 3rem 0 3rem 40rem;
	border-bottom: 1px solid #808080;
}
.p-form h3 + .CMS-FORM-GROUP {
	border-top: 1px solid #808080;
}
.p-form .CMS-FORM-INPUT-LABEL,
.p-form .CMS-FORM-EMAIL-LABEL,
.p-form .CMS-FORM-RADIO-LABEL {
	position: absolute;
	top: 3.6rem;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	font-size: 2rem;
	line-height: 1.5;
}
.p-form .required {
	display: block;
	margin: 0.2rem 1.5rem 0 0;
	padding: 0 0.5rem 0.2rem 0.5rem;
	border-radius: 1rem;
	background-color: var(--color-red);
	font-size: 1.6rem;
	color: #FFF;
}
.p-form .note {
	margin-top: 1rem;
	color: var(--color-red);
}
.p-form .CMS-FORM-INPUT,
.p-form .CMS-FORM-EMAIL {
	display: block;
	padding: 0.5em;
	width: 100%;
	border: 1px solid #B2B2B2;
	border-radius: 0.5rem;
	background-color: #F2F2F2;
	font-size: 1.8rem;
	line-height: normal;
}
.p-form .CMS-FORM-RADIO {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.2;
}
.p-form .CMS-FORM-RADIO > div {
	position: relative;
}
.p-form .CMS-FORM-RADIO > div:not(:last-child) {
	margin-bottom: 1.5rem;
}
.p-form .CMS-FORM-RADIO input {
	position: absolute;
	inset: 0;
	cursor: pointer;
}
.p-form .CMS-FORM-RADIO label {
	display: flex;
	align-items: center;
	padding: 1.4rem 1rem 1.6rem 1rem;
	border: 0.3rem solid #B2B2B2;
	border-radius: 0.5rem;
}
.p-form .CMS-FORM-RADIO label::before {
	content: '';
	display: block;
	box-sizing: border-box;
	margin: 0.1rem 2rem 0 0;
	width: 2.4rem;
	height: 2.4rem;
	border: 0.2rem solid #B2B2B2;
	border-radius: 50%;
}
.p-form .CMS-FORM-RADIO input:checked + label {
	border-color: var(--color-primary);
}
.p-form .CMS-FORM-RADIO input:checked + label::before {
	border: 0.7rem solid var(--color-primary);
}
.p-form .CMS-FORM-GROUP:last-child {
	padding: 10rem 0 0 0;
	border: 0;
}
.p-form .CMS-FORM-GROUP:last-child input {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 0 0 0.06em 0.5em;
	width: 45.6rem;
	height: 8.2rem;
	background-color: #FFF532;
	background-position: 82% 50%;
	background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-entry.svg);
	background-size: 2.6rem 2.6rem;
	border-radius: 2.3rem;
	font-weight: 700;
	font-size: 2.9rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
	cursor: pointer;
}
@media(hover: hover) {
	.p-form .CMS-FORM-GROUP:last-child input {
		transition: opacity 0.3s ease, background-position 0.3s ease;
	}
	.p-form .CMS-FORM-GROUP:last-child input:hover {
		opacity: 0.7;
		background-position: 84% 50%;
	}
}
@media screen and (max-width: 767px) {
	.p-form {
		padding: 5rem 0;
	}
	.p-form .lead {
		margin: 2rem 0 -1rem 0;
		font-size: 1.6rem;
	}
	.p-form h3 {
		margin: 4rem 0 1rem 0;
		font-size: 2rem;
	}
	.p-form .CMS-FORM-GROUP {
		padding: 2rem 0 2rem 0;
	}
	.p-form .CMS-FORM-INPUT-LABEL,
	.p-form .CMS-FORM-EMAIL-LABEL,
	.p-form .CMS-FORM-RADIO-LABEL {
		position: static;
		flex-direction: row;
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}
	.p-form .required {
		margin: 0.2rem 0 0 1rem;
		padding: 0 0.5rem 0.1rem 0.5rem;
		border-radius: 0.5rem;
		font-size: 1.2rem;
	}
	.p-form .CMS-FORM-INPUT,
	.p-form .CMS-FORM-EMAIL {
		font-size: 1.6rem;
	}
	.p-form .CMS-FORM-RADIO {
		font-size: 1.6rem;
	}
	.p-form .CMS-FORM-RADIO label {
		padding: 1.4rem 1rem 1.6rem 1rem;
		border-width: 0.2rem;
	}
	.p-form .CMS-FORM-RADIO label::before {
		margin: 0.1rem 1rem 0 0;
		width: 2rem;
		height: 2rem;
	}
	.p-form .CMS-FORM-RADIO input:checked + label::before {
		border-width: 0.6rem;
	}
	.p-form .CMS-FORM-GROUP:last-child {
		padding: 4rem 0 0 0;
		border: 0;
	}
	.p-form .CMS-FORM-GROUP:last-child input {
		padding: 0 0 0.06em 0;
		width: 100%;
		height: 6rem;
		background-position: 94% 50%;
		background-size: 2rem 2rem;
		border-radius: 1rem;
		font-size: 2rem;
	}
}

/* ==================================================

	[ PROJECT ] FORM THANX

*/
.p-form-thanx {
	padding: 12rem 0;
	text-align: center;
}
.p-form-thanx .l-container {
	max-width: initial;
}
.p-form-thanx h1 {
	display: flex;
	justify-content: center;
	font-weight: 800;
	font-size: 4rem;
	line-height: 1.1;
	color: #FFF;
}
.p-form-thanx h1 em {
	display: block;
	padding: 0.2em 0.5em 0.3em 0.5em;
	background-color: var(--color-primary);
}
.p-form-thanx h2 {
	margin-top: 2rem;
	text-indent: 0.4em;
	font-weight: 700;
	font-size: 4.6rem;
	line-height: 1.1;
	color: var(--color-primary);
}
.p-form-thanx .lead {
	margin: 3rem 0 4rem 0;
	font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
	.p-form-thanx {
		padding: 10rem 0 5rem 0;
	}
	.p-form-thanx h1 {
		font-size: 2rem;
	}
	.p-form-thanx h2 {
		font-size: 2.6rem;
	}
	.p-form-thanx .lead {
		margin: 3rem 0 4rem 0;
		font-size: 1.6rem;
		letter-spacing: 0;
	}
}