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;
	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"] {
	-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: #333;
	font-family: "Noto Sans JP", sans-serif;
	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%;
}

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;
}

ol,
ul {
	list-style: none;
}

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 */

.l-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

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

.c-br-pc {
	display: none;
}

.c-br-xl {
	display: none;
}

.c-btn {
	border: solid 1px #000;
	border-radius: 50px;
	display: inline-block;
	font-size: 14px;
	outline: none;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: ease .2s;
}

.c-btn::after {
	/*content: '';*/
	height: 10px;
	position: absolute;
	right: 22px;
	top: 42%;
	transform: rotate(45deg);
	transition: all .3s;
	width: 10px;
}

.c-btn:hover::after {
	right: 10px;
}

.c-circleBubble {
	align-items: center;
	background: #005fa8;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 62px;
	justify-content: center;
	position: relative;
	text-align: center;
	width: 62px;
}

.c-circleBubble:before {
	border: 15px solid transparent;
	border-top: 15px solid #005fa8;
	bottom: -25px;
	content: "";
	left: 50%;
	margin-left: -15px;
	position: absolute;
	z-index: 0;
}

.c-circleBubble__text {
	font-size: 12.5px;
	line-height: 1;
}

.c-circleBubble__number {
	font-size: 30.5px;
	line-height: 0.8;
}

.c-circleMerit {
	align-items: center;
	background: #005fa8;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 62px;
	justify-content: center;
	text-align: center;
	width: 62px;
}

.c-circleMerit__text {
	font-size: 11.4px;
	font-weight: 400;
	letter-spacing: -0.08em;
	line-height: 1;
}

.c-circleMerit__number {
	font-size: 30px;
	font-weight: 400;
	line-height: 0.9;
}

.c-circlePoint {
	align-items: center;
	background: #005fa8;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 70px;
	justify-content: center;
	margin: 0 auto;
	text-align: center;
	width: 70px;
}

.c-circlePoint__text {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
}

.c-circlePoint__number {
	font-size: 33px;
	font-weight: 400;
	line-height: 0.9;
}

.c-circleStep {
	align-items: center;
	background: #fff;
	border: 2px solid #005fa8;
	border-radius: 50%;
	color: #005fa8;
	display: flex;
	height: 56px;
	justify-content: center;
	text-align: center;
	width: 56px;
}

.c-circleStep__text {
	font-size: 11.5px;
	line-height: 1;
}

.c-circleStep__number {
	font-size: 28px;
	line-height: 0.8;
}

.c-icon {
	height: 24px;
	width: 24px;
}

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

.smaller {
	color: #717171;
}

.wp-pagenavi {
	align-items: center;
	display: flex;
	justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
	border: 1px solid #e1e1e1;
	display: inline-block;
	font-size: 22px;
	font-weight: 500;
	margin: 0 0.46875rem !important;
}

.current {
	background: #666666;
	border-color: #e1e1e1;
	color: #fff;
	height: 32px;
	line-height: 28px;
	width: 32px;
}

.wp-pagenavi .page {
	color: #747474;
	height: 32px;
	line-height: 28px;
	width: 32px;
}

.previouspostslink,
.nextpostslink {
	color: #7e7e7e;
	display: block;
	font-size: 13px !important;
	font-weight: 500;
	height: 32px;
	line-height: 32px;
	width: 52px;
}

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

.p-about {
	padding: 3.9375rem 0 4.125rem;
	text-align: center;
}

.p-about__title {
	color: #005fa8;
	font-size: 1.4375rem;
	font-weight: 400;
	margin-bottom: 1.125rem;
	text-align: center;
}

.p-about__description {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 2;
}

.p-about__description--top {
	margin-bottom: 2.25rem;
}

.p-about__description--bottom {
	margin-bottom: 0.9375rem;
}

.p-about__image {
	margin: 0 auto;
	width: 21.875rem;
}

.p-agency__inner {
	margin: 0 auto;
	max-width: 37.5rem;
	padding: 0 0.9375rem;
	width: 100%;
}

.p-agency__image {
	height: auto;
	width: 100%;
}

.p-agency__image img {
	-o-object-fit: cover;
	-o-object-position: top;
	height: 100%;
	object-fit: cover;
	object-position: top;
	width: 100%;
}

.p-agency__text {
	padding: 1rem 0 1rem;
	text-align: center;
}

.p-agency__title {
	color: #005fa8;
	font-size: 1.4375rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
}

.p-agency__description {
	font-size: 0.8125rem;
	font-weight: 500;
	margin-bottom: 1.875rem;
}

.p-agency__btn {
	border: solid 1px #005fa8;
	color: #005fa8;
	font-weight: 500;
	padding: 15px 100px;
}

.p-agency__btn::after {
	border-right: 1px solid #005fa8;
	border-top: 1px solid #005fa8;
}

.p-breadcrumb {
	align-items: center;
	display: flex;
	height: 3rem;
	line-height: 3rem;
	list-style: none;
	margin: 0 auto;
	max-width: 1024px;
	padding: 0 0.75rem;
	width: 100%;
}

.p-breadcrumb__items {
	display: flex;
}

.p-breadcrumb__item--home a {
	color: #000;
}

.p-breadcrumb__item {
	font-size: 14px;
	list-style: none;
}

.p-breadcrumb__item:after {
	color: #000; /* >を表示*/
	content: '>';
	padding: 0 0.4375rem;
}

.p-breadcrumb__item:last-child:after {
	content: '';
}

.p-breadcrumb__item a {
	text-decoration: none; /*色*/
}

.p-breadcrumb__item a:hover {
	text-decoration: underline;
}

.p-contact-main__inner {
	margin: 0 auto;
	max-width: 600px;
	padding: 3.125rem 0 5.75rem;
	width: 90%;
}

.p-contact-main__description {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 2.375rem;
	text-align: center;
}

.mw_wp_form_confirm .p-contact-main__description,
.mw_wp_form_complete .p-contact-main__description {
	display: none;
}

.steps {
	display: table;
	list-style-type: none;
	margin: 0;
	margin-bottom: 2.1875rem;
	overflow: hidden;
	padding: 0 33px 0 0;
	width: 100%;
}

.steps li {
	display: table-cell;
	height: 50px;
	line-height: 50px;
	padding-left: 20px;
	position: relative;
	text-align: center;
}

.steps li::before {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 40px 0 40px 2.5em;
	content: "";
	height: 0;
	margin: auto;
	position: absolute;
	right: -1.8em;
	top: -14px;
	width: 0;
	z-index: 1;
}

.steps li::after {
	border-style: solid;
	border-style: solid;
	border-width: 40px 0 40px 2.5em;
	border-width: 40px 0 40px 2.5em;
	content: "";
	height: 0;
	margin: auto;
	position: absolute;
	right: -1.7em;
	top: -14px;
	width: 0;
	z-index: 1;
}

.mw_wp_form_input .steps .step-first {
	background: #005fa8;
	color: #fff;
}

.mw_wp_form_input .steps .step-first::after {
	border-color: transparent transparent transparent #005fa8;
}

.mw_wp_form_input .steps .step-second {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_input .steps .step-second::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_input .steps .step-third {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_input .steps .step-third::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_confirm .steps .step-first {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_confirm .steps .step-first::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_confirm .steps .step-second {
	background: #005fa8;
	color: #fff;
}

.mw_wp_form_confirm .steps .step-second::after {
	border-color: transparent transparent transparent #005fa8;
}

.mw_wp_form_confirm .steps .step-third {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_confirm .steps .step-third::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_complete .steps .step-first {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_complete .steps .step-first::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_complete .steps .step-second {
	background: #ebebeb;
	color: #676767;
}

.mw_wp_form_complete .steps .step-second::after {
	border-color: transparent transparent transparent #ebebeb;
}

.mw_wp_form_complete .steps .step-third {
	background: #005fa8;
	color: #fff;
}

.mw_wp_form_complete .steps .step-third::after {
	border-color: transparent transparent transparent #005fa8;
}

.wrap {
	border-bottom: 1px dashed #5e5e5e;
	padding: 25px 0;
}

.required {
	border: 1px solid #d57676;
	color: #d57676;
	display: block;
	font-size: 12px;
	margin-right: 12px;
	padding: 1px 5px;
	text-align: center;
}

.description {
	display: flex;
	flex-flow: row-reverse;
	justify-content: flex-end;
	width: 100%;
}

.description p {
	font-weight: 500;
	margin-bottom: 0;
}

.description-title {
	font-size: 14px;
	font-weight: 500;
}

.description-right {
	width: 100%;
}

.description-right .entry-description--mail {
	margin-bottom: 16px;
}

.description-right .entry {
	width: 100%;
}

.description-right .entry {
	max-width: 328px;
	width: 100%;
}

.entry .mwform-tel-field input {
	width: 30% !important;
}

.entry {
	margin-top: 20px;
}

.entry input {
	background: #f2f9ff;
	max-width: 328px;
	width: 100%;
}

.entry .mwform-radio-field-text {
	font-size: 1rem;
	padding: 0 0 0 24px;
}

.entry textarea {
	background: #f2f9ff;
	resize: none;
}

.entry .mwform-radio-field-text::before {
	border: 2px solid #b1b1b1;
}

.entry .mwform-radio-field-text {
	font-size: 14px;
	font-weight: 500;
}

.entry-description {
	max-width: none !important;
	width: 100%;
}

.entry-description .description-title {
	width: 30%;
}

.entry select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #f3f3f3;
	border: 1px solid #d6d6d6;
	border-radius: 5px;
	font-weight: 500;
	height: 46px;
	padding: 0;
	text-align: center;
	width: 328px;
}

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

.p-contact-main__privacy {
	border: 1px solid #898989;
	font-size: 12px;
	font-weight: 800px;
	height: 110px;
	margin: 2.125rem auto 3.375rem;
	overflow: scroll;
	padding: 20px 28px;
}

.p-contact-main__privacy p {
	margin-bottom: 1em;
}

.mw_wp_form_confirm .p-contact-main__privacy,
.mw_wp_form_complete .p-contact-main__privacy {
	display: none;
}

.confirm-btn,
.submit-btn,
.back-btn {
	height: 60px;
	margin: 0 auto;
	width: 12.5rem;
	width: 18.75rem;
}

.confirm-btn button:hover,
.back-btn button:hover,
.submit-btn button:hover {
	cursor: pointer;
}

.confirm-btn button {
	background: #005fa8;
	border: 3px solid #38a1db;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	height: 100%;
	width: 100%;
}

.back-btn button {
	background: #005fa8;
	border: 3px solid #38a1db;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	height: 100%;
	width: 100%;
}

.submit-btn button {
	background: #005fa8;
	border: 3px solid #38a1db;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-weight: 600;
	height: 100%;
	width: 100%;
}

.mw_wp_form_input .submit-btn,
.mw_wp_form_input .back-btn {
	display: none;
}

.top-remark {
	font-size: 14px;
	font-weight: 500;
	margin-top: 1.25rem;
}

.p-contact {
	background: #005fa8;
	padding: 2.5rem 0 2.625rem;
}

.p-contact__inner {
	margin: 0 auto;
	max-width: 37.5rem;
	padding: 0 2.125rem;
	width: 100%;
}

.p-contact__block {
	border: 2.5px solid #fff;
	border-radius: 5px;
	color: #fff;
	margin-bottom: 1rem;
	padding: 2.625rem 0 2rem;
	text-align: center;
}

.p-contact__block:last-child {
	margin: 0;
}

.p-contact__title {
	font-size: 1.4375rem;
	font-weight: 400;
	margin-bottom: 1.25rem;
}

.p-contact__description {
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 1.625rem;
}

.p-contact__telNumber,
.p-contact__contactForm {
	align-items: center;
	background-color: #fff;
	border: 1.5px solid #38a1db;
	border-radius: 50px;
	display: flex;
	height: 50px;
	margin: 0 auto;
	max-width: 280px;
	position: relative;
	width: 90%;
}

.p-contact__telNumber {
	cursor: pointer !important;
}

.p-contact__telNumber span,
.p-contact__contactForm span {
	color: #005fa8;
	font-weight: bold;
	margin: 0 auto;
}

.p-contact__telNumber img,
.p-contact__contactForm img {
	position: absolute;
}

.p-contact__telNumber img {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 26px;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact__contactForm img {
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact__telNumber span {
	font-size: 1.25rem;
}

.p-contact__contactForm span {
	font-size: 0.875rem;
}

.p-difference-flow {
	background: #f1f6f9;
	padding: 0 0 5.375rem;
}

.p-difference-flow__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 2.25rem;
	text-align: center;
}

.p-difference-flow__steps {
	margin: 0 auto 3.75rem;
	max-width: 700px;
	padding: 0 0.625rem;
	width: 100%;
}

.p-difference-flow__step {
	align-items: center;
	display: flex;
	margin-bottom: 1.25rem;
}

.p-difference-flow__text {
	padding-left: 0.625rem;
	width: 83%;
}

.p-difference-flow__stepTitle {
	color: #005fa8;
	font-size: 15px;
	font-weight: 500;
}

.p-difference-flow__stepDescription {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.08em;
	line-height: 1.38;
}

.p-difference-flow__stepDescription nobr {
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.06em;
	transform: scale(0.8);
	transform-origin: left;
	width: 100%;
}

.p-difference-flow__circle.last {
	margin-bottom: auto;
}

.p-difference-flow__circle.last::before {
	display: none;
}

.p-difference-flow__blocks {
	margin: 0 auto;
	max-width: 700px;
	padding: 0 0.875rem;
	width: 100%;
}

.p-difference-flow__blockTitle {
	background: #005fa8;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	height: 60px;
	line-height: 60px;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-difference-flow__blockSubTitle {
	background: #fff;
	font-size: 16px;
	font-weight: 500;
	height: 37px;
	line-height: 37px;
	margin-bottom: 0.625rem;
	text-align: center;
}

.p-difference-flow__blockText {
	font-size: 15px;
	line-height: 1.526;
	margin-bottom: 1rem;
}

.triangle {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	background-color: #005fa8;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	height: 20px;
	margin-bottom: 1.25rem;
	margin-top: -1px;
	width: 100%;
}

.p-difference__thumbnail {
	background-image: url(../image/difference-thumbnail.jpg);
}

.p-difference-about {
	padding: 2.625rem 0 3.625rem;
}

.p-difference-about__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0.625rem;
	text-align: center;
}

.p-difference-about__description {
	font-size: 15px;
	letter-spacing: 1.4;
	margin-bottom: 1.25rem;
	text-align: center;
}

.p-difference-about__advises {
	margin: 0 auto 1.625rem;
	max-width: 372px;
	padding: 0 0.8125rem;
	width: 100%;
}

.p-difference-about__advise {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 0.375rem;
}

.p-difference-about__reason {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	height: 56px;
	letter-spacing: -0.08em;
	line-height: 1.34;
	margin-right: 2rem;
	padding-left: 1.125rem;
	position: relative;
	width: 180px;
}

.p-difference-about__reason.reason-top {
	background: #f0f28c;
	color: #005fa8;
}

.p-difference-about__reason.reason-bottom {
	background: #005fa8;
	color: #fff;
}

.p-difference-about__reason::after {
	border-bottom: 28px solid transparent;
	border-left: 20px solid;
	border-top: 28px solid transparent;
	content: '';
	position: absolute;
	right: -20px;
	top: 0;
}

.p-difference-about__reason.reason-top::after {
	border-left-color: #f0f28c;
}

.p-difference-about__reason.reason-bottom::after {
	border-left-color: #005fa8;
}

.p-difference-about__answer {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.08em;
}

.p-difference-about__answer span {
	color: #005fa8;
	font-size: 27px;
	font-weight: 500;
}

.p-difference-about__list {
	margin: 0 auto;
	max-width: 600px;
	padding: 0 0.4375rem;
	width: 100%;
}

.p-difference-about__item.sp-item {
	margin-bottom: 0.3125rem;
}

.p-difference-about__bottomText {
	-ms-grid-columns: 1fr 1fr;
	gap: 2px;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 40px;
	line-height: 40px;
}

.p-difference-about__bottomText.height-long {
	height: 60px;
}

.p-difference-about__item.pc-item {
	display: none;
}

.p-difference-about__centerText {
	align-items: center;
	background: #8c8c8c;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 500;
	height: 40px;
	justify-content: center;
	line-height: 40px;
}

.p-difference-about__leftText,
.p-difference-about__rightText {
	-moz-text-align-last: center;
	align-items: center;
	background: #ededed;
	display: flex;
	font-size: 15px;
	font-weight: 500;
	justify-content: center;
	line-height: 20px;
	text-align-last: center;
}

.p-difference-about__item:nth-child(14) .p-difference-about__centerText {
	font-size: 18px;
}

.p-difference-about__bottomText.sp-title {
	margin-bottom: 0.3125rem;
}

.p-difference-about__leftText.sp-leftTitle,
.p-difference-about__leftText.pc-leftTitle {
	background: #f0f28c;
	color: #005fa8;
	justify-content: center;
}

.p-difference-about__rightText.sp-rightTitle,
.p-difference-about__rightText.pc-rightTitle {
	background: #005fa8;
	color: #fff;
	justify-content: center;
}

.p-difference-about__centerText.pc-centerNone {
	background: #fff;
}

.p-difference-contract {
	background: #f1f6f9;
	padding: 2.5rem 0 3rem;
}

.p-difference-contract__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1.75rem;
	text-align: center;
}

.p-difference-contract__inner {
	margin: 0 auto;
	max-width: 700px;
	padding: 0 0.875rem;
	width: 100%;
}

.p-difference-contract__block {
	margin-bottom: 3.125rem;
}

.p-difference-contract__image {
	height: auto;
	margin: 0 auto 1.125rem;
	width: 70%;
}

.p-difference-contract__subtitle {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0.625rem;
}

.p-difference-contract__description {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.38;
}

.p-difference-demerit {
	padding: 2.5rem 0 2.125rem;
}

.p-difference-demerit__inner {
	margin: 0 auto;
	max-width: 700px;
	padding: 0 2.25rem;
	width: 100%;
}

.p-difference-demerit__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0.875rem;
	text-align: center;
}

.p-difference-demerit__block {
	margin-bottom: 3.125rem;
}

.p-difference-demerit__image {
	margin-bottom: 1.25rem;
}

.p-difference-demerit__description {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.38;
}

.p-difference-demerit__summary {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.08em;
	line-height: 1.53;
	text-align: center;
}

.p-difference-demerit__summary span {
	color: #005fa8;
	font-size: 22px;
}

.p-difference-merit {
	background: #f8f8f8;
	padding: 2.875rem 0 5.625rem;
}

.p-difference-merit__inner {
	margin: 0 auto;
	max-width: 600px;
	padding: 0 0.5rem;
	width: 100%;
}

.p-difference-merit__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1.375rem;
	text-align: center;
}

.p-difference-merit__item {
	align-items: center;
	border: 1px solid #005fa8;
	display: flex;
	justify-content: center;
	margin-bottom: 0.75rem;
	padding: 1.25rem 0 1.25rem;
}

.p-difference-merit__circle {
	margin-right: 0.625rem;
}

.p-difference-merit__text {
	padding-right: 0.75rem;
	width: 79%;
}

.p-difference-merit__subtitle {
	font-size: 16px;
	font-weight: 500;
}

.p-difference-merit__description {
	font-size: 13px;
	font-weight: 500;
}

.p-difference-summary {
	padding: 1.875rem 0;
}

.p-difference-summary__inner {
	margin: 0 auto;
	max-width: 600px;
	padding: 0 0.5rem;
	width: 100%;
}

.p-difference-summary__description {
	background: #f1f6f9;
	border: 3px solid #005fa8;
	border-radius: 10px;
	color: #005fa8;
	font-size: 16px;
	letter-spacing: -0.05em;
	line-height: 1.4;
	padding: 1.625rem 0;
	text-align: center;
}

.p-footer {
	padding-top: 4.5rem;
	text-align: center;
}

.p-footer__top {
	margin: 0 auto 3.875rem;
	/*width: 250px;*/
}

.p-footer__logo {
	align-items: center;
	display: flex;
}

.p-footer__logo--circle {
	margin-right: 18px;
	width: 65px;
}

.p-footer__logo--textlink {
	height: auto;
	width: 165px;
}

.p-footer__detail {
	font-size: 0.675rem;
	font-weight: 500;
	/*margin-left: 84px;*/
	/*text-align: left;*/
}

.p-footer__items {
	list-style: none;
}

.p-footer__item {
	font-size: 1.125rem;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 3.625rem;
}

.p-footer__copy {
	background-color: #f1f1f1;
	color: #989898;
	font-size: 0.625rem;
	font-weight: 400;
	height: 74px;
	letter-spacing: 0.3em;
	line-height: 74px;
	text-align: center;
}

.p-header {
	border-bottom: 1px solid #d4d4d4;
	position: fixed;
}

.p-header__inner {
	background: #fff;
	height: 60px;
	position: relative;
	width: 100%;
}

.p-header__logo {
	align-items: center;
	display: flex;
}

.p-header__logo--circle {
	margin-right: 8px;
	width: 42px;
}

.p-header__logo--textlink {
	/*height: 15px;*/
	width: 110px;
	font-weight: 800;
}

.p-header__logo--textlink em{
	font-style: normal;
	color: #005fa8;
}

.p-header__drawer {
	align-items: center;
	display: flex;
	flex-direction: row;
	height: 60px;
	justify-content: space-between;
	padding: 0 14px;
	position: relative;
}

.p-header__toggle {
	z-index: 9999;
}

.p-header__toggle span {
	background: #000;
	display: block;
	height: 3px;
	position: relative;
	transition: ease .5s;
	width: 44px;
}

.p-header__toggle span:nth-child(1) {
	top: 0;
}

.p-header__toggle span:nth-child(2) {
	margin: 8px 0;
}

.p-header__toggle span:nth-child(3) {
	top: 0;
}

/*OPEN時の動き*/

.p-header__toggle.open span:nth-child(1) {
	top: 11px;
	transform: rotate(45deg);
}

.p-header__toggle.open span:nth-child(2) {
	opacity: 0;
	transform: translateY(-50%);
}

.p-header__toggle.open span:nth-child(3) {
	top: -11px;
	transform: rotate(-45deg);
}

.p-header__list {
	display: flex;
	height: 100vh;
	justify-content: center;
	opacity: 1;
	padding-top: 40px;
	transform: translateX(-100%);
	transition: ease .5s;
	width: 100%;
	z-index: 998;
}

/*OPEN時の動き*/

.p-header__list.open {
	-webkit-overflow-scrolling: touch;
	background: #fff;
	height: 100vh;
	overflow-y: auto;
	text-align: center;
	transform: translateX(0);
}

.p-header__items {
	list-style: none;
}

.p-header__item {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 3.5rem;
}

.p-header__item:first-child {
	padding-left: 0;
}

.p-header__item:last-child {
	margin-bottom: 3rem;
}

.p-header__item:nth-child(4) {
	border-right: none;
}

.p-header__item:nth-child(5) {
	margin-bottom: 2rem;
}

.p-header__contact {
	-moz-text-align-last: left;
	display: none;
	text-align-last: left;
}

.p-header__right--sp {
	align-items: center;
	display: flex;
}

.p-header__item--sp h3 {
	font-size: 18px;
	font-weight: 400;
}

.p-header__item--sp p {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 0.375rem;
}

.p-header__contact--sp {
	align-items: center;
	background-color: #005fa8;
	border: 1.5px solid #38a1db;
	border-radius: 50px;
	display: flex;
	height: 45px;
	justify-content: center;
	margin-right: 1.375rem;
	width: 45px;
}

.p-header__contact--pc {
	display: none;
}

.p-header__contact--pc img {
	margin-right: 0.625rem;
}

.p-header__contact--pc span {
	color: #fff;
	font-size: 18px;
	line-height: 32px;
}

.p-header__telNumber,
.p-header__contactForm {
	align-items: center;
	background-color: #005fa8;
	border-radius: 50px;
	display: flex;
	height: 50px;
	padding: 0 25px;
	width: 280px;
}

.p-header__telNumber span,
.p-header__contactForm span {
	color: #fff;
	font-weight: bold;
}

.p-header__telNumber img,
.p-header__contactForm img {
	margin-right: 20px;
}

.p-header__telNumber span {
	font-size: 20px;
}

.p-header__contactForm span {
	font-size: 14px;
}

.p-mv {
	-webkit-appearance: #005fa8;
	-moz-appearance: #005fa8;
	appearance: #005fa8;
	align-items: center;
	background-image: url(../image/mv-img--sp.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	height: 26.875rem;
	justify-content: center;
	margin-top: 60px;
	position: relative;
	width: 100%;
}

.p-mv::before {
	background-color: rgba(0, 95, 168, 0.15);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.p-mv__block {
	color: #fff;
	position: absolute;
	text-align: center;
}

.p-mv__title {
	font-size: 2.09375rem;
	font-weight: 400;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 1.43;
	margin-bottom: 0.3125rem;
}

.p-mv__subtitle {
	font-size: 1.0625rem;
	font-weight: normal;
	margin-bottom: 1.1875rem;
}

.p-mv__items {
	list-style: none;
}

.p-mv__item {
	border: 1px solid #fff;
	font-size: 13px;
	font-weight: 500;
	height: 32px;
	line-height: 32px;
	margin: 0 auto 0.625rem;
	min-width: 270px;
	text-align: center;
	width: 60%;
}

.p-mv__item:last-child {
	margin-bottom: 0;
}

.p-news-main {
	margin-top: 60px;
}

.p-news-main__inner {
	height: inherit;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 20px;
	width: 1000px;
}

.p-news-main__thumbnail {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-news-main__thumbnail img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-news-main__title {
	text-indent: 0.2em;
}

.p-news-main__content p {
	margin-bottom: 1.875rem;
}

.p-news-main__content li {
	list-style: inside;
	margin-bottom: 0.625rem;
}

.p-news-sub {
	padding: 2rem 0 5rem;
}

.p-news-sub__items {
	margin-bottom: 4rem;
}

.p-news-sub__thumbnail {
	background-image: url(../image/news-thumbnail.jpg);
}

.p-news {
	padding: 3.5rem 0 2.25rem;
}

.p-news__inner {
	margin: 0 auto;
	max-width: 37.5rem;
	padding: 0 0.75rem;
	text-align: center;
	width: 100%;
}

.p-news__title {
	color: #005fa8;
	font-size: 1.4375rem;
	font-weight: normal;
	font-weight: 400;
	margin-bottom: 1.125rem;
	text-align: center;
}

.p-news__items {
	margin-bottom: 2.625rem;
}

.p-news__item {
	border-bottom: 1px solid #dadada;
	padding: 1.375rem 0 1.875rem;
	text-align: left;
}

.p-news__item:first-child {
	border-top: 1px solid #dadada;
}

.p-news__data {
	color: #7e7e7e;
	font-size: 0.625rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
}

.p-news__subtitle {
	font-size: 0.8125rem;
	font-weight: 300;
	letter-spacing: -0.1em;
	text-indent: 0.2em;
}

.p-news__btn {
	border: solid 1px #a9a9a9;
	color: #000;
	font-weight: 300;
	padding: 0.8125rem 6rem;
}

.p-news__btn::after {
	border-right: 1px solid #000;
	border-top: 1px solid #000;
}

.p-company__thumbnail {
	background-image: url(../image/company-thumbnail.jpg);
}

.p-company-sub {
	padding: 0.5rem 0 6.25rem;
}

.p-company-sub__inner {
	margin: 0 auto;
	max-width: 600px;
	padding: 0 0.4375rem;
	width: 100%;
}

.p-company-sub__item dt {
	background: #f8f8f8;
	border-top: 1px solid #d2d2d2;
	font-size: 14px;
	font-weight: 500;
	padding: 0.75rem 0 0.75rem 1.5rem;
}

.p-company-sub__item dd {
	border-top: 1px solid #d2d2d2;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.05em;
	padding: 0.75rem 0 0.75rem 1.5rem;
}

.p-company-sub__item.map {
	border-bottom: 1px solid #d2d2d2;
	display: block;
}

.p-company-sub__item.map dt {
	border-bottom: 1px solid #d2d2d2;
}

.p-company-sub__map {
	height: 246px;
	margin: 1.625rem 1.5rem 1.625rem;
	overflow: hidden;
	position: relative;
}

.p-company-sub__map iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-company {
	background-image: url(../image/company-img.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 4.75rem 0 5.0625rem;
	text-align: center;
	margin-bottom: 2rem;
}

.p-company__title {
	font-size: 1.4375rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.p-company__description {
	font-weight: 500;
	margin-bottom: 0.8125rem;
}

.p-company__btn {
	border: solid 1px #fff;
	color: #fff;
	font-weight: bold;
	padding: 15px 100px;
}

.p-company__btn::after {
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
}

.p-purchase__thumbnail {
	background-image: url(../image/purchase-thumbnail.jpg);
}

.p-purchase-about {
	padding: 1.5625rem 0 2.5rem;
	text-align: center;
}

.p-purchase-about__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.27;
	margin-bottom: 1.25rem;
}

.p-purchase-about__text {
	font-size: 13px;
	line-height: 1.61;
}

.p-purchase-flow {
	padding: 2.75rem 0 3.75rem;
}

.p-purchase-flow__inner {
	margin: 0 auto;
	max-width: 1210px;
	padding: 0 0.625rem;
	width: 100%;
}

.p-purchase-flow__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1.75rem;
	text-align: center;
}

.p-purchase-flow__item {
	align-items: center;
	background: #e8f5ff;
	border-radius: 10px;
	display: flex;
	justify-content: flex-end;
	list-style: none;
	margin-bottom: 0.625rem;
	position: relative;
}

.p-purchase-flow__item.step1 {
	height: 165px;
}

.p-purchase-flow__item.step2 {
	height: 124px;
}

.p-purchase-flow__item.step3 {
	height: 124px;
}

.p-purchase-flow__item.step4 {
	height: 90px;
}

.p-purchase-flow__item.step5 {
	height: 90px;
}

.p-purchase-flow__item.step6 {
	height: 110px;
}

.p-purchase-flow__content {
	padding: 0 1.25rem 0 1rem;
	width: 82%;
}

.p-purchase-flow__titleBlock {
	align-items: center;
	display: flex;
}

.p-purchase-flow__subtitle {
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
}

.p-purchase-flow__description {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: -0.07em;
	margin-top: 1rem;
}

.p-purchase-flow__icon {
	margin: 0 1rem;
	width: auto;
}

.p-purchase-flow__icon.icon-step1 {
	-o-object-fit: contain;
	height: 32px;
	margin-left: 0;
	object-fit: contain;
	width: 71.5px;
}

.p-purchase-flow__icon.icon-step2 {
	-o-object-fit: contain;
	height: 45px;
	object-fit: contain;
	width: 36px;
}

.p-purchase-flow__icon.icon-step3 {
	-o-object-fit: contain;
	height: 46px;
	margin-right: 1rem;
	object-fit: contain;
	width: 50px;
}

.p-purchase-flow__icon.icon-step4 {
	-o-object-fit: contain;
	height: 40px;
	margin-right: 0.4375rem;
	object-fit: contain;
	width: 51px;
}

.p-purchase-flow__icon.icon-step5 {
	-o-object-fit: contain;
	height: 35px;
	object-fit: contain;
	width: 51px;
}

.p-purchase-flow__icon.icon-step6 {
	-o-object-fit: contain;
	height: 44px;
	object-fit: contain;
	width: 48px;
}

.p-purchase-flow__icon img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-purchase-flow__description--list {
	font-weight: 500;
	height: 1.25rem;
	margin-top: 1.25rem;
}

.p-purchase-flow__description--list dt {
	background: #fff;
	clear: left;
	float: left;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 2px;
	margin-right: 5px;
	text-align: center;
	width: 62px;
}

.p-purchase-flow__description--list dd {
	float: left;
	font-size: 13px;
	font-weight: 500;
}

.p-purchase-merit {
	background: #f8f8f8;
	padding: 4.125rem 0 3.9375rem;
}

.p-purchase-merit__inner {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 0.9375rem;
	width: 100%;
}

.p-purchase-merit__title {
	color: #005fa8;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.27;
	margin-bottom: 2.1875rem;
	text-align: center;
}

.p-purchase-merit__item {
	list-style: none;
}

.p-purchase-merit__image {
	margin-bottom: 0.9375rem;
	padding: 0 1.875rem;
	text-align: center;
}

.p-purchase-merit__circle {
	margin-bottom: 1rem;
}

.p-purchase-merit__subtitle {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.76;
	margin-bottom: 0.9375rem;
	text-align: center;
}

.p-purchase-merit__description {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1.61;
}

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

.thanks-page {
	text-align: center;
}

.thanks-page__title {
	font-size: 36px;
}

.thanks-page__subtitle {
	font-size: 24px;
}

.p-thumbnail {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 15rem;
	margin-top: 60px;
	text-align: center;
}

.p-thumbnail__title {
	color: #fff;
	line-height: 15rem;
}

@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 screen and (min-width: 375px) {

html {
	font-size: 16px;
}

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

}

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

html {
	font-size: 1.6vw;
}

.l-inner {
	padding-left: 25px;
	padding-right: 25px;
}

.c-br-sp {
	display: none;
}

.c-br-pc {
	display: block;
}

.c-circleMerit {
	height: 88px;
	width: 88px;
}

.c-circleMerit__text {
	font-size: 16px;
}

.c-circleMerit__number {
	font-size: 42.3px;
}

.c-circlePoint {
	height: 105px;
	width: 105px;
}

.c-circlePoint__text {
	font-size: 17.5px;
}

.c-circlePoint__number {
	font-size: 42px;
}

.c-circleStep {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	height: 90px;
	left: 50%;
	position: absolute;
	top: -45px;
	transform: translateX(-50%);
	width: 90px;
}

.c-circleStep__text {
	font-size: 17.4px;
}

.c-circleStep__number {
	font-size: 42px;
}

.c-icon {
	height: 32px;
	width: 32px;
}

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

.p-about {
	padding: 7.75rem 0 5.25rem;
}

.p-about__title {
	font-size: 36px;
	margin-bottom: 3rem;
	text-align: center;
}

.p-about__description {
	font-size: 20px;
}

.p-about__description--top {
	margin-bottom: 3.125rem;
}

.p-about__description--bottom {
	margin-bottom: 1.875rem;
}

.p-about__image {
	width: 36.5625rem;
}

.p-agency {
	padding-bottom: 7.75rem;
}

.p-agency__inner {
	max-width: 70.25rem;
}

.p-agency__block {
	display: flex;
	/*height: 22.5rem;*/
}

.p-agency__block:first-child {
	margin-bottom: 3.75rem;
}

.p-agency__block:last-child {
	flex-direction: row-reverse;
}

.p-agency__image {
	height: 100%;
	width: 50%;
	background-image: url(../picture/tyuukai-img.jpg);
}

.p-agency__image .p-agency__image_div{
	background: #000;
	width: 100%;
	height: 100%;
}

.p-agency__text {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 0;
	width: 50%;
}

.p-agency__title {
	font-size: 2.25rem;
}

.p-agency__description {
	font-size: 1.125rem;
}

.p-breadcrumb__item {
	font-size: 14px;
}

.p-contact__inner {
	max-width: 60rem;
	padding: 0;
}

.p-contact__blocks {
	display: flex;
	justify-content: space-between;
}

.p-contact__block {
	border-radius: 10px;
	border-width: 5px;
	margin: 0;
	margin-right: 2.5rem;
	padding: 4.25rem 0 2.5rem;
	width: calc(100% - 0px);
}

.p-contact__title {
	font-size: 1.875rem;
	margin-bottom: 1.5rem;
}

.p-contact__description {
	font-size: 1.125rem;
	margin-bottom: 3rem;
}

.p-contact__telNumber,
.p-contact__contactForm {
	border: 3px solid #38a1db;
	height: 78px;
	max-width: 417px;
}

.p-contact__telNumber img {
	left: 40px;
}

.p-contact__contactForm img {
	left: 32px;
}

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

.p-contact__contactForm span {
	font-size: 1.125rem;
}

.p-difference-demerit {
	padding: 5.25rem 0 6.5625rem;
}

.p-difference-demerit__title {
	font-size: 30px;
	margin-bottom: 2rem;
}

.p-difference-merit__inner {
	max-width: 1016px;
	padding: 4.25rem 0.5rem 5.125rem;
}

.p-difference-merit__title {
	font-size: 30px;
	margin-bottom: 3rem;
}

.p-difference-merit__item {
	border-width: 2px;
	margin-bottom: 1.125rem;
}

.p-difference-merit__circle {
	margin-right: 1.5rem;
}

.p-difference-merit__text {
	padding-right: 2.75rem;
	width: 85.4%;
}

.p-difference-merit__subtitle {
	font-size: 26px;
}

.p-difference-merit__description {
	font-size: 18px;
}

.p-difference-summary__inner {
	max-width: 1018px;
}

.p-difference-summary__description {
	border-width: 5px;
	font-size: 26px;
	line-height: 1.6;
	padding: 3.125rem 0 3.375rem;
}

.p-footer {
	padding-top: 4.625rem;
}

.p-footer__top {
	align-items: center;
	/*display: flex;*/
	justify-content: space-between;
	max-width: 640px;
	width: 65%;
}

.p-footer__logo--circle {
	margin-right: 22px;
	width: 86px;
}

.p-footer__detail {
	font-size: 1.125rem;
	line-height: 1.27;
	/*margin-left: 0;*/
}

.p-footer__items {
	display: flex;
	justify-content: center;
}

.p-footer__item {
	border-right: 1px solid #000;
	padding: 0 1.875rem;
}

.p-footer__item:last-child {
	border-right: none;
}

.p-footer__copy {
	font-size: 0.875rem;
	height: 92px;
	line-height: 92px;
}

.p-mv__block {
	max-width: 61.25rem;
	width: 80%;
}

.p-mv__items {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.p-mv__item {
	font-size: 1rem;
	height: 54px;
	line-height: 54px;
	margin: 0;
	min-width: 0;
}

.p-mv__item:nth-child(1) {
	width: 30.6%;
}

.p-mv__item:nth-child(2) {
	width: 45.5%;
}

.p-mv__item:nth-child(3) {
	width: 38.5%;
}

.p-news-main {
	margin-top: 124px;
	padding-top: 40px;
}

.p-news-main__thumbnail {
	margin-bottom: 2.375rem;
}

.p-news-main__data {
	margin-bottom: 2.125rem;
}

.p-news-main__title {
	font-size: 1.625rem;
	font-weight: 300;
	letter-spacing: -0.1em;
	line-height: 1.38;
	margin-bottom: 3.5rem;
}

.p-news-sub {
	padding: 3.625rem 0 6.5rem;
}

.p-news-sub__items {
	margin-bottom: 5.3125rem;
}

.p-news {
	padding: 4.375rem 0 4.8125rem;
}

.p-news__inner {
	max-width: 64rem;
	position: relative;
	width: 90%;
}

.p-news__title {
	font-size: 2.25rem;
	margin-bottom: 1.75rem;
}

.p-news__items {
	margin-bottom: 0;
}

.p-news__item {
	display: flex;
	padding: 1.875rem 0 2rem;
}

.p-news__data {
	font-size: 1.125rem;
	margin-bottom: 0;
	margin-right: 2.375rem;
}

.p-news__subtitle {
	font-size: 1.125rem;
	text-indent: 0;
}

.p-news__btn {
	padding: 0.625rem 5.875rem;
	position: absolute;
	right: 12px;
	top: 16px;
}

.p-company-sub {
	padding: 5.25rem 0 11.125rem;
}

.p-company-sub__inner {
	max-width: 1014px;
}

.p-company-sub__item {
	border-top: 1px solid #d2d2d2;
	display: flex;
	padding: 1.125rem 0 1.125rem 5.3125rem;
}

.p-company-sub__item dt {
	background: none;
	border: none;
	font-size: 18px;
	padding: 0;
	width: 53%;
}

.p-company-sub__item dd {
	border: none;
	font-size: 18px;
	padding: 0;
	width: 47%;
}

.p-company-sub__item.map {
	padding-bottom: 2.5rem;
	padding-right: 4.5rem;
}

.p-company-sub__item.map dt {
	border: none;
	margin-bottom: 1.375rem;
}

.p-company-sub__map {
	height: 367px;
	margin: 1.375rem 0 0 0;
}

.p-company {
	padding: 8.875rem 0 8.5rem;
	margin-bottom: 7.75rem;
}

.p-company__title {
	font-size: 2.25rem;
	margin-bottom: 1.125rem;
}

.p-company__description {
	margin-bottom: 2rem;
}

.p-purchase-about {
	padding: 4.875rem 0 6.0625rem;
}

.p-purchase-about__title {
	font-size: 30px;
	margin-bottom: 2.5rem;
}

.p-purchase-about__text {
	font-size: 18px;
	line-height: 1.77;
}

.p-purchase-flow {
	padding: 6.125rem 0 6.25rem;
}

.p-purchase-flow__title {
	font-size: 30px;
	margin-bottom: 5.125rem;
}

.p-purchase-flow__items {
	-ms-grid-columns: (1fr)[3];
	gap: 10px;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.p-purchase-flow__item--top,
.p-purchase-flow__item--bottom {
	display: flex;
}

.p-purchase-flow__item {
	display: block;
	margin-bottom: 3.125rem;
	padding-top: 4.6875rem;
}

.p-purchase-flow__item.step1 {
	height: 450px;
}

.p-purchase-flow__item.step2 {
	height: 450px;
}

.p-purchase-flow__item.step3 {
	height: 450px;
}

.p-purchase-flow__item.step4 {
	height: 450px;
}

.p-purchase-flow__item.step5 {
	height: 450px;
}

.p-purchase-flow__item.step6 {
	height: 450px;
}

.p-purchase-flow__content {
	padding: 0;
	width: 100%;
}

.p-purchase-flow__titleBlock {
	display: block;
}

.step1 .p-purchase-flow__titleBlock,
.step2 .p-purchase-flow__titleBlock,
.step6 .p-purchase-flow__titleBlock {
	margin-bottom: 40px;
}

.step3 .p-purchase-flow__titleBlock {
	margin-bottom: 40px;
}

.p-purchase-flow__subtitle {
	font-size: 1.625rem;
	line-height: 1.23;
}

.p-purchase-flow__description {
	font-size: 1rem;
	letter-spacing: -0.09em;
	margin-top: 0;
	padding: 0 0.9375rem;
}

.p-purchase-flow__icon {
	margin: 0;
}

.p-purchase-flow__icon.icon-step1 {
	height: 47px;
	margin: 0 auto 3.125rem;
	width: 106px;
}

.p-purchase-flow__icon.icon-step2 {
	height: 62px;
	margin: 0 auto 2.1875rem;
	width: 49px;
}

.p-purchase-flow__icon.icon-step3 {
	height: 65px;
	margin: 0 auto 1.875rem;
	width: 71px;
}

.p-purchase-flow__icon.icon-step4 {
	height: 53px;
	margin: 0 auto 2.375rem;
	width: 67px;
}

.p-purchase-flow__icon.icon-step5 {
	height: 61px;
	height: auto;
	margin: 0 auto 2.125rem;
	width: 89px;
}

.p-purchase-flow__icon.icon-step6 {
	height: 66px;
	margin: 0 auto 1.75rem;
	width: 72px;
}

.p-purchase-flow__description--list {
	margin-top: 0;
	text-align: center;
}

.p-purchase-flow__description--list dt {
	float: none;
	font-size: 16px;
	height: 25px;
	line-height: 25px;
	margin: 0 auto 0.25rem;
	width: 135px;
}

.p-purchase-flow__description--list dd {
	float: none;
	font-size: 16px;
	margin-bottom: 0.3125rem;
}

.p-purchase-merit {
	padding: 5.75rem 0 5rem;
}

.p-purchase-merit__title {
	font-size: 30px;
	line-height: 1.53;
	margin-bottom: 2.8125rem;
}

.p-purchase-merit__item {
	align-items: center;
	display: flex;
	height: 350px;
}

.p-purchase-merit__item:nth-child(odd) {
	flex-direction: row-reverse;
}

.p-purchase-merit__image {
	margin-bottom: 0;
	padding: 0 2.5rem;
	width: 50%;
}

.p-purchase-merit__text {
	width: 50%;
}

.p-purchase-merit__circle {
	margin-bottom: 0.3125rem;
}

.p-purchase-merit__subtitle {
	font-size: 26px;
	line-height: 1.77;
	margin-bottom: 0.625rem;
}

.p-purchase-merit__description {
	font-size: 18px;
	line-height: 1.77;
}

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

.p-thumbnail__title {
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 18.75rem;
}

}

@media (min-width: 1000px) {

html {
	font-size: 16px;
}

}

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

.c-circleBubble {
	height: 86px;
	width: 86px;
}

.c-circleBubble__text {
	font-size: 17.4px;
}

.c-circleBubble__number {
	font-size: 42px;
}

.c-test {
	color: blue;
}

.p-contact-main__inner {
	max-width: 1000px;
}

.p-contact-main__description {
	font-size: 1.125rem;
	margin-bottom: 4.1875rem;
}

.steps li {
	font-size: 1.25rem;
	font-weight: 400;
	height: 60px;
	line-height: 60px;
}

.steps li::before {
	top: -10px;
}

.steps li::after {
	top: -10px;
}

.wrap {
	display: flex;
}

.required {
	margin-right: 0;
	text-align: left;
}

.description {
	align-items: center;
	flex-flow: wrap;
	justify-content: flex-start;
	text-align: left;
	width: 34%;
}

.description-title {
	font-size: 18px;
	width: 44%;
}

.description-right {
	width: 67%;
}

.entry {
	margin-top: 0;
	width: 67%;
}

.entry .mwform-radio-field-text {
	font-size: 18px;
}

.entry-description {
	display: flex;
}

.entry select {
	font-size: 18px;
}

.p-contact-main__privacy {
	font-size: 14px;
	margin: 1.75rem auto 2rem;
	width: 800px;
}

.confirm-btn,
.submit-btn,
.back-btn {
	height: 70px;
	width: 22.5rem;
}

.confirm-btn button {
	font-size: 18px;
}

.back-btn button {
	font-size: 18px;
}

.submit-btn button {
	font-size: 18px;
}

.mw_wp_form_confirm .second-page__btns {
	display: flex;
}

.top-remark {
	font-size: 18px;
	margin: 1.25rem 0 0.625rem;
}

.p-difference-flow__title {
	font-size: 30px;
	margin-bottom: 2.625rem;
}

.p-difference-flow__steps {
	margin-bottom: 9rem;
	max-width: 960px;
}

.p-difference-flow__step {
	margin-bottom: 1.5rem;
}

.p-difference-flow__text {
	align-items: flex-start;
	display: flex;
	padding-left: 1.625rem;
	width: 91.6%;
}

.p-difference-flow__stepTitle {
	font-size: 24px;
	width: 27.3%;
}

.p-difference-flow__stepDescription {
	font-size: 18px;
	width: 72.7%;
}

.p-difference-flow__stepDescription nobr {
	font-size: 16px;
}

.p-difference-flow__blocks {
	display: flex;
	justify-content: space-between;
	max-width: 840px;
}

.p-difference-flow__block {
	width: 47.6%;
}

.p-difference-flow__blockTitle {
	height: 70px;
	line-height: 70px;
}

.p-difference-flow__blockTitle.left {
	font-size: 20px;
}

.p-difference-flow__blockTitle.right {
	font-size: 18px;
}

.p-difference-flow__blockSubTitle {
	font-size: 20px;
	height: 42px;
	line-height: 42px;
	margin-bottom: 0.75rem;
}

.p-difference-flow__blockText {
	font-size: 18px;
	line-height: 1.44;
	margin-bottom: 1.25rem;
}

.p-difference-about {
	padding-bottom: 6.5625rem;
}

.p-difference-about__title {
	font-size: 30px;
	margin-bottom: 3rem;
}

.p-difference-about__description {
	font-size: 22px;
}

.p-difference-about__advises {
	margin-bottom: 4.625rem;
	max-width: 670px;
}

.p-difference-about__reason {
	font-size: 20px;
	height: 88px;
	margin-right: 3.4375rem;
	padding-left: 3.5rem;
	width: 320px;
}

.p-difference-about__reason::after {
	border-bottom: 44px solid transparent;
	border-left: 30px solid;
	border-top: 44px solid transparent;
	right: -30px;
}

.p-difference-about__answer {
	font-size: 28.5px;
}

.p-difference-about__answer span {
	font-size: 43px;
}

.p-difference-about__list {
	max-width: 1014px;
}

.p-difference-about__item.sp-item {
	display: none;
}

.p-difference-about__item.pc-item {
	-ms-grid-columns: 3fr 1fr 3fr;
	gap: 4px;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 3fr 1fr 3fr;
	height: 48px;
	margin-bottom: 0.3125rem;
}

.p-difference-about__centerText {
	font-size: 20px;
	height: inherit;
	line-height: inherit;
}

.p-difference-about__leftText,
.p-difference-about__rightText {
	font-size: 20px;
	justify-content: flex-start;
	padding-left: 2.375rem;
}

.p-difference-contract {
	padding-top: 6.25rem;
}

.p-difference-contract__title {
	font-size: 30px;
	margin-bottom: 3.375rem;
}

.p-difference-contract__inner {
	max-width: 1028px;
}

.p-difference-contract__block {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 2rem;
}

.p-difference-contract__image {
	margin-bottom: 0;
	width: 34%;
}

.p-difference-contract__subtitle {
	font-size: 24px;
	margin-bottom: 1.4375rem;
}

.p-difference-contract__description {
	font-size: 18px;
	line-height: 1.66;
	padding-left: 2.5rem;
	width: 66%;
}

.p-difference-demerit__inner {
	max-width: 1072px;
}

.p-difference-demerit__block {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 3.25rem;
}

.p-difference-demerit__image {
	margin-bottom: 0;
	width: 34%;
}

.p-difference-demerit__description {
	font-size: 18px;
	line-height: 1.66;
	padding-left: 2.5rem;
	width: 66%;
}

.p-difference-demerit__summary {
	font-size: 26px;
	line-height: 1.77;
}

.p-difference-demerit__summary span {
	font-size: 36px;
}

.p-footer__logo--textlink {
	width: 218px;
}

.p-header__inner {
	align-items: center;
	display: flex;
	flex-direction: row;
	height: 124px;
	justify-content: space-between;
	padding: 0 25px;
}

.p-header__logo--circle {
	margin-right: 16px;
	width: 86px;
}

.p-header__logo--textlink {
	height: 30px;
	width: 218px;
	font-size: 30px;
    font-weight: 800;
}
.p-header__logo--textlink em{
	font-style: normal;
	color: #005fa8;
}

.p-header__drawer {
	height: 124px;
	padding: 0;
}

.p-header__toggle {
	display: none;
}

.p-header__list {
	height: auto;
	justify-content: flex-end;
	margin-top: 0;
	padding-top: 0;
	transform: translateX(0);
}

.p-header__items {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-right: 1.25rem;
}

.p-header__item {
	border-right: 1px solid #000;
	font-size: 0.875rem;
	margin-bottom: 0;
	padding: 0 0.875rem;
}

.p-header__contact {
	display: block;
}

.p-header__item--sp {
	display: none;
}

.p-header__contact--sp {
	display: none;
}

.p-header__contact--pc {
	background: #005fa8;
	border: 3px solid #38a1db;
	border-radius: 50px;
	display: block;
	font-weight: 600;
	padding: 0.875rem 1.25rem;
	width: 12.5rem;
}

.p-header__contact--pc img {
	margin-right: 1.25rem;
}

.p-header__contact--pc span {
	font-size: 0.875rem;
}

.p-mv {
	background-color: #005fa8;
	background-image: url(../image/mv-img--pc.jpg);
	height: 42.8125rem;
	margin-top: 124px;
}

.p-mv__title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.p-mv__subtitle {
	font-size: 1.875rem;
	margin-bottom: 3.875rem;
}

.p-test {
	color: blue;
}

.p-thumbnail {
	height: 18.75rem;
	margin-top: 125px;
}

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

}

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

.c-br-xl {
	display: block;
}

.p-header__item {
	font-size: 1.125rem;
	margin-bottom: 0;
	padding: 0 1.625rem;
}

.p-header__contact--pc {
	width: 17.1875rem;
}

.p-header__contact--pc img {
	margin-right: 2.1875rem;
}

.p-header__contact--pc span {
	font-size: 1.125rem;
}

.p-mv__title {
	font-size: 3.5rem;
}

.p-mv__subtitle {
	font-size: 2.25rem;
}

.p-purchase-flow__items {
	-ms-grid-columns: (1fr)[6];
	grid-template-columns: repeat(6, 1fr);
}

.p-purchase-flow__item {
	margin-bottom: 0;
}

.p-purchase-flow__item.step1 {
	height: 480px;
}

.p-purchase-flow__item.step2 {
	height: 480px;
}

.p-purchase-flow__item.step3 {
	height: 480px;
}

.p-purchase-flow__item.step4 {
	height: 480px;
}

.p-purchase-flow__item.step5 {
	height: 480px;
}

.p-purchase-flow__item.step6 {
	height: 480px;
}

.step3 .p-purchase-flow__titleBlock {
	margin-bottom: 10px;
}

}

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

.c-test {
	color: brown;
}

.p-test {
	color: brown;
}

}

