fieldset,
legend,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	outline: none;
	padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
	border: 1px solid #ccc;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
	outline: none;
	padding: 4px;
}

textarea {
	height: 100px;
	overflow: auto;
	width: 100%;
}

select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
	background-position: right 8px center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding-right: 30px;
}

.select {
	background: #fff;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.select select {
	background: none;
	border: 1px solid #ccc;
	cursor: pointer;
	padding-right: 24px;
	text-overflow: "";
	width: 100%;
}

.select::before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666;
	content: "";
	height: 0;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 8px;
	top: 13px;
	width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
	color: #555;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin-left: 8px;
	padding: 10px 20px;
	position: relative;
	text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #ccc;
	content: "";
	height: 16px;
	left: -8px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

/* fieldset */

fieldset {
	border: 1px solid #ccc;
	padding: 8px 16px;
}

legend {
	padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #efefef;
	border: 1px solid #999;
	border-radius: 0;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	margin: 0;
	padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

select::-ms-expand {
	display: none;
}

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
	display: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
	-moz-appearance: none;
	-webkit-appearance: textfield;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
	border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
	color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
	border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
	background: #ccc;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
	color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
	border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
	background: #3498db;
	content: "";
	height: 8px;
	left: -4px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
	border-radius: 50%;
}

/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
	background: #3498db;
	border-color: #3498db;
	color: #fff;
}

/* focus */

input:focus,
textarea:focus {
	border-color: #3498db;
}

input[type="submit"]:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
	outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
	background: #eee;
	border-color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
	color: #ccc;
	cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
	border-color: #ccc;
	cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* リキッドレイアウト対応 */

html {
	font-size: 4.26667vw;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #000000DE;
	font-family: "";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	position: relative;
	z-index: -9999;
}

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video,
iframe,
object {
	border: none;
	height: auto;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

form {
	margin: 0;
	padding: 0;
}

label {
	display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

button,
select {
	text-transform: none;
}

select {
	cursor: pointer;
}

textarea {
	-ms-overflow-style: scrollbar;
	overflow: auto;
	resize: vertical;
}

dialog {
	background-color: inherit;
	border: solid;
	color: inherit;
	display: block;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

dialog:not([is-open]) {
	display: none;
}

summary {
	cursor: pointer;
	display: list-item;
}

/* Remove all animations and transitions for people that prefer not to see them */

.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	font-size: 1rem !important;
	letter-spacing: 0.05em;
	line-height: 1.5 !important;
	text-align: left !important;
}

.l-caution {
	background-color: #f3f3f3;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	padding-top: 4.6875rem;
}

.l-contact {
	background-color: #f3f3f3;
	padding-bottom: 5.625rem;
	padding-top: 5rem;
}

.l-flow {
	margin-top: 3.4375rem;
}

.l-header {
	background: #264B67;
	color: #fff;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	width: 1100px;
}

.l-header__logo {
	flex-basis: auto;
	left: 5vw;
	position: static;
	top: 50%;
	transform: translateY(0);
	width: auto;
}

.l-header__logo img {
	height: 70px;
}

.l-header__navi {
	margin-top: 1.25rem;
}

.l-header__navi--list {
	display: flex;
}

.l-headerInner {
	background-color: #264B67;
}

.l-info {
	background-color: #264B67;
	padding-bottom: 5.3125rem;
	padding-top: 5.3125rem;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1050px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-listDetail {
	padding-bottom: 5.3125rem;
	padding-top: 4.375rem;
}

.l-price {
	padding-bottom: 5rem;
	padding-top: 0.625rem;
}

.l-purchase-list {
	background-color: #264B67;
	position: relative;
}

.l-reason {
	margin-bottom: 6.25rem;
	margin-top: 6.25rem;
}

.l-topRanking {
	background-color: #F3F3F3;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.l-topSaleBlock {
	padding-bottom: 3.5625rem;
	padding-top: 5rem;
}

.c-button {
	background-color: #66CC33;
	border-radius: 40rem;
	color: #fff;
	display: block;
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1;
	min-height: 80px;
	position: relative;
	width: 480px;
}

.c-button span {
	left: 50%;
	letter-spacing: 0.05em;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	word-break: keep-all;
}

.c-button input[type="submit"] {
	background-color: transparent;
	border: none;
	color: #fff;
	font-weight: bold;
	left: 50%;
	letter-spacing: 0.05em;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	word-break: keep-all;
}

.c-link {
	color: #fff;
	display: block;
	font-size: 0.9375rem;
	transition: all 0.3s linear;
}

.c-linkbox {
	border: solid 2px #28ABE2;
	border-radius: 40px;
	color: #28ABE2;
	display: inline-block;
	margin-top: 3.75rem;
	min-height: 70px;
	padding: 0.5rem;
	position: relative;
	width: 230px;
}

.c-linkbox span {
	font-weight: bold;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.c-listBox {
	border: solid 1px #eee;
	border-radius: 12px;
	box-shadow: 10px 10px 15px -10px;
	min-height: 21.875rem;
}

.c-listBox__title {
	border-radius: 5px;
	padding-bottom: 0.9375rem;
	padding-top: 0.9375rem;
}

.c-listBox__title-inner {
	font-size: 1.25rem;
	padding-left: 2.75rem;
	padding-right: 2.75rem;
}

.c-listBoxInner {
	display: flex;
	justify-content: space-between;
	padding: 2.1875rem 1.25rem 1.875rem;
}

.c-listBoxLeft {
	max-width: 38.75rem;
	padding-right: 1.25rem;
}

.c-listBox__table {
	border: solid 1px #ccc;
	width: 100%;
}

.c-listBox__table th {
	background-color: #f0f0f0;
	border-bottom: solid 1px #ccc !important;
	font-weight: normal;
	padding-bottom: 13px;
	padding-left: 14px;
	padding-top: 13px;
	width: 14.375rem;
}

.c-listBox__table th,
td {
	border: none;
	vertical-align: baseline;
}

.c-listBox__table td {
	border-bottom: solid 1px #ccc;
}

.c-listBox__table tr:last-child td {
	border-bottom: none;
}

.c-listBox__title {
	background-color: #264B67;
}

.c-listBox__title-inner {
	color: #fff;
	font-size: 1.25rem;
}

.c-listBox__text {
	margin-top: 1.25rem;
}

.c-listBoxRight {
	max-width: 18.125rem;
	width: 100%;
}

.c-listBox__price {
	text-align: center;
}

.c-listBox__price span {
	font-size: 1.5625rem;
	font-weight: bold;
}

.c-listBoxButttonWrap {
	margin-top: 1.25rem;
}

.c-listBoxButtton__detail {
	background-color: #66CC33;
	border-radius: 30px;
	display: block;
	height: 60px;
	position: relative;
	width: 100%;
}

.c-listBoxButtton__detail span {
	color: #fff;
	font-weight: bold;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.c-listBoxButtton__buy {
	border: solid 1px #66CC33;
	border-radius: 30px;
	display: block;
	height: 60px;
	margin-top: 0.625rem;
	position: relative;
	width: 100%;
}

.c-listBoxButtton__buy span {
	color: #66CC33;
	font-weight: bold;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.c-lowerContentHeading {
	padding-top: 4.6875rem;
}

.c-lowerContentHeading__title {
	color: #fff !important;
}

.c-lowerContentHeading__title::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #2F6B84;
	content: attr(data-text) "purchase";
	top: -5.625rem;
}

.c-mailForm {
	margin-left: auto;
	margin-right: auto;
}

.c-mailForm table {
	border: none;
	border-collapse: separate;
	border-spacing: 0 30px;
}

.c-mailForm th {
	border: none;
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin-top: 0;
	padding-top: 30px;
	position: relative;
	text-align: left;
	vertical-align: top;
	width: 232px;
}

.c-mailForm__required {
	border: solid 1px #339be4;
	color: #339be4;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: bold;
	margin-left: 0;
	padding: 4px 7px 5px;
	position: absolute;
	right: 35px;
	top: 28px;
	vertical-align: text-bottom;
}

.c-mailForm td {
	font-size: 1rem;
	letter-spacing: 0.05em;
	padding-top: 0;
	padding-top: 15px;
	width: 100%;
}

.c-mailForm input[type="text"],
.c-mailForm input[type="email"],
.c-mailForm textarea {
	background-color: #eee;
	border: solid 1px #bbb;
	border-radius: 6px;
	font-size: 1rem;
	letter-spacing: 0.05em;
	padding: 15px 16px 18px;
	width: 100%;
}

.c-main-title {
	font-size: 2.5rem;
}

.c-main-title--yellow {
	color: #28ABE2;
}

.c-main-title--white-bg {
	background-color: #fff;
	color: #264B67;
}

.c-test {
	color: red;
	font-size: 3.125rem;
}

.c-title {
	color: #333;
	font-size: 1.875rem;
	text-align: center;
}

.c-title span {
	color: #28ABE2;
}

.c-topContentBlock__inner {
	background-position: right 65px top 155px;
	background-size: 140px auto;
	height: 20.625rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.c-topContentBlock__image {
	position: absolute;
	right: 0;
	top: 8.125rem;
	width: 10.625rem;
}

.c-topContent__image {
	position: absolute;
	right: 0;
	top: 8.125rem;
	width: 18.75rem;
}

.c-topContentBlock__title {
	color: #fff;
	font-size: 1.875rem;
	line-height: 1.6;
	padding-left: 10px;
	position: absolute;
	text-align: left;
	top: calc(50% + -15px);
}

.c-topContentBlock__title--center {
	color: #fff;
	font-size: 1.875rem;
	left: 50%;
	line-height: 1.6;
	padding-left: 10px;
	position: absolute;
	text-align: left;
	top: calc(50% + -15px);
	transform: translateX(-50%);
}

.p-buy__form {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 30px 0 0.5%;
	margin-top: 45px;
	padding-bottom: 70px;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 40px;
	position: relative;
}

.p-caution__main::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #fbfbfb;
	content: attr(data-text) "caution";
	top: -5.625rem;
}

.p-caution__list {
	background-color: #fff;
	border: solid 1px #ccc;
	margin-top: 3.625rem;
	padding: 1.5625rem 1.25rem;
}

.p-caution__text {
	font-size: 1rem;
	line-height: 1.88;
	margin-top: 0.75rem;
	text-align: left;
}

.p-check-list {
	margin-top: 2.8125rem;
	width: 45.625rem;
}

.p-check-list__item {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	color: #fff;
	font-weight: bold;
	padding: 1.25rem 0.625rem 1.25rem 4.5rem;
	position: relative;
}

.p-check-list__item:nth-child(2) {
	margin-top: 0.5rem;
}

.p-check-list__item::after {
	background: url("../../../make-connections/assets/img/checkbox.png") no-repeat center/22px auto;
	content: "";
	display: block;
	height: 37px;
	left: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 37px;
}

.p-contact__main::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #fbfbfb;
	content: attr(data-text) "contact";
	top: -5.9375rem;
}

.p-contact__cont {
	font-size: 1rem;
	margin-top: 3.4375rem;
	text-align: center;
}

.p-contact__button {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.0625rem;
}

.p-contact__cautionWrap {
	background-color: #fff;
	margin-right: 1.875rem;
	margin-top: 2.5rem;
	padding-bottom: 2rem;
	padding-left: 1.875rem;
	padding-top: 2rem;
	position: relative;
	text-align: center;
}

.p-contact__cautionText {
	font-size: 1rem;
	line-height: 1.6;
}

.p-contact__cautionText::before {
	border-color: transparent transparent #fff transparent;
	border-style: solid;
	border-width: 0 23.5px 40px 23.5px;
	content: "";
	height: 0;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: -20px;
	width: 0;
}

.p-flow__main::after {
	color: #f3f3f3;
	content: attr(data-text) "flow";
	top: -82px;
}

.p-flow__boxWrap {
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
	padding-bottom: 4.375rem;
	padding-top: 4.375rem;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.p-flow__box {
	align-items: flex-start;
	display: flex;
}

.p-flow__box:nth-child(n+2) {
	margin-top: 6.25rem;
}

.p-flow__boxTitle {
	color: #28ABE2;
	font-size: 1.5rem;
	padding-left: 6.875rem;
	width: 265px;
}

.p-flow__boxText {
	font-size: 1rem;
	margin-top: 0;
	padding-left: 0;
	width: 460px;
}

.p-footer {
	background-color: #444;
	padding-bottom: 5.375rem;
	padding-top: 4.375rem;
}

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

.p-footer__logo {
	color: #fff;
	margin-bottom: 4rem;
	text-align: center;
}

.p-footer__navi--list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.p-footer__subMenuWrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.125rem;
	max-width: 1050px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.p-footer__subMenu--item a {
	color: #fff;
	display: block;
	font-size: 0.875rem;
	letter-spacing: 0.39px;
}

.p-footer__subMenu--item:last-child a {
	border-bottom: 1px solid #666;
}

.p-footer__subMenu--list {
	border-bottom: none;
	display: flex;
	justify-content: space-between;
}

.p-footer__copyright p {
	color: #fff;
}

.p-footer__subMenu--item:first-of-type {
	margin-left: 0;
}

.p-footer__subMenu--item {
	margin-left: 2.3125rem;
}

.p-header__logo {
	width: 18.75rem;
}

.p-info__inner {
	position: relative;
}

.p-info__title {
	color: #fff;
	font-size: 1.875rem;
	text-align: center;
}

.p-info__title span {
	color: #28ABE2;
}

.p-info__text {
	color: #fff;
	font-size: 1.125rem;
	text-align: center;
}

.p-info__image {
	margin: 0;
	position: absolute;
	right: 0rem;
	top: 7.5rem;
	width: 15.625rem;
}

.p-list {
	display: flex;
	margin-top: 5.625rem;
}

.p-list__item {
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: calc(100%/3);
}

.p-list__image {
	text-align: center;
}

.p-list__title {
	font-size: 1.125rem;
	margin-top: 1.5625rem;
	text-align: center;
}

.p-list__title span {
	color: #264B67;
	font-size: 1.375rem;
}

.p-list__text {
	font-size: 1rem;
	margin-top: 1.5625rem;
	text-align: center;
}

.p-listDetail__title {
	font-size: 1.375rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}

.p-listDetail__title span {
	color: #264B67;
}

.p-listDetail__text {
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-top: 1.375rem;
	text-align: center;
}

.p-listDetail__table {
	margin-top: 4.0625rem;
}

.p-listDetail__table th {
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding-bottom: 0.6875rem;
	padding-left: 0.875rem;
	padding-right: 0.875rem;
	padding-top: 0.6875rem;
	text-align: left;
	vertical-align: top;
	width: 230px;
}

.p-listDetail__table td {
	border: 1px solid #ccc;
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding-bottom: 0.6875rem;
	padding-left: 0.875rem;
	padding-right: 0.875rem;
	padding-top: 0.6875rem;
}

.p-listDetail__sample {
	margin-top: 3.4375rem;
}

.p-mailForm {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 30px 0 0.5%;
	margin-top: 45px;
	padding-bottom: 70px;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 40px;
	position: relative;
}

.p-main {
	background-color: #264B67;
}

.p-main__inner {
	display: flex;
	justify-content: space-between;
	padding-bottom: 9.875rem;
	padding-left: 5rem;
	padding-top: 5.8125rem;
	position: relative;
}

.p-main__title {
	color: #fff;
	font-size: 1.875rem;
	letter-spacing: 0.11em;
	line-height: 1.4;
}

.p-main__text {
	color: #fff;
	margin-top: 1.5625rem;
}

.p-main__image {
	margin: 1.875rem auto;
	width: 18.75rem;
}

.p-main__button {
	background-color: #66CC33;
	border-radius: 40px;
	color: #fff;
	display: inline-block;
	font-weight: bold;
	margin-top: 2.125rem;
	padding: 1.125rem 6.875rem;
}

.p-price__main::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #f3f3f3;
	content: attr(data-text) "price";
	top: -6.625rem;
}

.p-price__text {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	margin-top: 3.125rem;
	text-align: center;
}

.p-price__text span {
	color: #28ABE2;
	font-size: 2.375rem;
	font-weight: bold;
}

.p-price__list {
	margin-top: 1.5625rem;
}

.p-ranking__wrap {
	margin-top: 3.75rem;
}

.p-ranking__item {
	height: 5.8125rem;
}

.p-ranking__item a {
	background-color: #fff;
	box-shadow: 10px 10px 15px -10px;
	display: flex;
	justify-content: space-between;
	padding: 1.875rem 3.4375rem 1.875rem 10.3125rem;
}

.p-ranking__title {
	position: relative;
}

.p-ranking__title::before {
	background-repeat: no-repeat;
	background-size: 67px auto;
	content: "";
	display: block;
	height: 100px;
	left: -110px;
	position: absolute;
	top: -20px;
	width: 100px;
}

.p-ranking__item:first-of-type .p-ranking__title::before {
	background-image: url(../../../make-connections/assets/img/no1.png);
}

.p-ranking__item:nth-child(2) {
	margin-top: 3.75rem;
}

.p-ranking__item:nth-child(2) .p-ranking__title::before {
	background-image: url(../../../make-connections/assets/img/no2.png);
}

.p-ranking__item:last-child {
	margin-top: 3.75rem;
}

.p-ranking__item:last-child .p-ranking__title::before {
	background-image: url(../../../make-connections/assets/img/no3.png);
}

.p-ranking__amount {
	font-size: 1rem;
}

.p-ranking__amount span {
	font-size: 1.5625rem;
	font-weight: bold;
}

.p-reason__head::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #f3f3f3;
	content: attr(data-text) "reasons";
	left: auto !important;
	right: -0.75rem !important;
	top: -7.1875rem;
}

.p-reason__image {
	bottom: -2.5rem;
	left: 0.5rem;
	position: absolute;
	width: 14.375rem;
}

.p-sample {
	text-align: center;
}

.p-sample__title {
	align-items: center;
	display: flex;
	font-size: 1.375rem;
	font-weight: normal;
	justify-content: center;
	letter-spacing: 0.5em;
	line-height: 1.5;
}

.p-sample__title::before {
	background-color: #333;
	content: "";
	display: block;
	height: 35px;
	margin-right: 1.875rem;
	transform: rotate(-27deg);
	width: 1px;
}

.p-sample__title::after {
	background-color: #333;
	content: "";
	display: block;
	height: 35px;
	height: 45px;
	margin-left: 30px;
	transform: rotate(27deg);
	width: 1px;
}

.p-sample__button {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5625rem;
}

.p-sample__text {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	margin-top: 1.5625rem;
}

.p-sample__button--test .emd_dl_red_darker {
	align-items: center;
	background: #66CC33 !important;
	border: none;
	border-radius: 40rem;
	box-shadow: none;
	display: flex;
	font-family: sans-serif;
	font-size: 18px !important;
	justify-content: center;
	line-height: 1;
	margin: auto;
	min-height: 80px;
	text-shadow: none;
	width: 480px;
}

.submit {
	height: 100%;
	padding: 0 !important;
	width: 100%;
}

.p-test {
	color: red;
	font-size: 3.125rem;
}

.p-title {
	box-sizing: border-box;
	position: relative;
	text-align: center;
}

.p-title__main {
	color: #333;
	font-size: 1.875rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1;
	position: relative;
	z-index: 9;
}

.p-title__main::after {
	display: block;
	font-size: 6.25rem;
	font-weight: bold;
	left: 0;
	line-height: 1;
	margin: auto;
	position: absolute;
	right: 0;
	text-transform: uppercase;
	transform: translateX(0);
	white-space: nowrap;
	z-index: -9;
}

.p-topRanking__head::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #fbfbfb;
	content: attr(data-text) "ranking";
	left: auto;
	right: -0.75rem;
	top: -7.1875rem;
}

.p-topSaleBlock__inner {
	padding-bottom: 0.0625rem;
}

.p-topSaleBlock__head {
	position: relative;
}

.p-topSaleBlock__head::after {
	-webkit-clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	clip-path: polygon(0 15px, 100% 15px, 100% 100%, 0% 100%);
	color: #f3f3f3;
	content: attr(data-text) "on sales";
	left: auto;
	right: -0.75rem;
	top: -5.9375rem;
}

.p-topSaleBlock__listBoxWrap {
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
	max-width: 62.5rem;
	padding-left: 0;
	padding-right: 0;
}

.p-topSaleBlock__listBox:nth-child(n+2) {
	margin-top: 3.125rem;
}

.p-topSaleBlock__button {
	text-align: center;
}

.p-topSaleBlock__image {
	bottom: -2.5rem;
	left: 0.5rem;
	position: absolute;
	width: 10rem;
}

.u-on-sp {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	-webkit-animation-duration: 0.01ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media (min-width: 1000px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1440px) {

.u-hidden-pc {
	display: none;
}

}

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

html {
	font-size: 1.6vw;
}

.c-test {
	color: green;
	font-size: 1.875rem;
}

}

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

html {
	font-size: 16px;
}

.l-caution {
	margin-bottom: 0;
	padding-bottom: 2.1875rem;
	padding-top: 3.4375rem;
}

.l-contact {
	padding-bottom: 2.1875rem;
	padding-top: 3.4375rem;
}

.l-info {
	padding-bottom: 21.875rem;
}

.l-listDetail {
	padding-bottom: 2.0625rem;
	padding-top: 3.4375rem;
}

.l-main {
	height: 667px;
}

.c-button {
	min-height: 62px;
	width: 96%;
}

.c-linkbox {
	min-height: 4.375rem;
	width: 14.375rem;
}

.c-listBoxInner {
	display: block;
}

.c-listBoxLeft {
	max-width: 100%;
	padding-right: 0;
}

.c-listBox__table th {
	border-bottom: none;
}

.c-listBox__table th,
td {
	border: none;
	display: block;
	font-size: 0.875rem;
	padding-left: 0.875rem;
	width: 100%;
}

.c-listBox__text {
	font-size: 0.875rem;
}

.c-listBoxRight {
	max-width: 100%;
}

.c-mailForm__required {
	margin-left: 15px;
	position: static;
	text-align: left;
}

.c-mailForm th,
.c-mailForm td {
	display: block;
	width: 100%;
}

.c-topContentBlock__inner {
	height: 15.3125rem;
}

.c-topContentBlock__image {
	right: 2.5rem;
	top: 9.375rem;
	width: 5rem;
}

.c-topContent__image {
	right: 2.5rem;
	top: 9.375rem;
	width: 11.25rem;
}

.c-topContentBlock__title {
	font-size: 1.375rem;
	left: -4px;
}

.c-topContentBlock__title--center {
	font-size: 1.375rem;
	top: 40%;
}

.p-buy__form {
	padding-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
}

.p-caution__main::after {
	top: -4.375rem;
}

.p-caution__text {
	text-align: center;
}

.p-check-list {
	width: 100%;
}

.p-contact__main::after {
	top: -4.375rem;
}

.p-contact__cont {
	font-size: 0.875rem;
	margin-top: 2.1875rem;
}

.p-flow__boxWrap {
	padding-top: 0.5rem;
	width: 100%;
}

.p-flow__box {
	-moz-text-align-last: left;
	display: block;
	text-align-last: left;
}

.p-flow__box:nth-child(n+2) {
	margin-top: 2.5rem;
}

.p-flow__boxTitle {
	font-size: 1.125rem;
	padding-left: 5.9375rem;
}

.p-flow__boxText {
	padding-left: 5.9375rem;
}

.p-flow__boxText p {
	font-size: 0.875rem;
}

.p-footer__naviWrap {
	margin-top: 2.0625rem;
}

.p-footer__navi--item {
	margin-top: 1rem;
}

.p-footer__navi--list {
	display: block;
	text-align: center;
}

.p-footer__subMenuWrap {
	display: block;
	padding-left: 0px;
	padding-right: 0px;
}

.p-footer__subMenu--item a {
	border-top: 1px solid #666;
	color: #fff;
	display: block;
	font-size: 0.875rem;
	letter-spacing: 0.39px;
	padding: 1.3125rem 5vw 1.375rem;
}

.p-footer__subMenu--list {
	display: block;
}

.p-footer__copyright p {
	margin-top: 1.5625rem;
	text-align: center;
}

.p-footer__subMenu--item {
	margin-left: 0;
}

.p-info__image {
	left: 50%;
	top: 20.625rem;
	transform: translateX(-50%);
}

.p-list {
	display: block;
}

.p-list__item {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px;
	padding-right: 0px;
	width: calc(100%/1.5);
}

.p-list__item:nth-child(n+2) {
	margin-top: 3.125rem;
}

.p-listDetail__title {
	font-size: 1rem;
}

.p-listDetail__text {
	font-size: 0.875rem;
	margin-top: 1.875rem;
}

.p-listDetail__table {
	border: solid 1px #ccc;
	margin-top: 2.5rem;
}

.p-listDetail__table th,
td {
	display: block;
	font-size: 0.875rem;
	padding-left: 0.875rem;
	width: 100%;
}

.p-listDetail__table th {
	border: none;
}

.p-listDetail__table td {
	border: none;
}

.p-listDetail__table tr {
	border-bottom: 1px solid #ccc;
}

.p-listDetail__sample {
	margin-top: 2.8125rem;
}

.p-main__inner {
	display: block;
	padding-left: 0.9375rem;
	padding-top: 6.25rem;
}

.p-main__title {
	font-size: 1.25rem;
}

.p-main__title span {
	font-size: 1.625rem;
}

.p-main__text {
	font-size: 0.875rem;
}

.p-main__button {
	margin-right: 0.9375rem;
	margin-top: 1.875rem;
	text-align: center;
	width: calc(100% - 15px);
}

.p-price__inner {
	padding-top: 3.5rem;
}

.p-price__main::after {
	top: -5.125rem;
}

.p-price__text {
	font-size: 1rem;
	margin-top: 1.75rem;
}

.p-price__text span {
	font-size: 1.875rem;
}

.p-ranking__item a {
	height: 100%;
	padding: 2.125rem 1.125rem 0;
}

.p-ranking__title::before {
	left: -15%;
	top: -120%;
}

.p-ranking__amount {
	margin-top: 1.5rem;
}

.p-ranking__amount span {
	font-size: 1.375rem;
}

.p-reason__head::after {
	right: 50% !important;
	transform: translateX(50%);
}

.p-sample__title {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 1.56;
}

.p-test {
	color: green;
	font-size: 1.875rem;
}

.p-title__main {
	font-size: 1.5rem;
}

.p-title__main::after {
	display: none;
}

.p-topRanking__head::after {
	right: 50%;
	transform: translateX(50%);
}

.p-topSaleBlock__head::after {
	right: 50%;
	transform: translateX(50%);
}

.u-on-sp {
	display: block;
}

.u-hidden-sp {
	display: none;
}

}

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

.u-hidden-560 {
	display: none;
}

}

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

.p-info__image {
	top: 110%;
}

}

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

.p-flow__boxTitle {
	padding-left: 0;
	width: auto;
}

.p-flow__boxText {
	padding-left: 0;
	width: auto;
}

.p-sample__button--test .emd_dl_red_darker {
	width: 90%;
}

}

