@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&display=swap');


:root {
	--red-1: #D54E48;
	--red-2: #DF5349;

	--blue-1: #21ADB8;
	--blue-2: #E8F7F8;
	--blue-3: #DBF0F0;
	--blue-4: #45C0C9;
	--blue-5: #F7F8F8;

	--gray-1: #E2E2E2;

	--tx: #2F2F2F;
	--link: #0b57d0;
	--font-family-base: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}

* {
	font-family: var(--font-family-base);
}

*,
::before,
::after {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	/* font-size: 16px; */
	box-sizing: border-box;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	scroll-behavior: smooth;
	line-height: 1.2;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-size: 1.6rem;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	box-sizing: border-box;
	position: relative;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	min-width: 320px;
	overflow-x: hidden;
	color: var(--tx);
}

input,
textarea {
	margin: 0px;
	padding: 0px;
	background: none;
	border: none;
	border-radius: 0px;
	font-size: 1.6rem;
	font-family: var(--font-family-base);
}

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

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0px;
	width: 100%;
}

a {
	text-decoration: none;
	background-color: transparent;
	word-break: break-all;
	transition: all 0.2s ease 0s;
	position: relative;
	color: var(--tx);
}

a.tx-link {
	color: var(--link);
	text-decoration: underline;
}

a.tx-link:hover {
	color: var(--tx);
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
	height: auto;
	border-style: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0px;
	appearance: none;
}

/*----------------------
共通
-----------------------*/
body.no_scroll {
	overflow: hidden;
}

.pc_br {
	display: block;
}

.sp_br {
	display: none;
}

@media screen and (max-width: 750px) {
	.pc_br {
		display: none;
	}

	.sp_br {
		display: block;
	}
}

/*---------- btn ----------*/
.btn-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px auto 0;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	max-width: 260px;
	min-width: 240px;
	padding: 1em 2.3em;
	border-radius: 5px;
	color: #fff;
	position: relative;
	background-color: var(--blue-1);
	box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
}

.btn::after {
	content: "";
	width: 1em;
	height: 1em;
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/chevron-right-white.png);
}

.btn:hover {
	box-shadow: 0px 0px 0px #82909a00;
	transform: translate(0, 3px);
	filter: hue-rotate(-5deg);
	-webkit-filter: hue-rotate(-5deg);
}

.btn-black {
	background-color: var(--tx);
}

.btn-red {
	background-color: var(--red-1);
}

.btn-cta span {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1px 1.2em;
	font-size: 1.2rem;
	color: var(--blue-1);
	background-color: #fff;
	border: solid 2px var(--blue-1);
	border-radius: 5rem;
}

.btn-cta::before {
	content: "";
	width: 1.1em;
	height: 1.1em;
	display: block;
	margin-right: 0.5em;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/book-opened.png);
}

/*---------- tx ----------*/
.tx-red {
	color: var(--red-2);
}

.tx-blue {
	color: var(--blue-1);
}

.tx-large {
	font-size: 1.5em;
}

.tx-small {
	font-size: 0.8em;
}

.tx-r {
	text-align: right;
}

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

.tx-l {
	text-align: left;
}

.lead {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.main {
	height: auto;
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: calc(100vh - 15px);
	min-height: calc(100svb - 125px);
	overflow-x: hidden;
}

.col-2 .main {
	width: calc(100% - 300px);
}

.max-w {
	max-width: 1066px;
	padding-left: 73px;
	padding-right: 73px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1080px) {
	.col-2 .main {
		width: 100%;
	}
}

/*--------------------------------------
header
--------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color: #fff;
	border-bottom: solid 1px #E8F7F8;
}

.header-wrap {
	display: flex;
}

.header-wrap {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 2rem;
}

header .logo {
	display: block;
	width: 15rem;
}

header .head-r {
	display: flex;
}

header .head-r a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
}

header .head-r .menu-link {
	width: 15rem;
	height: 6rem;
}

header .menu-link:hover {
	color: var(--blue-1);
	background-color: var(--blue-2);
}

header .menu-doc,
header .menu-contact {
	width: 14rem;
	height: 4.5rem;
	margin: 0 0.6rem;
	border-radius: 5px;
	align-self: center;
	color: #fff;
	box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.16);
}

header .menu-doc {
	background-color: var(--blue-1);
}

header .menu-contact {
	background-color: var(--tx);
}

header .menu-doc:hover,
header .menu-contact:hover {
	/* background-color: var(--blue-4); */
	box-shadow: 0px 0px 0px #82909a00;
	transform: translate(0, 3px);
	filter: hue-rotate(-5deg);
	-webkit-filter: hue-rotate(-5deg);
}

header .menu-doc::before,
header .menu-contact::before {
	content: "";
	width: 1.1em;
	height: 1.1em;
	display: block;
	margin-right: 0.5em;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

header .menu-doc::before {
	background-image: url(../img/book-opened.png);
}

header .menu-contact::before {
	background-image: url(../img/envelope-alt.png);
}

/* ハンバーガボタン */
.hm-btn {
	display: none;
	width: 50px;
	height: 50px;
	margin: 0;
	cursor: pointer;
	position: relative;
	/* top: 0; */
	/* right: 0; */
	background-color: var(--blue-1);
}

.hm-btn div {
	width: 24px;
	height: 3px;
	position: absolute;
	left: 14px;
	background-color: #ffffff;
	transition: transform 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}

.hm-btn div:nth-child(1) {
	top: calc(50% - 11px);
}

.hm-btn div:nth-child(2) {
	top: calc(50% - 2px);
}

.hm-btn div:nth-child(3) {
	top: calc(50% + 7px);
}

header.open .hm-btn div:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}

header.open .hm-btn div:nth-of-type(2) {
	opacity: 0;
}

header.open .hm-btn div:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
	top: calc(100% - 17px);
}

@media screen and (max-width: 1280px) {
	header .head-r .menu-link {
		width: auto;
		padding: 0.5em 1em;
	}
}

@media screen and (max-width: 1080px) {
	.header-wrap {
		height: 50px;
	}

	header .head-r .menu-link {
		width: auto;
		padding: 0.5em 1em;
		height: 5rem;
	}

	header .head-r a {
		font-size: 1.4rem;
	}

	header .menu-doc,
	header .menu-contact {
		width: 12rem;
		height: 3.8rem;
	}

}

@media screen and (max-width: 750px) {
	.header-wrap {
		padding-left: 1rem;
	}

	header .logo {
		width: 13rem;
	}

	.hm-btn {
		display: block;
	}

	header .head-r {
		display: block;
		width: 100%;
		height: calc(100vh - 50px);
		height: calc(100svb - 50px);
		position: absolute;
		top: 100%;
		left: 0;
		padding: 20px;
		transform: translate(100%, 0);
		transition: all 0.2s;
		z-index: -1;
		justify-content: center;
		background-color: #fff;
	}

	header .head-r .menu-link {
		border-bottom: solid 1px var(--blue-3);
	}

	header .menu-doc,
	header .menu-contact {
		width: 100%;
		height: 5rem;
		margin-top: 20px;
	}

	header.open .head-r {
		transform: translate(0, 0);
	}
}

/*--------------------------------------
footer
--------------------------------------*/
footer {
	width: 100%;
	position: relative;
	z-index: 51;
	padding: 40px 0px 30px;
	border-radius: 40px 40px 0 0;
	background-color: var(--tx);
}

.col-2 footer {
	width: calc(100% - 300px);
}

.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.footer-logo {
	color: #fff;
	font-size: 2.0rem;
	font-weight: 700;
	flex-shrink: 0;
}

.copyright {
	font-size: 1.2rem;
	font-weight: 400;
}

.footer-links {
	width: calc(100% - 200px);
	display: flex;
	flex-wrap: wrap;
	gap: 14px 30px;
}

.footer-links a {
	font-size: 1.3rem;
	color: #C6D9DB;
}

.footer-links a:hover {
	color: var(--blue-1);
}

@media screen and (max-width: 1080px) {
	.col-2 footer {
		width: 100%;
	}
}

@media screen and (max-width: 750px) {
	footer {
		border-radius: 30px 30px 0 0;
	}
}

@media screen and (max-width: 540px) {
	.footer-wrap {
		display: block;
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.footer-links {
		width: 100%;
	}
}

/*--------------------------------------
to_top
--------------------------------------*/
.to_top {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 80;
	background-color: #5CC7CF;
	background-image: url(../img/chevron-up-white.png);
	background-size: 13px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 5px 0 0 0;
}

.col-2 .to_top {
	right: 300px;
}

.to_top:hover {
	background-color: var(--blue-1);
}

@media screen and (max-width: 1080px) {
	.col-2 .to_top {
		right: 0;
	}
}

@media screen and (max-width: 500px) {
	.to_top {
		width: 40px;
		height: 40px;
	}
}

/*--------------------------------------
bnr-btn
--------------------------------------*/
.bnr-btn {
	display: none;
	position: fixed;
	bottom: 60px;
	right: 0;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 190px;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 1em 2em 0.8em 2em;
	text-align: center;
	border-radius: 5px 0 0 5px;
	background-color: var(--blue-1);
	z-index: 50;
}

.bnr-btn:hover {
	filter: hue-rotate(-5deg);
	-webkit-filter: hue-rotate(-5deg);
}

.bnr-btn::before {
	content: "";
	margin-right: 10px;
	width: 1.1em;
	height: 1.1em;
	background-image: url(../img/book-opened.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.bnr-btn span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 80%;
	padding: 1px 1px 2px;
	font-size: 1.2rem;
	color: var(--blue-1);
	border: solid 2px var(--blue-1);
	background-color: #fff;
	border-radius: 5rem;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 1080px) {
	.bnr-btn {
		display: flex;
	}
}

@media screen and (max-width: 500px) {
	.bnr-btn {
		font-size: 1.5rem;
		padding: 0.9em 2em 0.7em 2em;
		bottom: 50px;
	}
}

/*--------------------------------------
table-wrap
--------------------------------------*/
.table-wrap table {
	width: 100%;
	border-bottom: solid 1px var(--blue-2);
}

.table-wrap tr {
	border-top: solid 1px var(--blue-2);
}

.table-wrap th {
	text-align: left;
	background-color: var(--blue-3);
}

.table-wrap th,
.table-wrap td {
	padding: 13px 20px;
}

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

	.table-wrap table,
	.table-wrap tbody,
	.table-wrap tr,
	.table-wrap th,
	.table-wrap td {
		display: block;
		width: 100%;
	}

	.table-wrap th,
	.table-wrap td {
		font-size: 1.5rem;
		padding: 10px 16px;
	}
}

/*--------------------------------------
faq
--------------------------------------*/
.faq-wrap {
	max-width: 730px;
	margin: auto;
}

.faq-item {
	background-color: #fff;
	border-radius: 5px;
	border: solid 1px var(--gray-1);
}

.faq-item+.faq-item {
	margin-top: 10px;
}

.faq-q {
	width: 100%;
	position: relative;
	padding: 15px 50px 15px 50px;
	cursor: pointer;
	transition: all 0.2s;
}

.faq-q p {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.3;
}

.faq-q:hover {
	background-color: var(--blue-2);
}

.faq-q::before,
.faq-q::after,
.faq-a::before {
	content: "";
	width: 1.8rem;
	height: 1.8rem;
	position: absolute;
	left: 18px;
	top: 17px;
	font-size: 23px;
	margin-right: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.faq-q::before {
	background-image: url(../img/ic_q.png);
}

.faq-a::before {
	background-image: url(../img/ic_a.png);
}

.faq-q::after {
	transform-origin: center;
	top: 50%;
	left: auto;
	right: 14px;
	transform: translate(0, -50%) rotate(0deg);
	transition: all 0.2s;
}

.faq-q::after {
	background-image: url(../img/chevron-down.png);
}

.faq-q.is-active::after {
	transform: translate(0, -50%) rotate(180deg);
}

.faq-a {
	display: none;
	font-size: 14px;
	position: relative;
	padding: 15px 15px 15px 50px;
	border-top: solid 1px var(--gray-1);
}

.faq-a p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.faq-a {
		font-size: 14px;
	}
}

@media screen and (max-width: 500px) {
	.faq-q {
		padding: 10px 42px 12px 40px;
	}

	.faq-a {
		padding: 10px 20px 15px 40px;
	}

	.faq-q::before,
	.faq-a::before {
		font-size: 16px;
		left: 11px;
		top: 11px;
	}

	.faq-q p {
		font-size: 15px;
	}
}

/*--------------------------------------
side-form 
--------------------------------------*/
.side-form {
	width: 300px;
	height: calc(100vh - 60px);
	height: calc(100svb - 60px);
	position: fixed;
	top: 60px;
	right: 0;
	overflow-y: scroll;
}

.form-bg {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 0;
	cursor: pointer;
}

.form-wrap {
	width: 100%;
	height: auto;
	border-left: solid 1px #E8F7F8;
	background-color: #fff;
	z-index: 1;
	padding: 20px;
}

.form-wrap .tit {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--blue-1);
	padding-bottom: 2.2rem;
	margin-bottom: 15px;
	background-image: url(../img/tit_line.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 240px;
}

.form-close {
	display: none;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
	background-image: url(../img/close.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.side-form .form-item-wrap {
	margin: 0;
}

.side-form p {
	font-size: 1.3rem;
	margin-top: 1.5em;
}

@media screen and (max-width: 1080px) {
	.side-form {
		display: none;
		width: 100%;
		height: 100vh;
		height: 100svb;
		top: 0;
		right: auto;
		left: 0;
		z-index: 100;
		overflow: hidden;
	}

	.side-form.open {
		display: block;

	}

	.form-bg {
		display: block;
	}

	.form-close {
		display: block;
	}

	.form-wrap {
		overflow-y: scroll;
		position: absolute;
		top: 50%;
		left: 50%;
		width: calc(100% - 40px);
		max-width: 480px;
		max-height: 90vh;
		max-height: 90svb;
		border-radius: 10px;
		padding: 30px 20px 30px;
		transform: translate(-50%, -50%);
	}
}

/*--------------------------------------
form-parts 
--------------------------------------*/
.tx-guide {
	color: #898989;
	font-size: 1.3rem;
	margin-top: 6px;
	width: 100%;
}

/* 入力パーツ系 */
.form-item-wrap {
	max-width: 600px;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 10px;
}

.form-disabled {
	background-color: #fff;
}

.form-item {
	width: 100%;
}

.form-item.col-2 {
	width: calc((100% - 10px) / 2);
}

.form-item-tit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--gray-106);
}

.form-item-tit+.inputArea,
.inputArea+.inputArea {
	margin-top: 6px;
	line-height: 1.2;
}

.inputArea+.form-item-tit {
	margin-top: 12px;
}

.inputArea[data-col="2"] input {
	width: calc(50% - 5px);
}

.inputArea[data-col="3"] input {
	width: calc((100% - 8px) / 3);
}

.form-item-tit .form-req+span,
.form-item-tit .form-any+span {
	width: calc(100% - 3.5em);
}

.form-item .tx-error {
	color: var(--red-1);
	font-size: 1.3rem;
}

/* 入力パーツ系：必須/任意 */
.form-req,
.form-any {
	display: block;
	width: 4em;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 3px;
	padding: 3px 5px;
}

.form-req {
	background-color: var(--blue-2);
	color: var(--blue-1);
}

.form-any {
	background-color: var(--gray-1);
}

.inputArea {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

/* 入力パーツ系：テキスト */
input::placeholder,
textarea::placeholder {
	color: #C6C7D4;
}

input:placeholder-shown,
textarea:placeholder-shown,
input:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
	background-color: #fff;
	border: solid 1px #C6C7D4;
}

input:disabled {
	background-color: #fff;
	cursor: default;
}

input {
	width: 100%;
	font-size: 1.6rem;
	border-radius: 2px;
	padding: 0.4em 0.8em;
}

textarea {
	width: 100%;
	min-height: 140px;
	font-size: 16px;
	border-radius: 2px;
	padding: 0.4em 0.8em;
	resize: vertical;
}

/* 入力パーツ系：パスワード */
.password-wrap {
	width: 100%;
	display: flex;
	position: relative;
}

input[type="password"] {
	padding: 0.4em 2.6em 0.4em 0.8em;
}

.password-wrap #pass-view {
	position: absolute;
	top: 50%;
	right: 0.4em;
	font-size: 1.6em;
	color: #8ca1a5;
	transform: translate(0, -50%);
}

/* 入力パーツ系：セレクト */
.select-wrap {
	width: 100%;
	position: relative;
}

.select-wrap::after {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform-origin: center;
	top: 50%;
	right: 14px;
	transform: translate(0, -50%);
	background-image: url(../img/chevron-down.png);
}

.select-wrap select {
	appearance: none;
	outline: none;
	border: none;
	width: 100%;
	min-height: 36px;
	font-size: 16px;
	border-radius: 2px;
	padding: 0.4em 2.5em 0.4em 0.8em;
	background-color: #ffffff;
	border: solid 1px #C6C7D4;
}

/* ラジオボタン/チェックボックス -------------------------  */
.sel-btn-block {
	justify-content: flex-start;
	gap: 15px 10px;
}

.sel-btn-block label {
	width: auto;
	cursor: pointer;
}

.sel-btn-block[data-col="1"] label {
	width: 100%;
}

.sel-btn-block[data-col="1"] label+label {
	margin-top: 5px;
}

.sel-btn-block[data-col="2"] label {
	width: calc(50% - 2px);
}

.sel-btn-block[data-col="2"] label:not(:nth-of-type(1), :nth-of-type(2)) {
	margin-top: 4px;
}

.sel-btn-block[data-col="3"] label {
	width: calc((100% - 8px) / 3);
}

.sel-btn-block p {
	line-height: 1.2;
	margin: 0 !important;
}

/* ラジオボタン */
.sel-btn-block input[type="radio"] {
	display: none;
}

.radio-btn {
	display: flex;
	align-items: center;
	border-radius: 2px;
	padding: 0.4em 0.7em;
	background-color: #fff;
	border: solid 1px #C6C7D4;
}

.sel-btn-block input:checked+.radio-btn {
	border: solid 1px var(--blue-1);
	background-color: var(--blue-3);
	color: var(--blue-1);
}

.radio-btn>span {
	position: relative;
	cursor: pointer;
	line-height: 1;
	width: 20px;
	height: 20px;
	display: block;
	margin-right: 8px;
}

.radio-btn>span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	background-color: var(--gray-1);
	border-radius: 100%;
	transform: translate(0, -50%);
}

.sel-btn-block input:checked+.radio-btn>span::before {
	background-color: #fff;
}

.radio-btn>span::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 5px;
	width: 10px;
	height: 10px;
	background-color: var(--blue-1);
	border-radius: 100%;
	transform-origin: top;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: scale(0, 0) translate(0, -50%);
	transform: scale(0, 0) translate(0, -50%);
}

.sel-btn-block input:checked+.radio-btn>span::after {
	-webkit-transform: scale(1, 1) translate(0, -50%);
	transform: scale(1, 1) translate(0, -50%);
}

/* チェックボックス -------------------------  */
.sel-btn-block input[type="checkbox"] {
	display: none;
}

.ckbox-btn {
	display: flex;
	align-items: center;
	border-radius: 2px;
	padding: 0.4em 0.7em;
	background-color: #fff;
	border: solid 1px #C6C7D4;
}

.sel-btn-block input:checked+.ckbox-btn {
	border: solid 1px var(--blue-1);
	background-color: var(--blue-3);
	color: var(--blue-1);
}

.ckbox-btn>span {
	position: relative;
	cursor: pointer;
	line-height: 1;
	width: 20px;
	height: 20px;
	display: block;
	margin-right: 8px;
	border-radius: 2px;
	background-color: var(--gray-1);
}

.ckbox-btn>span::before {
	content: "";
	border-right: 5px solid #fff;
	border-bottom: 5px solid #fff;
	content: '';
	display: block;
	height: 20px;
	left: 6px;
	margin-top: -16px;
	position: absolute;
	top: 13px;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
	transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	width: 12px;
}

.sel-btn-block input:checked+.ckbox-btn>span {
	background-color: var(--blue-1);
}

.sel-btn-block input:checked+.ckbox-btn>span::before {
	border-right: 5px solid #fff;
	border-bottom: 5px solid #fff;
}

.sel-btn-block input:disabled+.ckbox-btn {
	color: var(--gray-104);
	background-color: var(--gray-1);
	border: solid 2px var(--gray-1);
}

.sel-btn-block input:disabled+.ckbox-btn>span::before {
	border-right: 6px solid var(--gray-104);
	border-bottom: 6px solid var(--gray-104);
}