/*------------------------------------------
 *	Reset:サイト共通
------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,header,hgroup,footer,menu,nav,section,summary,time,mark,audio,video {
	font-size: 100%;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

body {
	line-height: 1;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

nav,ul,ol {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: "";
	content: none;
}

a {
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
	margin: 0;
	padding: 0;
	background: transparent;
	outline: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
}

input,select,textarea {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/*------------------------------------------
 *	html,body
------------------------------------------*/
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #101010;
}

/*------------------------------------------
 *	ヘッダー
------------------------------------------*/
.is-show-menu {
	overflow: hidden;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 40px;
	max-width: 1280px;
	margin: 0 auto;
}

.header .logo a {
	display: flex;
	align-items: center;
	gap: 0 20px;
	color: #101010;
}

.header .logo-img img {
	width: 102px;
	height: auto;
}

.header .logo-txt {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.header .logo-txt span {
	font-size: 1.6rem;
	font-weight: bold;
}

.header .btn-menu {
	width: 124px;
	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: #FFF;
	color: #101010;
}

.nav-global-wrapper {
	width: 100%;
	height: 100vh;
	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: 600px;
	width: 100%;
	height: 100vh;
	background: #FAEAEA;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9999;
	padding: 40px 0;
	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: 440px;
	margin: 0 auto 40px;
}

.header .btn-close .btn {
	width: 124px;
	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: #FFF;
	color: #101010;
}

.nav-global {
	overflow-y: auto;
	max-width: 440px;
	margin: 0 auto;
	height: calc(100vh - 160px)
}

.nav-global ul {
	background: #FFF;
	padding: 20px 40px 40px;
	border-radius: 8px;
}

.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: #FAEAEA;
}

.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: #FFF;
	color: #101010;
}

.nav-global .tel {
	font-size: 2rem;
	margin: 0 0 20px;
}

.nav-global .tel a {
	color: #101010;
}

.nav-global .instagram {
	margin: 24px 0 0;
}

.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: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}

.footer .logo a {
	display: flex;
	align-items: center;
	gap: 0 20px;
	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 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 40px;
	margin: 40px 0 70px;
}

.footer .address {
	line-height: 2;
}

.footer .business-hours {
	line-height: 2;
}

.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: #FFF;
	color: #101010;
}

.copyright {
	color: #101010;
	padding: 10px 0;
	background: #FAEAEA;
	text-align: center;
}

/*------------------------------------------
 *	TOPページ
------------------------------------------*/
.page-top {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.main-view {
	display: flex;
	gap: 0 24px;
	align-items: flex-end;
	margin: 0 0 120px;
}

@media (768px <= width <= 1000px) {
	.main-view {
		flex-direction: column;
		gap: 40px 0;
	}
}

.main-view .txt {
	width: 32.109375%;
}

@media (768px <= width <= 1000px) {
	.main-view .txt {
		width: 100%;
	}
}

.main-view .txt p {
	line-height: 1.8;
}

.main-view .img-worker {
	margin: 20px 0 40px;
}

@media (768px <= width <= 1000px) {
	.main-view .img-worker {
		text-align: center;
	}
}

.main-view .btn {
	max-width: 192px;
	width: 100%;
}

@media (768px <= width <= 1000px) {
	.main-view .btn {
		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: #FFF;
	color: #101010;
}

.main-view .img {
	width: 66.09375%;
}

@media (768px <= width <= 1000px) {
	.main-view .img {
		order: -1;
		width: 100%;
		text-align: center;
		margin: 40px 0 0;
	}
}

.contents-wrapper {
	max-width: 1170px;
	margin: 0 auto 200px;
	padding: 0 40px;
}

.contents-wrapper h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 0 0 80px;
}

.contents-wrapper h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.contents-wrapper .inner {
	display: flex;
	gap: 0 65px;
	align-items: flex-start;
	margin: 0 0 160px;
}

.contents-wrapper .step {
	width: 40px;
}

.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: 90.940170%;
}

.contents-wrapper .contents h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 24px;
}

.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: 80px auto 0;
}

.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: #FFF;
	color: #101010;
}

/*------------------------------------------
 *	企業・事業主さま
------------------------------------------*/
.page-support {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 40px 200px;
}

.page-support h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 60px;
}

.page-support h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-support .txt {
	line-height: 1.8;
}

.page-support .company-list {
	display: flex;
	flex-wrap: wrap;
	gap: 80px 12.5%;
	margin: 60px 0 0;
}

.page-support .company {
	width: 100%;
	max-width: 320px;
}

.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: 1280px;
	margin: 0 auto;
	padding: 80px 40px 200px;
}

.page-about .facility {
	margin: 0 0 120px ;
}

.page-about .facility .inner {
	display: flex;
	gap: 0 24px;
	margin: 0 0 60px;
}

.page-about .facility .inner .txt {
	width: 40.3125%;
}

.page-about .facility h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
}

.page-about .facility h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .facility p {
	line-height: 2;
}

.page-about .facility .inner .img {
	width: 57.578125%;
}

.page-about .room {
	display: flex;
	gap: 60px 1.875%;
	flex-wrap: wrap;
	margin: 0 auto;
}

.page-about .room .item {
	width: 32.03125%;
}

.page-about .room-img {
	margin: 0 0 24px;
}

.page-about .room .name {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 24px;
	text-align: center;
}

.page-about .room .txt {
	line-height: 1.8;
}

.page-about .access {
	margin: 0 0 120px;
}

.page-about .access .inner {
	display: flex;
	gap: 0 20px;
}

@media (768px <= width <= 1000px) {
	.page-about .access .inner {
		flex-direction: column;
		gap: 40px 0;
	}
}

.page-about .access .txt {
	width: 31.875%;
}

@media (768px <= width <= 1000px) {
	.page-about .access .txt {
		width: 100%;
	}
}

.page-about .access h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 20px;
}

.page-about .access h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .access .business-form {
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.4;
}

.page-about .access p {
	line-height: 1.8;
}

.page-about .access .address {
	margin: 40px 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 120px;
}

.instagram h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.instagram h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.instagram-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.instagram-gallery li {
	width: calc(25% - 18px);
}

.instagram-gallery li a {
	transition: opacity ease .5s;
	display: block;
	position: relative;
}

.instagram-gallery li a:hover {
	opacity: .7;
}

.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: #FFF;
	color: #101010;
}

.page-about .work {
	margin: 0 0 120px;
}

.page-about .work h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .work h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .work .lab {
	max-width: 1062px;
	padding: 40px 54px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	margin: 0 auto 40px;
	box-sizing: border-box;
}

.page-about .work h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}

.page-about .work .inner {
	margin: 42px 0 0;
	display: flex;
	justify-content: space-between;
	gap: 0 40px;
}

.page-about .lab .item {
	max-width: 410px;
	width: 100%;
}

.page-about .lab .img {
	margin: 30px 0;
}

.page-about .work p {
	line-height: 2;
}

.page-about .job {
	max-width: 1062px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 0 24px;
}

.page-about .job .item {
	padding: 40px 20px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	width: 48.870056%;
	box-sizing: border-box;
}

.page-about .job h3 {
	max-width: 410px;
	width: 100%;
	margin: 0 auto;;
}

.page-about .job .img {
	max-width: 410px;
	width: 100%;
	margin: 30px auto;
}

.page-about .job p {
	max-width: 410px;
	width: 100%;
	margin: 0 auto;
}

.page-about .work .note {
	margin: 36px auto 0;
	line-height: 1.8;
	max-width: 1062px;
}

.page-about .philosophy {
	margin: 0 0 120px;
}

.page-about .philosophy h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .philosophy h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .philosophy .goal {
	max-width: 1062px;
	padding: 40px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	margin: 0 auto 40px;
	box-sizing: border-box;
}

.page-about .philosophy h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	letter-spacing: -0.05em;
}

.page-about .philosophy .copy {
	font-size: 2rem;
	font-weight: bold;
	color: #EA6182;
	line-height: 2;
	text-align: center;
	margin: 40px 0;
}

.page-about .goal .img {
	text-align: center;
}

.page-about .philosophy .support {
	max-width: 1062px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 0 24px;
}

.page-about .philosophy .support .item {
	padding: 40px;
	border-radius: 8px;
	border: 4px solid #EA6182;
	box-sizing: border-box;
	width: 48.870056%;
}

.page-about .philosophy .support .img {
	margin: 30px 0;
	text-align: center;
}

.page-about .philosophy .support p {
	line-height: 2;
}

.page-about .training {
	margin: 0 0 120px;
}

.page-about .training h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .training h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .training h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin: 0 0 40px;
}

.page-about .training .inner {
	display: flex;
	gap: 0 24px;
	margin: 0 0 40px;
}

.page-about .training .inner .item {
	width: 32.03125%;
}

.page-about .training .inner h4 {
	font-size: 2rem;
	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: 630px;
	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 30px;
}

.page-about .use {
	margin: 0 0 120px;
}

.page-about .use h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .use h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .use .inner {
	display: flex;
	gap: 72px 20px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.page-about .use .item {
	max-width: 626px;
	width: 100%;
	display: flex;
	gap: 0 20px;
}

.page-about .use .img {
	width: 41.533546%;
}

.page-about .use .txt {
	width: 55.271565%;
}

.page-about .use .num {
	color: #EA6182;
	font-size: 4.8rem;
	font-weight: bold;
	margin: 0 0 12px;
	line-height: 1;
}

.page-about .use h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 20px;
}

.page-about .use p {
	line-height: 2;
}

.page-about .contact h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-about .contact h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-about .contact p {
	line-height: 2;
	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: #FFF;
	color: #101010;
}

/*------------------------------------------
 *	お問い合わせ
------------------------------------------*/
.page-form {
	max-width: 700px;
	margin: 0 auto;
	padding: 80px 40px 120px;
}

.page-form h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-form h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-form .txt-contact {
	line-height: 1.8;
	font-size: 1.6rem;
}

.page-form .txt-complete {
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0 0 40px;
	font-weight: bold;
}

.page-form .txt-complete a {
	color: #0066cc;
	text-decoration: underline;
}

.page-form .txt-note {
	margin: 80px 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: 600px;
	margin: 90px auto 0;
}

.page-form .btn-top a {
	padding: 25px 0;
	display: block;
	background: #FFF;
	border: 2px solid #653A1C;
	color: #653A1C;
	font-size: 2.4rem;
	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: .7;
}

.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: 30px;
	margin: -7px 0 0 0;
	transform: rotate(45deg);
}

.page-form .tbl-form {
	width: 100%;
	margin: 60px auto;
}

.page-form .tbl-form th {
	font-weight: bold;
	text-align: left;
	padding: 20px 0;
	width: 220px;
	vertical-align: middle;
	box-sizing: border-box;
	clear: both;
	word-break: break-all;
	line-height: 1.6;
	color: #333;
}

.page-form .tbl-form td {
	text-align: left;
	padding: 20px 0 20px 40px;
	line-height: 1.8;
	word-break: break-all;
	vertical-align: middle;
}

.tbl-form .require {
	margin: 0;
	padding: 5px 10px;
	background: #b61625;
	color: #fff;
	line-height: 1;
	float: right;
	font-size: 1.4rem;
	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: 40%;
}

.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: 50px 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: 25px 0;
	display: block;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
	color: #653A1C;
	font-size: 2.4rem;
	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: .7;
}

.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: 30px;
	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: 30px;
	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: 30px;
	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: 1000px;
	margin: 0 auto;
	padding: 80px 40px 120px;
}

.page-privacy h2 {
	font-size: 3.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 40px;
	text-align: center;
}

.page-privacy h2::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 44px;
	background: url(../img/common/ico_title.jpg) 0 center no-repeat;
	background-size: 40px auto;
	position: relative;
	top: 9px;
}

.page-privacy .privacy {
	margin: 0 0 60px;
}

.page-privacy h3 {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 0 0 20px;
}

.page-privacy p {
	line-height: 1.8;
	margin: 0 0 30px;
}

.page-privacy p a {
	color: #0066cc;
	text-decoration: underline;
}

.page-privacy ul {
	margin: 30px 0 30px 1em;
}

.page-privacy li {
	line-height: 1.8;
	margin: 0 0 10px;
	list-style: disc outside none;
}
