@charset "UTF-8";

/* ヘッダー */

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	font-size: 16px;
	font-weight: 500;
}

.sp_menu>div {
	display: none;
}

header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 3;
}

header nav {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-top: 24px;
}

header nav ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	width: 768px;
}

header nav li {
	border-left: 1px solid #000;
}

header nav li:last-child {
	border-right: 1px solid #000;
}

header nav li a {
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 16px 0 18px;
	width: 100%;
	position: relative;
	z-index: 2;
}

header nav li {
	position: relative;
	overflow: hidden;
}

header nav li::before,
footer li.contact-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 101%;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	background: #3CCDF2;
}

header nav li:hover::before,
footer li.contact-btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

header nav li.contact-btn {
	background: #FFCC00;
}

header nav li.contact-btn a:hover,
header nav li.contact-btn a:hover svg path,
footer li.contact-btn a:hover,
footer li.contact-btn a:hover svg path {
	color: #fff;
	stroke: #fff;
}

header nav li.contact-btn::before,
footer li.contact-btn::before {
	background: #000;
}

/* タイトル */
.title-wrap {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 100%;
}

.title-wrap.lower-page {
	border-top: none;
}

.title {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	padding: 16px 56px 15px;
}

.title span {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: .05em;
	margin-left: 15px;
}

/* ボタン */
.btn {
	background: #FFCC00;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 2.1;
	letter-spacing: .05em;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.btn span,
.btn svg {
	position: relative;
	z-index: 2;
}

.btn:hover {
	color: #fff;
}

.btn:hover svg path {
	stroke: #fff;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 101%;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	background: #000;
}

.btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/* アコーディオン */
.accordions {
	margin: 48px auto;
	width: 90%;
	max-width: 1132px;
}

.accordion {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 74px;
}

.accordion > div {
	position: relative;
}

.accordion__button {
	appearance: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.14;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	width: 100%;
	background: #FFCC00;
	border: 1px solid #000;
	color: #000;
	padding: 18px 1em 16px;
}

.accordion > div:hover .accordion__body {
	transform: scaleY(1);
}

.accordion__body {
	/*height: 0;*/
	transform: scaleY(0);
    transform-origin: center top;
	overflow: hidden;
	transition: all 0.5s;
	position: absolute;
	width: 100%;
	z-index: 3;
}

.accordion__body ul {
	position: relative;
	z-index: 2;
}

.accordion__body a {
	border-top: 1px dashed #000;
	color: #000;
	display: block;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.14;
	text-align: center;
	position: relative;
	padding: 17px;
	z-index: 2;
}

.accordion__body li {
	background: #fff;
	position: relative;
}

.accordion__body li:first-child a {
	border-top: none;
}

.accordion__body li::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #E0E0E0;
}

.accordion__body li:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/* セミナー表示 */
.seminar {
	margin: 0 auto;
	max-width: 1440px;
}

.archive-title {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	font-size: 25px;
	letter-spacing: .05em;
	line-height: 1.6;
	text-align: center;
	padding: 12px 0;
	margin-bottom: 1px;
}

.archive .seminar article {
	border-top: none;
}

.seminar .col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.seminar article {
	background: #fff;
	border: 1px solid #000;
	margin-top: -1px;
	margin-left: -1px;
	position: relative;
}

.seminar article::after {
	content: "";
	background: url(../img/plus.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 21px;
	right: 21px;
	width: 32px;
	height: 32px;
	transition: .8s;
}

.seminar article:has(a:hover)::after {
	transform: rotate(180deg);
}

.seminar article a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.seminar article:has(a:hover) img {
	transform: scale(1.1);
	transition: .5s all;
}

.seminar article .container {
	position: relative;
	width: 100%;
	max-width: clamp(100px, 25vw, 373px);
	margin: 53px auto;
}

.seminar article .thumb {
	border: 1px solid #000;
	box-sizing: border-box;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.seminar article .situation {
	background: #000;
	border: 1px solid #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 61px;
}

.seminar article p {
	font-size: clamp(13px, .97vw, 14px);
	font-weight: 500;
	letter-spacing: .05em;
	padding: 0 clamp(10px, 2.84vw, 40px);
}

.seminar article .day {
	font-size: clamp(13px, 2vw, 30px);
	font-weight: bold;
	letter-spacing: .08em;
}

.seminar article .week {
	font-size: clamp(13px, 1.38vw, 20px);
	margin-left: .5em;
}

.seminar article .cat-name {
	background: #FFCC00;
	color: #000;
	font-size: clamp(13px, 1.1vw, 16px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 61px;
	text-align: center;
	padding: 0;
	width: clamp(50px, 7.5vw, 108px);
	height: 100%;
}

.seminar article .cat-name.closed {
	background: #3CCDF2;
}

.seminar article img {
	max-width: 373px;
	width: 100%;
	object-fit: contain;
	object-position: top;
	transition: .5s all;
}

.seminar article h3 {
	font-size: clamp(13px, 1.1vw, 16px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.875;
	margin-top: 13px;
}

.seminar .btn {
	margin: 60px auto 0;
	width: 90%;
	max-width: 481px;
	padding: 18px 0 16px;
	gap: 11px;
}

@media screen and (max-width:944px) {
	.seminar .col {
		grid-template-columns: repeat(2, 1fr);
	}

	.seminar article .container {
		max-width: clamp(200px, 38vw, 367px);
	}

	.seminar article p {
		font-size: clamp(13px, 1.48vw, 14px);
	}

	.seminar article .day {
		font-size: clamp(13px, 3.17vw, 30px);
	}

	.seminar article .week {
		font-size: clamp(13px, 2.11vw, 20px);
	}

	.seminar article .cat-name,
	.seminar article h3 {
		font-size: clamp(13px, 1.69vw, 16px);
	}

	.seminar article .cat-name {
		width: clamp(50px, 11vw, 108px);
	}
}

/* ページャー */
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 68px auto;
}

.nav-links .page-numbers {
	background: #fff;
	border: 1px solid #000;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	transition: .3s;
}

.nav-links .page-numbers.current {
	background: #FFCC00;
}

.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
	background: none !important;
	border: none;
	width: auto;
    height: auto;
}

.nav-links a.page-numbers:hover {
	background: #ccc;
}

/* フッター */
footer {
	background: #fff;
	border-top: 1px solid #000;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 62px 54px 60px;
}

footer ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

footer li a {
	color: #000;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: .2s;
}

footer li a:hover,
footer li a:hover svg path {
	color: #FFCC00;
	stroke: #FFCC00;
}

footer li {
	margin-left: clamp(60px, 7.91vw, 114px);
}

footer li:first-child {
	margin-left: 0;
}

footer li.contact-btn {
	background: #FFCC00;
	position: relative;
	margin-left: clamp(40px, 5.69vw, 82px);
}

footer li.contact-btn a {
	border: 1px solid #000;
	box-sizing: border-box;
	padding: 18px 50px 16px;
	position: relative;
	z-index: 2;
}

footer p {
	text-align: right;
	margin-top: 50px;
}

footer p a,
footer p small {
	color: #000;
	display: block;
	font-size: 13px;
	line-height: 2.3;
	letter-spacing: .05em;
}

/* お問い合わせ・各種セミナーフォーム */
.mw_wp_form_input {
	margin-bottom: 33px;
}

.contact-p {
	color: #747474;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
	text-align: center;
	margin-top: 40px;
}

.contact-wrap:has(.mw_wp_form_confirm) .contact-p,
.contact-wrap:has(.mw_wp_form_complete) .contact-p {
	display: none;
}

.contact-wrap {
	margin: 0 auto;
	width: 90%;
	max-width: 910px;
}

.contact-table {
	margin: 54px auto 24px;
	width: 100%;
}

.contact-table tbody {
	width: 100%;
}

.contact-table tr {
	display: block;
	margin-top: 23px;
}

.contact-table tr:first-child {
	margin-top: 0;
}

.contact-table th,
.contact-table td {
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
	text-align: left;
}

.contact-table th:has(.required) {
	display: flex;
	align-items: center;
	gap: 11px;
}

.required {
	background: #D40000;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	padding: 4px 8px;
	white-space: nowrap;
}

.contact-table td:has(span) {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 46px;
}

.contact-table td span input[type="text"] {
	width: 260px;
}

.contact-table td:has(.mwform-radio-field) {
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	display: flex;
	gap: 8px 38px;
	flex-wrap: wrap;
	padding: 26px 34px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	background-color: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	padding: 10px 27px;
	resize: vertical;
    width: 100%;
}

.consent {
	display: flex;
    align-items: baseline;
    gap: 13px;
}

.consent p,
.consent label {
	font-size: 16px;
	font-weight: 500 !important;
	letter-spacing: .05em;
	line-height: 2.5;
}

.consent .check {
	margin-top: 13px;
}

.consent .check .mwform-checkbox-field-text {
	padding-left: 45px;
	position: relative;
}

.consent .check input[type="checkbox"] {
	display: none;
}

.consent .check .mwform-checkbox-field-text::before {
	content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: block;
    background: #fff;
    border: 1px solid #000;
    width: 31px;
    height: 31px;
}

.consent .check .mwform-checkbox-field-text::after {
	content: "";
}

.mwform-checkbox-field > label input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
	width: 10px;
    height: 15px;
    transform: translateY(-50%) rotate(45deg);
    top: 12px;
    left: 10px;
    border: none;
    border-right: 2px solid #D40000;
    border-bottom: 2px solid #D40000;
    content: '';
    display: block;
    position: absolute;
    transition: .1s;
}

.btn-submit {
	background: transparent;
	border: none;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.14;
	padding: 0;
    position: relative;
    z-index: 2;
	appearance: none;
	-webkit-appearance: none;
	color: #000;
}

/* ios safari fix */
input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	color: #000;
}

.form-btn {
	background: #FFCC00;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
    padding: 18px 50px 16px;
    position: relative;
	margin: 54px auto 0;
	width: max-content;
}

.form-btn::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #3CCDF2;
}

.form-btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.form-btn::after {
	content: url(../img/plus-contact_b.svg);
	display: block;
	position: relative;
	z-index: 2;
}

/* 確認画面 */

.mw_wp_form_confirm .contact-table td:has(span) {
	gap: 0 1em;
}

.mw_wp_form_input .fix {
	display: none;
}

.btn-back {
	background: transparent;
	border: none;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.14;
	padding: 0;
    position: relative;
    z-index: 2;
}

.fix {
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
    padding: 18px 50px 16px;
    position: relative;
	margin: 0;
	width: max-content;
}

.fix::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #3CCDF2;
}

.fix:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.fix::after {
	content: url(../img/plus-contact_b.svg);
	display: block;
	position: relative;
	z-index: 2;
}

.contact-wrap:has(.mw_wp_form_confirm) > div {
	background: #fff;
	border: 1px solid #000;
	padding: 30px 32px 80px;
	margin-bottom: 92px;
}

.confirm-title {
	display: none;
}

.contact-wrap:has(.mw_wp_form_confirm) .confirm-title {
	display: block;
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	text-align: center;
	margin: 40px auto;
}

.mw_wp_form_confirm .required {
	display: none;
}

.mw_wp_form_confirm th {
	color: #747474;
}

.mw_wp_form_confirm tr {
	border-bottom: 1px solid #747474;
	padding-bottom: 16px;
}

.mw_wp_form_confirm .btn-submits {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin: 70px auto 0;
}

.mw_wp_form_confirm .consent {
	display: none;
}

.mw_wp_form_confirm .form-btn {
	margin: 0;
}

/* 完了画面 */

.completed-wrap h1 {
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	text-align: center;
	margin: 32px auto 38px;
}

.completed {
	background: #fff;
	border: 1px solid #000;
	text-align: center;
	padding: 69px 13px 72px;
}

.completed p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
}

.completed > div {
	background: #E0E0E0;
	padding: 23px 0;
	width: 100%;
	max-width: 464px;
	margin: 60px auto 0;
}

.completed > div b {
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 1.2;
}

.completed-wrap > p {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2;
	margin-top: 38px;
}

.completed-wrap > ul {
	margin-top: 24px;
}

.completed-wrap > ul li {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2;
}

.completed-wrap .btn {
	padding: 16px 40px;
	margin: 72px auto;
	width: max-content;
}

/* spサイズ */

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

	/* ヘッダー */
	header {
		background: #fff;
	}

	.logo {
		display: block;
		margin-left: 29px;
		height: auto;
		position: relative;
		z-index: 3;
	}

	.sp_menu {
		border-bottom: 1px solid #000;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 3;
	}

	.sp_menu>div {
		display: flex;
	}

	.sp_menu>div a {
		background: #fff;
		border-left: 1px solid #000;
		display: block;
		width: 64px;
		height: 56px;
		position: relative;
		z-index: 3;
	}

	.sp_menu>div a svg {
		position: absolute;
		top: 13px;
		left: 50%;
		transform: translateX(-50%);
	}

	header nav li {
		border: none;
	}

	header nav li a {
		border-bottom: 1px dashed #000;
		padding: 22px 0 20px;
	}

	header nav li.contact-btn {
		margin-top: 16px;
	}

	header nav li.contact-btn a {
		border: 1px solid #000;
	}

	/* ハンバーガーメニュー */
	header nav {
		border-top: none;
		position: fixed;
		right: -100%;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		transition: ease .4s;
		margin-top: 0;
		overflow-x: hidden;
	}

	.hamburger-switch {
		cursor: pointer;
		background: #FFCC00;
		border: none;
		border-left: 1px solid#000;
		box-sizing: border-box;
		display: block;
		width: 64px;
		height: 56px;
		padding: 0;
		position: relative;
		z-index: 3;
	}

	.hamburger-switch span {
		width: 24px;
		height: 2px;
		background: #000;
		position: absolute;
		left: 50%;
		transform: translatex(-50%);
		transition: .3s;
	}

	.hamburger-switch span:nth-child(1) {
		top: 21px;
	}

	.hamburger-switch span:nth-child(2) {
		top: 28px;
	}

	.hamburger-switch span:nth-child(3) {
		top: 35px;
	}

	.input-hidden {
		display: none;
	}

	/* open */

	.gnav {
		background: #fff;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		min-height: -webkit-fill-available;
		z-index: 2;
		transition: .3s;
		overflow-x: hidden;
	}

	.hamburger-open .gnav {
		right: 0;
	}


	.hamburger-open .hamburger-switch {
		background: #000;
	}

	.hamburger-open .hamburger-switch span {
		background: #fff;
	}

	.hamburger-open .hamburger-switch span:nth-child(1) {
		top: 30px;
		transform: translatex(-50%)rotate(35deg);
	}

	.hamburger-open .hamburger-switch span:nth-child(2) {
		opacity: 0;
	}

	.hamburger-open .hamburger-switch span:nth-child(3) {
		top: 30px;
		transform: translatex(-50%)rotate(-35deg);
	}

	header nav ul {
		display: block;
		box-sizing: border-box;
		margin-top: 56px;
		padding: 0 24px;
		width: 100%;
	}

	/* タイトル */
	.title {
		padding: 11px 24px;
	}

	.title h1,
	.title h2,
	.title p {
		position: relative;
	}

	.title h2 span {
		top: -8px;
	}

	.title a {
		font-size: 14px;
		gap: 7px;
	}

	.title span {
		font-size: 13px;
		font-weight: 400;
		line-height: 2.3;
		position: absolute;
		top: -3px;
		left: 0;
		margin-left: 26px;
	}

	/* フッター */

	footer {
		align-items: center;
		flex-flow: column;
		gap: 38px;
		padding: 28px 24px 34px;
	}

	footer div,
	footer ul,
	footer li,
	footer li a {
		width: 100%;
	}

	footer ul {
		flex-flow: column;
	}

	footer li,
	footer li.contact-btn {
		margin-left: 0;
	}

	footer li a {
		border-bottom: 1px dashed #000;
		padding: 22px 0 20px;
		justify-content: center;
	}

	footer li.contact-btn {
		margin-top: 30px;
	}

	footer p {
		display: flex;
		justify-content: center;
		gap: 40px;
		margin-top: 30px;
	}

	/* seminar */

	.seminar .col {
		grid-template-columns: repeat(1, 1fr);
	}

	.archive .seminar article {
		border-top: 1px solid #000;
	}

	.archive .seminar article:first-child {
		border-top: none;
	}

	.seminar article .container {
		max-width: clamp(200px, 77vw, 367px);
		margin: 42px auto;
	}

	.seminar article::after {
		bottom: 16px;
		right: 16px;
		width: 25px;
		height: 25px;
	}

	.seminar article .cat-name {
		width: 84px;
	}

	.seminar article p {
		font-size: clamp(13px, 3.72vw, 14px);
		padding: 0 clamp(12px, 3.19vw, 30px);
	}

	.seminar article .day {
		font-size: clamp(13px, 7.97vw, 30px);
	}

	.seminar article .week {
		font-size: clamp(13px, 5.31vw, 20px);
	}

	.seminar article .cat-name,
	.seminar article h3 {
		font-size: clamp(13px, 4.25vw, 16px);
	}

	.seminar .btn {
		margin: 16px auto 0;
	}

	/* アコーディオン */
	.accordions {
		margin: 22px auto;
	}
	.accordion {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
	}

	/* ページャー */
	.nav-links {
		margin: 46px auto;
	}

	/* お問い合わせ・各種セミナー */

	.contact-table {
		margin: 34px auto 24px;
	}

	.contact-p {
		font-size: 15px;
		line-height: 2;
	}

	.contact-table td:has(.mwform-radio-field) {
		align-items: baseline;
		flex-flow: column;
		padding: 26px 15px 32px;
	}

	.contact-table td:has(span) {
		flex-flow: column;
		gap: 23px;
	}

	.contact-table td span input[type="text"] {
		width: 100%;
	}

	/* 確認画面 */

	.mw_wp_form_confirm .contact-table td:has(span) {
		flex-flow: row;
	}

	.mw_wp_form_confirm .btn-submits {
		flex-flow: column-reverse;
		gap: 16px;
		margin: 63px auto 0;
	}

	.mw_wp_form_confirm .form-btn,
	.mw_wp_form_confirm .fix {
		width: 100%;
		max-width: 192px;
	}

	/* 完了画面 */

	.completed {
		padding: 24px;
	}

	.completed-wrap h1 {
		margin: 18px auto 16px;
	}

	.completed-wrap > p {
		margin-top: 27px;
	}

	.completed > div {
		margin: 0 auto;
	}

	.completed-wrap > ul {
		margin-top: 40px;
	}

	.completed-wrap .btn {
		margin: 50px auto 75px;
	}
}