/* =Reset default browser CSS.
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html {
	font-size: 62.5%;
}

body {
	background: #f1f1f5;
	color: #333;
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	-webkit-text-size-adjust: none;
}

* {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

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

/* header
---------------------------------- */
.site-header {
	background: #fff;
	height: 80px;
	position: relative;
	z-index: 10;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 18px;
	width: 100%;
}

.site-header__logo {
	display: inline-flex;
	flex: 0 0 auto;
}

.site-header__logo h1 {
	color: #333;
	font-size: 12px;
	position: relative;
}

.site-header__logo h1 span {
	display: block;
	left: 78px;
	position: absolute;
	top: -10px;
	white-space: nowrap;
}

.site-header__logo img {
	height: 40px;
	width: auto;
}

.site-header__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 20px;
}

.site-header__tel {
	align-items: center;
	background: url("../images/icon-tel.png") no-repeat left center;
	background-size: 18px 24px;
	color: #e50012;
	display: inline-flex;
	padding-left: 26px;
	white-space: nowrap;
  font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.site-header__form {
	align-items: center;
	background: #e50012;
	border: 2px solid #e50012;
  border-radius: 6px;
	color: #fff;
	display: inline-flex;
	
	min-width: 104px;
	padding: 10px 26px;
	white-space: nowrap;
  font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 18px;
	justify-content: center;
	line-height: 1;
}

.site-header__form:hover {
	background: #fff;
	color: #e50012;
}

@media (max-width: 768px) {
	.site-header__inner {
		padding: 0 12px;
	}

	.site-header__logo h1 {
		font-size: 10px;
	}

	.site-header__logo h1 span {
		left: 58px;
		top: -9px;
	}

	.site-header__logo img {
		height: 32px;
	}

	.site-header__actions {
		gap: 12px;
	}

	.site-header__tel {
		background-size: 14px 19px;
		font-size: 18px;
		padding-left: 20px;
	}

	.site-header__form {
		font-size: 14px;
		padding: 8px 18px;
	}
}

@media (max-width: 640px) {
	.site-header__logo h1 {
		font-size: 9px;
	}

	.site-header__logo h1 span {
		left: 48px;
		top: -8px;
	}

	.site-header__logo img {
		height: 28px;
	}

	.site-header__form {
		padding: 8px 8px;
	}
}

@media (max-width: 480px) {
	.site-header {
		height: auto;
		padding: 12px 0;
	}

	.site-header__inner {
		display: block;
		padding: 0 12px;
		text-align: center;
	}

	.site-header__logo {
		justify-content: center;
		width: 100%;
	}

	.site-header__actions {
		justify-content: center;
		margin: 2px 0 0;
		width: 100%;
	}
}

/* official message
---------------------------------- */
.official-message {
	background: #fff;
	margin: 10px auto;
	max-width: 1440px;
  border-radius: 6px;
	padding: 15px 20px;
	text-align: center;
}

.official-message p {
	font-weight: 700;
	line-height: 1.6;
}

.official-message__lead {
	margin-left: 1em;
}

.official-message__lead::before {
	content: "＼";
}

.official-message__lead::after {
	content: "／";
}

@media (max-width: 1440px) {
	.official-message {
		margin: 10px;
	}
}

@media (max-width: 640px) {
	.official-message__lead {
		display: block;
		margin-left: 0;
		margin-top: 2px;
	}
}

@media (max-width: 480px) {
  .official-message p {
    font-size: 14px;
  }
}

/* pageTop
---------------------------------- */
.page-top {
	bottom: 20px;
	display: none;
	position: fixed;
	right: 10px;
	z-index: 9999;
}

.page-top__link {
	background: url("../images/arrow-w-up.png") no-repeat center 10px #232a34;
	background-size: 10px auto;
	border-radius: 6px;
	color: #fff;
	display: block;
	font-size: 10px;
	height: 40px;
	opacity: 0.6;
	position: relative;
	text-align: center;
	text-decoration: none;
	width: 40px;
}

.page-top__text {
	left: 50%;
	padding: 10px 0 0 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.page-top__link:hover {
	opacity: 1.0;
}

/* main visual
---------------------------------- */
.main-visual {
	margin: 0 auto 100px;
	max-width: 1440px;
	width: 100%;
}

.main-visual img {
	width: 100%;
}

@media (max-width: 1024px) {
	.main-visual {
		margin: 0 auto 60px;
	}
}

/* recruit section
---------------------------------- */
.recruit-section {
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
}

.section-title {
	background: #e50012;
	margin: 0 0 20px;
	padding: 15px 20px 14px;
	text-align: center;
}

.section-title h1 {
	color: #fff;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	padding: 0;
	word-break: break-all;
}

@media (max-width: 768px) {
	.section-title h1 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.section-title h1 {
		font-size: 20px;
	}
}

.section-image img {
	width: 100%;
}

.content-card {
	background: #fff;
	border-radius: 20px;
	margin: 0 0 80px;
	padding: 50px;
}

.content-card h2 {
	color: #333;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 30px;
}

.content-card h2 span {
	font-size: 20px;
	margin: 0 0 0 20px;
}

@media (max-width: 1024px) {
	.content-card {
		margin: 0 10px 80px;
	}
}

@media (max-width: 768px) {
	.content-card {
		padding: 40px;
	}

	.content-card h2 {
		font-size: 30px;
	}

  .content-card h2 span {
    margin: 0 0 0 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .content-card {
    border-radius: 10px;
    margin: 0 10px 60px;
		padding: 30px 15px;
	}

	.content-card h2 {
    margin: 0 0 15px;
		font-size: 20px;
	}

  .content-card h2 span {
    display: block;
    margin: 0;
  }
}

.content-card p {
	line-height: 1.5;
	margin: 0 0 18px;
}

.content-card p span {
  font-weight: bold;
}

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

.recruit-message {
	margin-top: 30px;
}

.point-section {
	margin-top: 30px;
}

/* ---- point ---- */
.point-section__list {
	margin: 0 0 40px;
}

.point-section__list ul {
	display: flex;
	font-size: 0;
	justify-content: space-between;
}

.point-section__list li {
	border: 2px solid #e50012;
	border-radius: 5px;
	min-height: 160px;
	padding: 25px 0 0;
	text-align: center;
	width: 32%;
}

.point-section__list li img {
	margin: 0 auto 10px;
	width: 80px;
}

.point-section__list li p {
	font-size: 16px;
	font-weight: bold;
}

@media (max-width: 640px) {
	.point-section__list ul {
		display: block;
	}

	.point-section__list li {
		width: 100%;
	}

	.point-section__list li:not(:last-child) {
		margin: 0 0 20px;
	}

  .point-section__list li p {
    font-size: 14px;
  }
}



/* requirements
---------------------------------- */
.requirements-section h2 {
	color: #e50012;
}

.requirements-section h3 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px;
}

.requirements-block {
	margin: 0 0 40px;
}

.requirements-heading::before {
	content: "＼";
}

.requirements-heading::after {
	content: "／";
}

.requirements-section__list {
	position: relative;
}

.requirements-section__list li {
	line-height: 1.6;
	padding: 0 0 0 18px;
	position: relative;
}

.requirements-section__list li::before {
	content: "・";
	font-weight: bold;
	left: 0;
	position: absolute;
}

.requirements-section span {
	font-size: 15px;
}

@media (max-width: 480px) {
  .requirements-section h3 {
    font-size: 18px;
  }

  .requirements-block {
    margin: 0 0 30px;
  }
}

/* entry cta
---------------------------------- */
.entry-cta {
	background: #fff;
	margin: 0;
	padding: 70px 0;
	width: 100%;
}

.entry-cta__inner {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1000px;
}

.entry-cta__item {
	text-align: center;
	width: 48%;
}

.entry-cta__button {
	align-items: center;
	background: #e50012;
	border: 2px solid #e50012;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-width: 360px;
	padding: 18px 50px;
}

.entry-cta__button:hover {
	background: #fff;
	color: #e50012;
}

.entry-cta__tel {
	background: url("../images/icon-tel.png") no-repeat left center;
	background-size: 18px 24px;
	color: #e50012;
	display: inline-block;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	padding-left: 30px;
}

.entry-cta p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin: 18px 0 0;
}

@media (max-width: 1024px) {
	.entry-cta__inner {
		margin: 0 10px;
	}
}

@media (max-width: 768px) {
	.entry-cta__button {
		min-width: 300px;
	}

	.entry-cta__tel {
		font-size: 34px;
	}
}

@media (max-width: 640px) {
	.entry-cta__inner {
		display: block;
	}

	.entry-cta__item {
		width: 100%;
	}

	.entry-cta__item:not(:last-child) {
		margin: 0 0 40px;
	}
}

@media (max-width: 480px) {
	.entry-cta__button {
		font-size: 20px;
	}

	.entry-cta__tel {
		font-size: 30px;
	}
}

/* map
---------------------------------- */
.map-section {
	margin: 80px auto;
	max-width: 1000px;
	width: 100%;
}

.map-section iframe {
	display: block;
	height: 450px;
	width: 100%;
}

/* recruit form
---------------------------------- */
.recruit-form__title {
	color: #e50012;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	margin: 0 0 50px;
	text-align: center;
}

.recruit-form__info {
	background: #f1f1f5;
	border-radius: 20px;
	margin: 0 0 40px;
	padding: 40px;
}

.recruit-form__block:not(:last-child) {
	margin: 0 0 40px;
}

.recruit-form__block p {
	line-height: 1.5;
}

.recruit-form__block h2 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	margin: 0 0 10px;
}

.recruit-form__tel-link {
	background: url("../images/icon-tel.png") no-repeat left center;
	background-size: 26px auto;
	color: #e50012;
	display: block;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	margin: 0 auto 10px;
	padding: 0 0 0 40px;
	transition: all 0.4s ease;
	width: 340px;
}

.recruit-form__tel {
	margin: 40px 0 0;
	text-align: center;
}

.recruit-form__button-wrap {
	margin: 30px 0 0;
}

.recruit-form__button-wrap a {
	background: #e50012;
	border: 2px solid #e50012;
	border-radius: 100px;
	color: #fff;
	display: block;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	margin: 0 auto;
	max-width: 500px;
	padding: 20px 10px;
	position: relative;
	text-align: center;
	transition: all 0.4s ease;
}

.recruit-form__button-wrap a:hover {
	background: #fff;
	color: #e50012;
}

@media (max-width: 480px) {
	.recruit-form__info {
		padding: 30px 20px;
	}
  .recruit-form__block h2 {
    font-size: 20px;
  }

	.recruit-form__button-wrap {
		margin: 40px 0 0;
		text-align: center;
	}

	.recruit-form__button-wrap a {
		display: inline-flex;
		font-size: 20px;
		justify-content: center;
		line-height: 1;
		max-width: none;
		min-width: 300px;
		padding: 18px 50px;
	}

	.recruit-form__tel {
		margin: 40px 0 0;
		text-align: center;
	}

	.recruit-form__tel-link {
		background-size: 18px 24px;
		display: inline-block;
		font-size: 30px;
		line-height: 1;
		margin: 0;
		padding-left: 30px;
		width: auto;
	}

	.recruit-form__tel-time {
		display: block;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.5;
		margin: 18px 0 0;
	}
}

/* form page
---------------------------------- */
.sub-page {
	margin: 0 auto;
	padding: 60px 0 90px;
}

.sub-page__title {
	margin: 0 auto 20px;
	max-width: 1000px;
}

.sub-page__title-inner {
	background: #e50012;
	padding: 18px 20px 17px;
	text-align: center;
}

.sub-page__title h1 {
	color: #fff;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.sub-page__return {
	margin: 0 auto 10px;
	max-width: 1000px;
}

.sub-page__return a {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50px;
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	padding: 8px 18px 8px 26px;
	position: relative;
	text-decoration: none;
}

.sub-page__return a::before {
	border-bottom: 5px solid transparent;
	border-right: 7px solid #e50012;
	border-top: 5px solid transparent;
	content: "";
	left: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sub-page__return a:hover {
	background: #efefef;
}

.sub-page__main {
	background: #fff;
	border-radius: 20px;
	margin: 0 auto;
	max-width: 1000px;
	padding: 50px;
	width: 100%;
}

.policy-page {
	background: #fff;
	border-radius: 20px;
	margin: 0 auto;
	max-width: 1000px;
	padding: 50px;
	width: 100%;
}

.policy-page__title {
	background: #232a34;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 30px;
	padding: 15px 15px 12px;
}

.policy-page__heading {
	background: #444;
	color: #fff;
	margin: 0 0 20px;
	padding: 15px 15px 12px;
}

.policy-page__text,
.policy-page__list-item {
	line-height: 1.7;
}

.policy-page__text--small-gap,
.policy-page__list-item {
	margin-bottom: 10px;
}

.policy-page__text--medium-gap {
	margin-bottom: 20px;
}

.policy-page__text--large-gap,
.policy-page__list--large-gap {
	margin-bottom: 40px;
}

.policy-page__list-item {
	counter-increment: number;
	padding: 0 0 0 20px;
	position: relative;
}

.policy-page__list-item::before {
	content: counter(number) ". ";
	left: 0;
	position: absolute;
}

.policy-page__list-item > ul {
	counter-reset: number;
}

.policy-page__list-item > ul li {
	counter-increment: number;
	padding: 0 0 0 30px;
	position: relative;
}

.policy-page__list-item ul li::before {
	content: "(" counter(number) ")";
	left: 0;
	position: absolute;
}

@media (max-width: 480px) {
	.policy-page__title {
		font-size: 18px;
	}
}



.form-page__inner {
	margin: 0 auto;
	max-width: 760px;
	width: 100%;
}

.form-page__lead {
	background: #f1f1f5;
	border-radius: 6px;
	margin: 0 0 28px;
	padding: 22px 24px;
}

.form-page__lead p {
	font-size: 15px;
	line-height: 1.8;
}

.form-page__table {
	border: 1px solid #d8d8de;
	margin: 0 0 24px;
	width: 100%;
}

.form-page__table th,
.form-page__table td {
	border-bottom: 1px solid #d8d8de;
	font-size: 15px;
	line-height: 1.5;
}

.form-page__table th {
	background: #f7f7f9;
	color: #333;
	font-weight: 700;
	padding: 22px 16px;
	text-align: left;
	vertical-align: top;
	width: 220px;
}

.form-page__table td {
	background: #fff;
	color: #333;
	padding: 22px 18px;
	vertical-align: middle;
}

.form-page__table tr:last-child th,
.form-page__table tr:last-child td {
	border-bottom: 0;
}

.form-page__table th span {
	background: #fff;
	border: 1px solid #e50012;
	border-radius: 4px;
	color: #e50012;
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	margin: 2px 0 0;
	padding: 5px 8px;
	text-align: center;
	width: 42px;
}

.form-page__table td p {
	margin: 0;
}

.form-page__caution {
	color: #666;
	font-size: 12px;
	line-height: 1.5;
	margin-top: 7px;
}

.form-page__table td dl {
	margin: 0 0 8px;
}

.form-page__table td dl:last-child {
	margin-bottom: 0;
}

.form-page__table td dt {
	float: left;
	font-weight: 700;
	padding: 9px 0 0;
	width: 96px;
}

.form-page__table td dd {
	margin-left: 96px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea,
select {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	background: #fff;
	border: 1px solid #cfcfd6;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5;
	padding: 5px 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: #e50012;
	box-shadow: 0 0 0 3px rgba(229, 0, 18, 0.12);
	outline: none;
}

select {
	background-image: url("../images/arrowD.png");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	min-width: 190px;
	padding-right: 30px;
}

textarea {
	min-height: 180px;
	resize: vertical;
	width: 100%;
}

.form-page__table td input.inpText01 {
	max-width: 100%;
	width: 320px;
}

.form-page__table td input.inpText02 {
	width: 100%;
}

.form-page__table td input.inpText03 {
	width: 90px;
	margin-right: 5px;
}

.form-page__table td input.inpText04 {
	width: 86px;
}

.form-page__table td .YY,
.form-page__table td .MM,
.form-page__table td .DD {
	align-items: center;
	display: inline-flex;
	margin-right: 10px;
}

.form-page__table td .MM select,
.form-page__table td .DD select {
	min-width: 0;
	width: 110px;
	margin-right: 5px;
}

.form-page__table td label {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	gap: 7px;
	margin: 0 20px 0 0;
}

.form-page__table td input[type="radio"] {
	accent-color: #e50012;
}

.form-page__policy {
	background: #f7f7f9;
	border: 1px solid #e1e1e6;
	border-radius: 6px;
	color: #444;
	font-size: 13px;
	line-height: 1.7;
	margin: 0 auto 30px;
	padding: 16px 18px;
	text-align: center;
}

.form-page__policy a {
	color: #e50012;
	font-weight: 700;
	text-decoration: underline;
}

.form-page__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	text-align: center;
}

.form-page__button {
	background: #fff;
	border: 2px solid #cfcfd6;
	border-radius: 999px;
	color: #333;
	cursor: pointer;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-width: 150px;
	padding: 16px 28px;
	transition: all 0.3s ease;
}

.form-page__button--submit {
	background: #e50012;
	border-color: #e50012;
	color: #fff;
	min-width: 240px;
}

.form-page__button:hover {
	background: #f1f1f5;
}

.form-page__button--submit:hover {
	background: #fff;
	color: #e50012;
}

.form-page__error-summary,
.form-page__check-summary {
	background: #fff5f6;
	border: 1px solid rgba(229, 0, 18, 0.25);
	border-radius: 6px;
	color: #e50012;
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 24px;
	padding: 18px 20px;
}

.form-page__error-message {
	background: #fff;
	border: 1px solid #e50012;
	border-radius: 6px;
	color: #e50012;
	line-height: 1.5;
	margin: 0 auto 10px;
	padding: 12px 14px;
	text-align: center;
}

.form-page__complete {
	margin: 0 auto;
	padding: 40px 0;
}

.form-page__complete-title {
	color: #e50012;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 30px;
	text-align: center;
}

.form-page__complete-message {
	border: 2px solid #e50012;
	border-radius: 12px;
	padding: 34px;
}

.form-page__complete-message p {
	line-height: 1.8;
	margin: 0 0 10px;
}

.form-page__complete-message p:last-child {
	margin-bottom: 0;
}

.form-page__complete-action {
	text-align: center;
}

.form-page__complete-button {
	background: #e50012;
	border: 2px solid #e50012;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-width: 220px;
	padding: 16px 28px;
}

.form-page__complete-button:hover {
	background: #fff;
	color: #e50012;
}

@media (max-width: 1024px) {
	.sub-page {
		margin-left: 10px;
		margin-right: 10px;
	}

	.sub-page__main,
	.policy-page {
		width: auto;
	}
}

@media (max-width: 768px) {
	.sub-page {
		padding: 40px 0 70px;
	}

	.sub-page__title h1 {
		font-size: 26px;
	}

	.sub-page__main,
	.policy-page {
		padding: 40px 30px;
	}

	.form-page__table th {
		width: 180px;
	}

	.form-page__table td dt {
		float: none;
		padding: 0 0 6px;
		width: 100%;
	}

	.form-page__table td dd {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.sub-page__title-inner {
		padding: 15px;
	}

	.sub-page__return {
		text-align: left;
	}

	.sub-page__main,
	.policy-page {
		border-radius: 10px;
		padding: 30px 15px;
	}

	.form-page__lead {
		padding: 18px;
	}

	.form-page__table th,
	.form-page__table td {
		display: block;
		width: 100%;
	}

	.form-page__table th {
		padding: 14px 64px 14px 14px;
		position: relative;
	}

	.form-page__table th span {
		margin: 0;
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
	}

	.form-page__table td {
		padding: 16px 14px;
	}

	.form-page__table tr:last-child th {
		border-bottom: 1px solid #d8d8de;
	}

	.form-page__table td input.inpText01,
	.form-page__table td input.inpText02 {
		width: 100%;
	}

	.form-page__table td label {
		display: flex;
	}

	.form-page__actions {
		align-items: center;
		flex-direction: column-reverse;
	}

	.form-page__button {
		width: min(100%, 320px);
	}
}

@media (max-width: 480px) {
	.sub-page__title h1 {
		font-size: 22px;
	}

	.form-page__lead p,
	.form-page__table th,
	.form-page__table td {
		font-size: 14px;
	}

	.form-page__table td .YY,
	.form-page__table td .MM,
	.form-page__table td .DD {
		display: flex;
		justify-content: center;
		margin: 0 0 8px;
		width: 100%;
	}

	.form-page__table td input.inpText03 {
		width: 150px;
	}

	.form-page__table td .DD {
		margin-bottom: 0;
	}

	.form-page__table td .MM select,
	.form-page__table td .DD select {
		min-width: 0;
		width: 150px;
	}

	.form-page__table td input.inpText04 {
		width: 69px;
	}

	.form-page__policy {
		text-align: left;
	}

	.form-page__complete {
		padding: 20px 0;
	}
	
	.form-page__complete-title {
		font-size: 24px;
	}

	.form-page__complete-message {
		padding: 22px;
	}
}



/* footer
---------------------------------- */
.site-footer__inner {
	margin: 0 auto;
	max-width: 1200px;
	padding: 60px 0;
}

.site-footer {
	background: #232a34;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	padding: 40px 0;
}

.site-footer__address img {
	display: inline-block;
	height: auto;
	margin: 0 0 20px;
	max-width: 100%;
	width: 200px;
}

.site-footer__address p {
	color: #fff;
	font-size: 13px;
}

.site-footer__links {
	display: flex;
	justify-content: flex-end;
}

.site-footer__link-list {
	min-width: 140px;
}

.site-footer__link-list ul {
	font-size: 0;
}

.site-footer__link-list li {
	line-height: 2.4;
}

.site-footer__link-list li a {
	color: #fff;
	font-size: 12px;
}

.site-footer__copyright {
	color: #ddd;
	display: block;
	font-size: 10px;
	padding: 8px 0;
	text-align: center;
}

@media (max-width: 1200px) {
	.site-footer__inner {
		margin: 0 10px;
	}
}

@media (max-width: 480px) {
	.site-footer__inner {
		padding: 40px 0;
	}

	.site-footer__inner {
		display: block;
		padding: 40px 0;
	}

	.site-footer__address {
		margin: 0 0 20px;
	}

  .site-footer__address img{
    width: 150px;
  }

	.site-footer__links {
		display: block;
	}

	.site-footer__link-list {
		min-width: 0;
	}

	.site-footer__link-list li {
		line-height: 1.6;
	}

	.site-footer__link-list li a {
		border: 1px solid #ccc;
		border-radius: 4px;
		display: block;
		padding: 8px;
		text-align: center;
	}

  .site-footer__link-list li:first-child {
    margin: 0 0 10px;
  }
}
