@media all and (width < 768px) {
/*------------------------------------------
 *	ヘッダー
------------------------------------------*/
.header-inner {
	padding: 8px 20px;
	max-width: inherit;
}

.header .logo a {
	gap: 0 12px;
}

.header .logo-img img {
	width: 70px;
	height: auto;
}

.header .logo-txt {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.header .logo-txt span {
	font-size: 1.1rem;
	font-weight: bold;
}

.header .btn-menu {
	width: 100px;
	padding: 12px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
	user-select: none;
}

.header .btn-menu:hover {
	background-color: #101010;
	color: #FFF;
}

.nav-global-wrapper {
	width: 100%;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	background: transparent;
	transition: background-color .3s ease;
	z-index: -1;
	pointer-events: none;
	visibility: hidden;
}

.is-visible.nav-global-wrapper {
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	visibility: visible;
	pointer-events: auto;
}

.nav-global-inner {
	max-width: inherit;
	width: 100%;
	height: 100dvh;
	background: #FAEAEA;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
	transition: right .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-visible .nav-global-inner {
	right: 0;
}

.header .btn-close {
	max-width: inherit;
	margin: 0 auto 30px;
}

.header .btn-close .btn {
	width: 100px;
	padding: 12px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	margin: 0 0 0 auto;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
	user-select: none;
}

.header .btn-close .btn:hover {
	background-color: #101010;
	color: #FFF;
}

.nav-global {
	overflow-y: auto;
	max-width: inherit;
	margin: 0 auto;
	height: calc(100vh - 120px)
}

.nav-global ul {
	background: #FFF;
	padding: 20px 20px 40px;
	border-radius: 4px;
}

.nav-global ul a {
	display: flex;
	color: #101010;
	padding: 24px 26px 24px 0;
	border-bottom: 1px solid #D9D9D9;
	gap: 0 12px;
	align-items: center;
	font-weight: bold;
	position: relative;
	transition: background .3s ease;
}

.nav-global ul a::before {
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background: #101010;
	position: absolute;
	top: calc(50% + 1px);
	right: 0;
}

.nav-global ul a::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	display: block;
	width: 4px;
	height: 4px;
	border-top: 1.1px solid #101010;
	border-right: 1.1px solid #101010;
	transform: rotate(45deg);
}

.nav-global ul a:hover {
	background: #FFF;
}

.nav-global .num {
	font-size: 1.4rem;
	font-weight: 600;
	color: #EA6182;
}

.nav-global .en {
	display: inline-block;
	margin: 0 0 0 auto;
	font-weight: normal;
	font-size: 1.1rem;
}

.nav-global .btn-contact {
	width: 240px;
}

.nav-global .btn-contact a {
	display: block;
	padding: 12px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	margin: 40px 0;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.nav-global .btn-contact a:hover {
	background-color: #101010;
	color: #FFF;
}

.nav-global .tel {
	font-size: 2rem;
	margin: 0 0 20px;
}

.nav-global .tel a {
	color: #101010;
}

.nav-global .instagram {
	margin: 24px 0 0;
	padding: 0 0 200px;
}

.nav-global .instagram a {
	display: flex;
	align-items: center;
	gap: 0 20px;
	color: #101010;
}

.nav-global .instagram img {
	width: 32px;
	height: 32px;
}

.nav-global .instagram p {
	font-size: 2rem;
}

/*------------------------------------------
 *	フッター
------------------------------------------*/
.footer-inner {
	max-width: inherit;
	padding: 0 20px;
	margin: 0 auto;
}

.footer .logo a {
	display: flex;
	align-items: center;
	gap: 0 12px;
	color: #101010;
}

.footer .logo-img img {
	width: 102px;
	height: auto;
}

.footer .logo-txt {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.footer .logo-txt span {
	font-size: 1.6rem;
	font-weight: bold;
}

.footer-info {
	flex-direction: column;
	gap: 30px 0;
	margin: 40px 0 60px;
}

.footer .address {
	line-height: 1.8;
}

.footer .business-hours {
	line-height: 1.8;
}

.footer .btn-contact a {
	display: block;
	padding: 10px 40px;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.footer .btn-contact a:hover {
	background-color: #101010;
	color: #FFF;
}

.copyright {
	color: #101010;
	padding: 10px 0;
	background: #FAEAEA;
	text-align: center;
	font-size: 1.4rem;
}

/*------------------------------------------
 *	TOPページ
------------------------------------------*/
.page-top {
	max-width: inherit;
	margin: 0 auto;
	padding: 0 20px;
}

.main-view {
	flex-direction: column;
	gap: 20px 0;
	align-items: flex-start;
	margin: 0 0 80px;
}

.main-view .txt {
	width: 100%;
}

.main-view .txt p {
	line-height: 1.8;
}

.main-view .img-worker {
	text-align: center;
	margin: 30px 0;
}

.main-view .btn {
	max-width: 192px;
	width: 100%;
	margin: 0 auto;
}

.main-view .btn a {
	display: block;
	padding: 10px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.main-view .btn a:hover {
	background-color: #101010;
	color: #FFF;
}

.main-view .img {
	width: 100%;
	order: -1;
	width: 100%;
	text-align: center;
	margin: 40px 0 0;
}

.contents-wrapper {
	max-width: inherit;
	margin: 0 auto 120px;
	padding: 0;
}

.contents-wrapper h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 0 0 40px;
}

.contents-wrapper h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.contents-wrapper .inner {
	display: flex;
	gap: 0 30px;
	align-items: flex-start;
	margin: 0 0 80px;
}

.contents-wrapper .step {
	width: 20px;
}

.contents-wrapper .step .line {
	display: block;
	width: 100%;
	height: 4px;
	background: #D9D9D9;
	margin: 0 0 12px;
}

.contents-wrapper .step .active {
	background: #3C3C3C;
}

.contents-wrapper .contents {
	width: calc(100% - 30px);
}

.contents-wrapper .contents h3 {
	font-size: 1.8rem;
	line-height: 1;
	font-weight: bold;
	margin: 0 0 30px;
}

.contents-wrapper .contents .img {
	margin: 0 0 20px;
}

.contents-wrapper .contents p {
	font-weight: bold;
	line-height: 1.8;
}

.contents-wrapper .contents .btn-about {
	max-width: 192px;
	width: 100%;
	margin: 40px auto 0;
	transform: translateX(-20px);
}

.contents-wrapper .contents .btn-about a {
	display: block;
	padding: 10px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.contents-wrapper .contents .btn-about a:hover {
	background-color: #101010;
	color: #FFF;
}

/*------------------------------------------
 *	企業・事業主さま
------------------------------------------*/
.page-support {
	max-width: inherit;
	margin: 0 auto;
	padding: 40px 20px 100px;
}

.page-support h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-support h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-support .txt {
	line-height: 1.8;
}

.page-support .company-list {
	flex-direction: column;
	flex-wrap: wrap;
	gap: 60px 0;
	margin: 60px 0 0;
}

.page-support .company {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.page-support .company a {
	color: #101010;
}

.page-support .company-logo {
	margin: 0 0 24px;
}

.page-support .company-name {
	font-weight: bold;
	line-height: 1.6;
	font-size: 2rem;
}

/*------------------------------------------
 *	事業所について
------------------------------------------*/
.page-about {
	max-width: inherit;
	margin: 0 auto;
	padding: 40px 20px 100px;
}

.page-about .facility {
	margin: 0 0 80px ;
}

.page-about .facility .inner {
	flex-direction: column;
	gap: 30px 0;
	margin: 0 0 60px;
}

.page-about .facility .inner .txt {
	width: 100%;
}

.page-about .facility h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
}

.page-about .facility h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .facility p {
	line-height: 1.8;
}

.page-about .facility .inner .img {
	width: 100%;
}

.page-about .room {
	display: flex;
	flex-direction: column;
	gap: 60px 0;
	flex-wrap: wrap;
	margin: 0 auto;
}

.page-about .room .item {
	width: 100%;
}

.page-about .room-img {
	margin: 0 0 18px;
}

.page-about .room .name {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 18px;
	text-align: center;
}

.page-about .room .txt {
	line-height: 1.8;
}

.page-about .access {
	margin: 0 0 80px;
}

.page-about .access .inner {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}

.page-about .access .txt {
	width: 100%;
}

.page-about .access h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 16px;
}

.page-about .access h2::before {
	content: "";
	display: inline-block;
	width: 45px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .access .business-form {
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.4;
}

.page-about .access p {
	line-height: 1.8;
}

.page-about .access .address {
	margin: 30px 0;
}

.google-map {
	width: 100%;
	max-width: 845px;
	margin: 0 auto;
	aspect-ratio: 845 / 440;
}

.google-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.instagram {
	margin: 0 0 80px;
}

.instagram h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.instagram h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.instagram-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.instagram-gallery li {
	width: calc(50% - 12px);
}

.instagram-gallery li a {
	transition: opacity ease .5s;
	display: block;
	position: relative;
}

.instagram-gallery li a:hover {
	opacity: 1;
}

.instagram-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	object-position: center center;
}

.instagram-gallery svg {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
}

.instagram-gallery path {
	fill: #ddd;
}

.instagram .btn-instagram {
	margin: 40px auto 0;
	width: 100%;
	max-width: 272px;
}

.instagram .btn-instagram a {
	display: block;
	padding: 12px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	margin: 40px 0;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.instagram .btn-instagram a:hover {
	background-color: #101010;
	color: #FFF;
}

.page-about .work {
	margin: 0 0 80px;
}

.page-about .work h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .work h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .work .lab {
	max-width: inherit;
	padding: 30px 20px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	margin: 0 auto 40px;
	box-sizing: border-box;
}

.page-about .work h3 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}

.page-about .work .inner {
	margin: 40px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px 0;
}

.page-about .lab .item {
	max-width: inherit;
	width: 100%;
}

.page-about .lab .img {
	margin: 20px 0;
	text-align: center;
}

.page-about .work p {
	line-height: 1.8;
}

.page-about .job {
	max-width: inherit;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px 0;
}

.page-about .job .item {
	padding: 30px 20px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	width: 100%;
	box-sizing: border-box;
}

.page-about .job h3 {
	max-width: inherit;
	width: 100%;
	margin: 0 auto;;
}

.page-about .job .img {
	max-width: inherit;
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.page-about .job p {
	max-width: inherit;
	width: 100%;
	margin: 0 auto;
}

.page-about .work .note {
	margin: 30px auto 0;
	line-height: 1.8;
	max-width: inherit;
	font-size: 1.4rem;
}

.page-about .philosophy {
	margin: 0 0 80px;
}

.page-about .philosophy h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .philosophy h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .philosophy .goal {
	max-width: inherit;
	padding: 30px 20px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	margin: 0 auto 40px;
	box-sizing: border-box;
}

.page-about .philosophy h3 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	letter-spacing: -0.05em;
}

.page-about .philosophy .copy {
	font-size: 1.8rem;
	font-weight: bold;
	color: #EA6182;
	line-height: 2;
	text-align: left;
	margin: 30px 0;
}

.page-about .philosophy .copy br {
	display: none;
}

.page-about .goal .img {
	text-align: center;
}

.page-about .philosophy .support {
	max-width: inherit;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px 0;
}

.page-about .philosophy .support .item {
	padding: 30px 20px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	box-sizing: border-box;
	width: 100%;
}

.page-about .philosophy .support .img {
	margin: 20px 0;
	text-align: center;
}

.page-about .philosophy .support p {
	line-height: 1.8;
}

.page-about .training {
	margin: 0 0 80px;
}

.page-about .training h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .training h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .training h3 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 0 0 30px;
}

.page-about .training .inner {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	margin: 0 0 60px;
}

.page-about .training .inner .item {
	width: 100%;
}

.page-about .training .inner h4 {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 20px 0;
}

.page-about .training .inner p {
	line-height: 1.8;
}

.page-about .training .support .item {
	max-width: inherit;
	margin: 20px auto 0;
}

.page-about .training .support .img {
	text-align: center;
	margin: 0 0 20px;
}

.page-about .training .support .img img {
	aspect-ratio: 630 / 372;
	object-fit: cover;
}

.page-about .training .support p {
	line-height: 1.8;
	margin: 0 0 24px;
}

.page-about .use {
	margin: 0 0 80px;
}

.page-about .use h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .use h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .use .inner {
	display: flex;
	flex-direction: column;
	gap: 60px 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.page-about .use .item {
	max-width: inherit;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}

.page-about .use .img {
	width: 100%;
	text-align: center;
	padding: 0 40px;
	box-sizing: border-box;
}

.page-about .use .txt {
	width: 100%;
}

.page-about .use .num {
	color: #EA6182;
	font-size: 3.2rem;
	font-weight: bold;
	margin: 0 0 12px;
	line-height: 1;
}

.page-about .use h3 {
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 20px;
}

.page-about .use p {
	line-height: 1.8;
}

.page-about .contact h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .contact h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-about .contact p {
	line-height: 1.8;
	text-align: center;
}

.page-about .contact .btn-contact {
	margin: 40px auto 0;
	width: 100%;
	max-width: 240px;
}

.page-about .contact .btn-contact a {
	display: block;
	padding: 12px 0;
	border-radius: 100px;
	background-color: #101010;
	color: #FFF;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	border: 1px solid #101010;
	transition: background-color .3s ease;
}

.page-about .contact .btn-contact a:hover {
	background-color: #101010;
	color: #FFF;
}

/*------------------------------------------
 *	お問い合わせ
------------------------------------------*/
.page-form {
	max-width: inherit;
	margin: 0 auto;
	padding: 60px 20px 120px;
}

.page-form h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-form h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-form .txt-contact {
	line-height: 1.6;
	font-size: 1.6rem;
}

.page-form .txt-complete {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0 0 30px;
	font-weight: bold;
}

.page-form .txt-complete a {
	color: #0066cc;
	text-decoration: underline;
}

.page-form .txt-note {
	margin: 40px 0 0;
	font-size: 1.6rem;
	line-height: 1.8;
}

.page-form .txt-note a {
	color: #0066cc;
	text-decoration: underline;
}

.page-form .btn-top {
	max-width: 500px;
	margin: 40px auto 0;
}

.page-form .btn-top a {
	padding: 20px 0;
	display: block;
	background: #FFF;
	border: 2px solid #653A1C;
	color: #653A1C;
	font-size: 1.8rem;
	font-weight: bold;
	transition: opacity .3s ease;
	line-height: 1;
	border-radius: 60px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.page-form .btn-top a:hover {
	opacity: 1;
}

.page-form .btn-top a::after {
	border-right: 2px solid #653A1C;
	border-top: 2px solid #653A1C;
	content: "";
	height: 10px;
	position: absolute;
	top: 50%;
	width: 10px;
	right: 20px;
	margin: -7px 0 0 0;
	transform: rotate(45deg);
}

.page-form .tbl-form {
	width: 100%;
	margin: 30px auto 0;
}

.page-form .tbl-form th {
	display: block;
	font-weight: bold;
	text-align: left;
	padding: 0 0 15px;
	width: 100%;
	box-sizing: border-box;
	clear: both;
	word-break: break-all;
	line-height: 1.6;
	color: #333;
}

.page-form .tbl-form td {
	display: block;
	box-sizing: border-box;
	text-align: left;
	padding: 0 0 40px;
	line-height: 1.6;
	word-break: break-all;
}

.tbl-form .require {
	margin: 0;
	padding: 5px 8px;
	background: #b61625;
	color: #fff;
	line-height: 1;
	float: right;
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	font-weight: bold;
}

.tbl-form input[type="radio"] {
	margin: -3px 5px 0 20px;
	vertical-align: middle;
}

.tbl-form td label:first-child input[type="radio"] {
	margin: -3px 5px 0 0;
}

.tbl-form .reikai-date input[type="radio"] {
	margin: -3px 5px 0 0;
	vertical-align: middle;
}

.tbl-form input[type="text"],
.tbl-form input[type="email"],
.tbl-form input[type="date"] {
	border-radius: 0;
	font-size: 1.6rem;
	padding: 6px 7px;
	border: 1px solid #CCC;
	box-sizing: border-box;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 0.05em;
}

.tbl-form .size-full {
	width: 100%;
}

.tbl-form .size-middle {
	width: 100%;
}

.tbl-form .size-small {
	width: 12%;
	margin: 0 10px 0 0;
}

.tbl-form textarea {
	box-sizing: border-box;
	font-size: 1.6rem;
	padding: 6px 7px;
	border: 1px solid #CCC;
	width: 100%;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
}

.tbl-form .txt-info {
	font-size: 1.4rem;
	margin: 5px 0 0;
}

.page-form .btn-form {
	display: flex;
	flex-direction: column;
	gap: 24px 0;
	align-items: center;
}

.page-form .btn-confirm,
.page-form .btn-revise {
	max-width: 600px;
	width: 100%;
	background: #FFF;
	border: 2px solid #653A1C;
	text-align: center;
	cursor: pointer;
	transition: opacity .3s ease;
	box-sizing: border-box;
	border-radius: 60px;
	overflow: hidden;
	position: relative;
}

.page-form .btn-confirm {
	margin: 0 auto;
}

.page-form .btn-complete {
	max-width: 600px;
	width: 100%;
	background: #653A1C;
	border: 2px solid #FFF;
	text-align: center;
	cursor: pointer;
	transition: opacity .3s ease;
	box-sizing: border-box;
	border-radius: 60px;
	overflow: hidden;
	position: relative;
}

.page-form .btn-confirm input[type="submit"],
.page-form .btn-revise input[type="submit"],
.page-form .btn-complete input[type="submit"] {
	padding: 20px 0;
	display: block;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
	color: #653A1C;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	outline: medium none;
	border: medium none;
	background: none;
	width: 100%;
	cursor: pointer;
	line-height: 1;
}

.page-form .btn-complete input[type="submit"] {
	color: #FFF;
}

.page-form .btn-confirm:hover,
.page-form .btn-revise:hover,
.page-form .btn-complete:hover {
	opacity: 1;
}

.page-form .btn-confirm::after {
	border-right: 2px solid #653A1C;
	border-top: 2px solid #653A1C;
	content: "";
	height: 10px;
	position: absolute;
	top: 50%;
	width: 10px;
	right: 20px;
	margin: -7px 0 0 0;
	transform: rotate(45deg);
}

.page-form .btn-revise::after {
	border-right: 2px solid #653A1C;
	border-top: 2px solid #653A1C;
	content: "";
	height: 10px;
	position: absolute;
	top: 50%;
	width: 10px;
	left: 20px;
	margin: -5px 0 0 0;
	transform: rotate(-135deg);
}

.page-form .btn-complete::after {
	border-right: 2px solid #FFF;
	border-top: 2px solid #FFF;
	content: "";
	height: 10px;
	position: absolute;
	top: 50%;
	width: 10px;
	right: 20px;
	margin: -7px 0 0 0;
	transform: rotate(45deg);
}

.page-form .txt-err {
	font-size: 1.4rem;
	color: #D1192D;
	display: block;
	margin: 10px 0 0;
}

/*------------------------------------------
 *	プライバシーポリシー
------------------------------------------*/
.page-privacy {
	max-width: inherit;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.page-privacy h2 {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-privacy h2::before {
	content: "";
	display: inline-block;
	width: 54px;
	height: 40px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 36px auto;
	position: relative;
	top: 9px;
}

.page-privacy .privacy {
	margin: 0 0 50px;
}

.page-privacy h3 {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 40px 0 20px;
}

.page-privacy p {
	line-height: 1.8;
	margin: 0 0 24px;
}

.page-privacy p a {
	color: #0066cc;
	text-decoration: underline;
}

.page-privacy ul {
	margin: 24px 0 24px 1em;
}

.page-privacy li {
	line-height: 1.8;
	margin: 0 0 10px;
	list-style: disc outside none;
}

}