@charset "utf-8";

/*
Theme Name: Rebirtech inc. Theme
Description: theme of Rebirtech inc.
Version: 1.0.0
*/


/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

*:focus {outline:0;}

/* padding,border内側設定 */
*,::before,::after{box-sizing:border-box;}

/* HTML5 */
article, aside, figure, figcaption, footer, header, nav, section{display: block;}

/*------------------------------------------------------------
	Base
------------------------------------------------------------*/

:root {
	--blue: #68b1b9;
	--black: #000;
	--white: #fff;
	--bg: #e9e9e9;
	--bgb: #f1f8f9;
	--grey: #9c9c9c;
	--placeholder: #bababa;
	--ja: 'Noto Sans JP', sans-serif;
	--en: 'Roboto', sans-serif;
	--headerHeight: 80px;
	--cw: 996px;
	--px: 40px;
	--py: 140px;
}

@media screen and (max-width: 800px) {
	:root {
		--headerHeight: 60px;
		--px: 20px;
		--py: 90px;
	}
}


html {margin:0px;padding:0px;height: 100%;width:100%;-webkit-text-size-adjust:none;}

a:link {color:inherit;text-decoration:none;}
a:hover {color:inherit;text-decoration:none;}
a:active {color:inherit;text-decoration:none;}
a:visited {color:inherit;text-decoration:none;}


/* clearfix */
.clearfix:after {visibility:hidden;display:block;font-size:0;content:"";clear:both;height:0;}
/* clearfix for ie7 */
.clearfix {display:inline-block;}
.clearfix {display:block;}

img {max-width: 100%;height: auto;vertical-align: bottom;}
iframe {
	max-width: 100%;
	vertical-align: bottom;
}

body {
	font-family: var(--ja);
	padding-top: var(--headerHeight);
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	background-color: var(--bgMain);
	color: var(--black);
	position: relative;
	height: 100%;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pcb {display: block;}
.spb {display: none;}
.pcib {display: inline-block;}
.spib {display: none;}
.pcf {display: flex;}
.spf {display: none;}
.pcg {display: grid;}
.spg {display: none;}


.inview {
	opacity: 0;
	transition: opacity .5s .25s;
}
.inview.visible {
	opacity: 1;
}
.inviewelm > * {
	opacity: 0;
	transition: opacity .5s .25s;	
}
.inviewelm > *.visible {
	opacity: 1;
}


.bgNone .bg {
	display: none !important;
}
@media screen and (max-width: 800px) {
	body {
		min-width: 0;
	}
	
	.pcb {display: none;}
	.spb {display: block;}
	.pcib {display: none;}
	.spib {display: inline-block;}
	.pcf {display: none;}
	.spf {display: flex;}
	.pcg {display: none;}
	.spg {display: grid;}
}



/*------------------------------------------------------------
	MENU
------------------------------------------------------------*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 0;
	z-index: 2000000;
}
#header .header-wrap {
	width: 100%;
	height: var(--headerHeight);
	position: relative;
	background-color: var(--white);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
	transition: .3s;
}

#header .logo {
	position: absolute;
	line-height: 1;
	top: 50%;
	left: var(--px);
	z-index: 100;
	width: 200px;
	display: flex;
	transition: opacity 0.3s;
	transform: translateY(-50%);
	line-height: 1;
}
#header .logo:hover {
	opacity: 0.6;
}

.menu .main-nav {
	position: absolute;
	top: 50%;
	right: var(--px);
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	line-height: 1;
	font-size: 14px;
	font-family: var(--ja);
	font-weight: 500;
	height: auto;
	gap: 30px;
}
.menu .main-nav li {
}
.menu .main-nav > li a {
	line-height: 2;
	display: block;
	transition: .5s;
}
.menu .main-nav > li a:hover {
	color: var(--blue);
}
.menu .main-nav > li.contact a {
	line-height: 1;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	height: 34px;
	padding: 0 20px;
	display: flex;
	border-radius: 100px;
	align-items: center;
	color: var(--white);
	background: var(--black);
	transition: .5s;
}
.menu .main-nav > li.contact a:hover {
	font-size: 14px;
	color: var(--white);
	background: var(--blue);
}

@media screen and (max-width: 800px) {
	#header {
		position: fixed;
	}
	#header .header-wrap {
		width: 100%;
		height: var(--headerHeight);
		position: relative;
		background-color: #fff;
		color: #000;
		transition: .3s;
	}
	
	#header .logo {
		width: 130px;
	}
	.menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: var(--blue);
		color: var(--white);
		z-index: 100;
		max-height: 100vh;
		overflow-y: scroll;
		opacity: 0;
		padding: 0 var(--px);
		display: block;
		transition: transform .4s ease-in 0s, opacity .15s ease-in 0s;
		transform: translateY(-100%);
	}
	.opened .menu {
		opacity: 1;
		transform: translateY(0);
		transition: transform .4s ease-out .1s, opacity .2s ease-out .5s;
	}
	.menu .menu-wrap {
		display: flex;
		width: 100%;
		height: 100%;
		padding: 114px var(--px) 140px;
		justify-content: center;
		align-items: center;
	}
	.menu .menu-wrap {
	}
	.menu .main-nav {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 57px;
		text-align: center;
		margin: 0;
		position: static;
		transform: none;
		font-weight: 500;
		font-size: 18px;
		line-height: 26px;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
	}
	.menu .sns-nav {
		position: absolute;
		bottom: 60px;
		left: 0;
		justify-content: center;
		align-items: center;
		gap: 20px;
		width: 100%;
	}
	.menu .menu-logo {
		position: absolute;
		top: 15px;
		left: var(--px);
		width: 130px;
		line-height: 1;
	}
	.menu .menu-logo img {
		vertical-align: top;
	}
	.menu .main-nav > li a:hover {
		color: var(--white);
	}

}


/*------------------------------------------------------------
	MENU - BUTTON
------------------------------------------------------------*/

.menu-trigger {
	display: none;
}
@media screen and (max-width: 800px) {
	.menu-close {
		width: 24px;
		height: 24px;
		position: fixed;
		top: calc((var(--headerHeight) - 24px) / 2);
		right: var(--px);
		z-index: 2001;
		opacity: 0;
		visibility: hidden;
	}
	.opened .menu-close {
		visibility: visible;
		opacity: 1;
	}
	#header .overlay {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,.3);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.opened #header .overlay {
		opacity: 1;
		visibility: visible;
	}
	.menu-trigger {
		width: 24px;
		height: 24px;
		position: fixed;
		top: calc((var(--headerHeight) - 24px) / 2);
		right: var(--px);
		z-index: 2000;
		display: block;
	}
	.menu-trigger span {
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 10px;
		top: 50%;
		margin-top: -1px;
		opacity: 1;
		background-color: var(--black);
		transition: .5s;
	}
	.opened .menu-trigger span {
		background-color: var(--white);
	}
	.menu-trigger span:nth-of-type(1),
	.menu-trigger span:nth-of-type(3) {
		transition: background-color .2s ease 0s, margin-top .2s ease .63s, transform .2s ease 0s;
	}
	.menu-trigger span:nth-of-type(1) {
		margin-top: 8px;
	}
	.menu-trigger span:nth-of-type(2) {
		transition: background-color .2s ease 0s, opacity .2s ease 0s;
	}
	.menu-trigger span:nth-of-type(3) {
		margin-top: -10px;
	}
	.opened .menu-trigger span:nth-of-type(1),
	.opened .menu-trigger span:nth-of-type(3) {
		transition: background-color .2s ease 0s, margin-top .1s ease 0s, transform .1s ease .15s;
	}
	.opened .menu-trigger span:nth-of-type(1) {
		margin-top: -1px;
		transform: rotate(-45deg);
	}
	.opened .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	.opened .menu-trigger span:nth-of-type(3) {
		margin-top: -1px;
		transform: rotate(45deg);
	}
}


/*------------------------------------------------------------
	Footer
------------------------------------------------------------*/
#footer {
	background: var(--bg);
	position: relative;
	z-index: 2;
	padding: 70px var(--px) 45px;
}
#footer .footer-wrap {
	width: 100%;
}
#footer .footer-1 {
	display: flex;
	justify-content: space-between;
}
#footer .footer-1 .logo {
	width: 200px;
	transition: 0.3s;
}
#footer .footer-1 .logo img {
	width: 100%;
}
#footer .footer-1 .logo:hover {
	opacity: 0.6;
}
#footer .footer-1 > ul {
	display: flex;
	gap: 60px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
#footer .footer-1 > ul > li {
	position: relative;
}
#footer .footer-1 > ul a {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: 0.5s;
}
#footer .footer-1 > ul a:hover {
	color: var(--blue);
}
#footer .footer-1 > ul a img {
	width: 5px;
}
#footer .footer-1 > ul > li > ul {
	top: 40px;
	left: 0;
	position: absolute;
	font-size: 12px;
	line-height: 17px;
	font-weight: 400;
	letter-spacing: 0.1em;
	display: flex;
	flex-direction: column;
	gap: 8px;
	white-space: nowrap;
}
#footer .footer-2 ul {
	margin-top: 30px;
	display: flex;
	align-items: center;
}
#footer .footer-2 .sns {
	gap: 20px;
	line-height: 1;
}
#footer .footer-2 .sns img {
	height: 20px;
	width: auto;
	vertical-align: top;
}
#footer .footer-2 .sns a {
	transition: 0.5s;
}
#footer .footer-2 .sns a:hover {
	opacity: 0.5;
}
#footer .footer-2 .cert {
	gap: 30px;
}
#footer .footer-2 .cert img {
	height: 97px;
	width: auto;
}

#footer .footer-3 {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .footer-3 ul {
	font-size: 12px;
	line-height: 17px;
	font-weight: 400;
	letter-spacing: 0.1em;
	display: flex;
	gap: 30px;
}
#footer .footer-3 ul a {
	transition: 0.5s;
}
#footer .footer-3 ul a:hover {
	color: var(--blue);
}
#footer .footer-3 .copy {
	font-family: var(--en);
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 800px) {
	#footer .footer-1 {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	#footer .footer-1 .logo {
		width: 170px;
	}
	#footer .footer-1 > ul {
		flex-direction: column;
		text-align: center;
		width: 100%;
		gap: 30px;
		font-size: 13px;
		line-height: 19px;
	}
	#footer .footer-1 > ul a {
		justify-content: center;
	}
	#footer .footer-1 > ul > li > ul {
		margin-top: 10px;
		position: static;
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}
	#footer .footer-2 {
		margin-top: 40px;
		padding-top: 40px;
		border-top: 1px solid var(--grey);
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 40px;
	}
	#footer .footer-2 ul {
		margin-top: 0;
		line-height: 1;
	}
	#footer .footer-2 .cert {
		gap: 20px;
	}
	#footer .footer-2 .cert img {
		height: 96px;
	}
	#footer .footer-3 {
		margin-top: 40px;
		padding-top: 40px;
		border-top: 1px solid var(--grey);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	#footer .footer-3 ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		font-size: 12px;
		line-height: 17px;
		letter-spacing: 0.1em;
	}
}





/*------------------------------------------------------------
	Common
------------------------------------------------------------*/
#main {
	position: relative;
	z-index: 2;
}
:not.home #main .main-wrap {
	padding-top: var(--headerHeight);
}
#main .section-wrap {
	padding: var(--py) var(--px);
}
.section-title {
	max-width: var(--cw);
	margin: auto;
}
.section-title .title {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}
.section-title .title .en {
	font-family: var(--en);
	font-weight: 300;
	font-size: 50px;
	letter-spacing: 0.2em;
	line-height: 59px;
}
.section-title .title .ja {
	font-family: var(--ja);
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.2em;
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
}
.section-title .title .ja::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
}
.section-title .description {
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-weight: 400;
	margin-top: 43px;
}
.section-content {
	max-width: var(--cw);
	margin: auto;
}

.section-title + .section-content {
	margin: 70px auto 0;
}
* + .btn {
	margin-top: 70px;
}
.btn a {
	display: inline-flex;
	align-items: center;
	height: 30px;
	font-family: var(--en);
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.2em;
	padding: 0 50px 0 0;
	position: relative;
	transition: 0.6s;
}
.btn a .txt {
	display: inline-block;
	line-height: 11px;
	position: relative;
	white-space: nowrap;
}
.btn a .txt::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: currentcolor;
	position: absolute;
	bottom: -7px;
	left: 0;
	transform: scale(1,1);
	transform-origin: left top;
	transition: transform .5s;
}
.btn a:hover .txt::after {
	transform: scale(0, 1);
	transform-origin: right top;
}
.btn a .arrow {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
}
.btn a .arrow::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 8px;
	width: 14px;
	height: 12px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/arrow-s.svg) center center/contain no-repeat;
}
.btn a .arrow::after {
	content: '';
	position: absolute;
	top: 9px;
	left: 8px;
	width: 14px;
	height: 12px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/arrow-s.svg) center center/contain no-repeat;
}
.btn a .arrow::after {
	transform: translateX(-22px);
}
.btn a:hover .arrow::before {
	animation: transformBefore .5s;
}
.btn a:hover .arrow::after {
	animation: transformAfter .5s;
}
@keyframes transformBefore {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(22px);
		opacity: 0;
	}
}
@keyframes transformAfter {
	0% {
		transform: translateX(-22px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}



@media screen and (max-width: 800px) {
	.section-title .title .ja {		
		font-size: 13px;
		line-height: 19px;
		letter-spacing: 0.2em;
	}
	.section-title .title .en {
		font-size: 40px;
		line-height: 47px;
	}
	.section-title + .section-content {
		margin-top: 50px;
	}
	.btn {
		text-align: right;
	}
	.btn a {
		padding-right: 46px;
		font-size: 13px;
	}
	.btn a .txt {
		line-height: 9px;
	}
}

/*------------------------------------------------------------
	Top
------------------------------------------------------------*/


#mv {
	width: 100%;
}
#mv .section-wrap {
	position: relative;
	transition-duration: 3s;
}
#mv .section-wrap .mv {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	padding: 0;
}
#mv .section-wrap .mv .img1 {
	width: 100%;
	height: auto;
	aspect-ratio: 1280/950;
	opacity: 0;
	transform: translate(0,2vh);
	animation: mvimg1 0.75s linear 0.25s forwards;
}
@keyframes mvimg1 {
	0% {
		opacity: 0;
		transform: translate(0,2vh);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}
#mv .section-wrap .mv .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	width: 0;
	overflow: hidden;
	animation: mvimg2 0.5s linear 1.2s forwards;
}
@keyframes mvimg2 {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
#mv .section-wrap .mv .img2 {
	max-width: 100vw;
	width: 100vw;
	height: auto;
	aspect-ratio: 1280/950;
}


#mv .section-wrap .txt {
	position: absolute;
	z-index: 2;
	top: 40px;
	left: 70px;
}
#mv .section-wrap .txt h2 {
	font-size: 50px;
	line-height: 70px;
	letter-spacing: 0.2em;
	font-weight: 700;
}
#mv .section-wrap .txt h2 span {
	display: inline-block;
	opacity: 0;
	transform: translate(0,5%);
}
#mv .section-wrap .txt h2 span.txt1 {
	animation: mvtxt 0.5s linear 2s forwards;
}
#mv .section-wrap .txt h2 span.txt2 {
	animation: mvtxt 0.5s linear 2.2s forwards;
}
@keyframes mvtxt {
	0% {
		opacity: 0;
		transform: translate(0,2vh);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}

@media screen and (max-width: 800px) {
	#mv .section-wrap {
		overflow: hidden;
		height: 732px;
	}
	#mv .section-wrap .txt {
		top: 50px;
		left: 30px;
	}
	#mv .section-wrap .txt h2 {
		font-weight: 700;
		font-size: 30px;
		line-height: 140%;
		letter-spacing: 0.2em;
	}
	#mv .section-wrap .mv {
		position: relative;
		left: 50%;
		transform: translate(-50%,0);
		max-width: 986px;
		width: 986px;
	}
	#mv .section-wrap .mv .img2 {
		width: 986px;
		max-width: 986px;
	}
}
#vision .section-wrap {
	position: relative;
	padding-bottom: 478px;
}
#vision .section-wrap .img {
	position: absolute;
	bottom: 140px;
	right: 40px;
	width: min(80vw,894px);
	height: auto;
	z-index: -1;
}

#vision .section-content p {
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 800px) {
	#vision .section-content p {
		font-size: 13px;
		text-align: justify;
	}
	#vision .section-wrap {
		padding-bottom: var(--py);
	}
	#vision .section-wrap .img {
		position: static;
		width: min(100%,350px);
		height: auto;
		margin: auto;
		display: block;
	}
	#vision .btn {
		margin-top: 20px;
	}
}

#service .section-wrap {
	background: var(--bgb);
}
#service .section-title {
	display: grid;
	grid-template-columns: 408px auto;
}
#service .section-title p {
	margin-top: 7px;
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.2em;
}
#service .section-content .img {
	max-width: calc(100vw - 2 * var(--px));
	width: 1157px;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
}
#service .section-content .btn {
	text-align: right;
	margin-top: 60px;
}

@media screen and (max-width: 800px) {
	#service .section-title {
		grid-template-columns: repeat(1,1fr);
		gap: 50px;
	}
	#service .section-title p {
		margin-top: 0;
		font-size: 13px;
		text-align: justify;
	}
	#service .section-content .img {
		width: 238px;
	}
}

#news .btn {
	margin-top: 50px;
	text-align: right;
}
#news .news-list {
	border-bottom: 1px solid var(--grey);
}
#news .news-list > li {
	border-top: 1px solid var(--grey);
}
#news .news-list .datecat {
	display: flex;
	align-items: center;
	gap: 20px;
}
#news .news-list .date {
	font-family: var(--en);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 16px;
}
#news .news-list .cat {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
#news .news-list .cat li {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 13px;
	line-height: 19px;
	padding: 2px 16px;
	border-radius: 100px;
	background: var(--blue);
}
#news .news-list .title {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.2em;
}
#news .news-list a {
	padding: 50px 100px 50px 0;
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 17px;
	color: var(--black);
}
#news .news-list a .title {
	transition: 0.5s;
}
#news .news-list a:hover .title {
	color: var(--blue);
}
#news .news-list a .arrow {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
#news .news-list a .arrow::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 15px;
	width: 20px;
	height: 18px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/arrow.svg) center center/contain no-repeat;
}
#news .news-list a .arrow::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 15px;
	width: 20px;
	height: 18px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: url(images/arrow.svg) center center/contain no-repeat;
}
#news .news-list a .arrow::after {
	transform: translateX(-36px);
}
#news .news-list a:hover .arrow::before {
	animation: tfB .5s;
}
#news .news-list a:hover .arrow::after {
	animation: tfA .5s;
}
@keyframes tfB {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(36px);
		opacity: 0;
	}
}
@keyframes tfA {
	0% {
		transform: translateX(-36px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}



@media screen and (max-width: 800px) {
	#news .news-list a {
		padding: 40px 0;
		gap: 16px;
	}
	#news .news-list .date {
		font-size: 13px;
		line-height: 15px;
	}
	#news .news-list a .arrow {
		display: none;
	}
	#news .news-list .title {
		font-size: 13px;
	}
	#news .btn {
		margin-top: 30px;
	}
}

#recruit .section-wrap {
	padding: 130px var(--px);
	background: var(--bgb) url(images/recruit-pc.png) right bottom/849px auto no-repeat;
}

@media screen and (max-width: 800px) {
	#recruit .section-wrap {
		padding: 40px var(--px) 183px;
		background: var(--bgb) url(images/recruit-sp.png) center bottom/390px auto no-repeat;
	}
	#recruit .section-title + .section-content {
		margin-top: 20px;
	}
	#recruit .btn {
		text-align: left;
	}
}


.pagenavi-wrap {
	margin-top: 100px;
}
.pagenavi-wrap .wp-pagenavi {
	font-family: var(--en);
	font-size: 25px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 15px;
}
.pagenavi-wrap .wp-pagenavi > a,
.pagenavi-wrap .wp-pagenavi > span {
	padding: 0 5px 10px;
	min-width: 30px;
	border-bottom: 1px solid transparent;
	color: var(--grey);
}
.pagenavi-wrap .wp-pagenavi a.page {
	transition: 0.5s;
}
.pagenavi-wrap .wp-pagenavi a:hover {
	color: var(--black);
}
.pagenavi-wrap .wp-pagenavi span.current {
	color: var(--black);
	border-color: var(--black);
}
.pagenavi-wrap .wp-pagenavi span.extend {
	width: auto;
}
.pagenavi-wrap .wp-pagenavi > a.previouspostslink {
	order: -1;
	overflow: hidden;
	width: 20px;
	min-width: 20px;
	text-indent: 20px;
	background: url(images/btn-prevnext.svg) center top 6px/20px 18px no-repeat;
	transform: scaleX(-1);
	transition: 0.5s;
}
.pagenavi-wrap .wp-pagenavi > a.previouspostslink:hover {
	opacity: 0.5;
}
.pagenavi-wrap .wp-pagenavi > a.nextpostslink {
	order: 1;
	overflow: hidden;
	width: 20px;
	min-width: 20px;
	text-indent: 20px;
	background: url(images/btn-prevnext.svg) center top 6px/20px 18px no-repeat;
	transition: 0.5s;
}
.pagenavi-wrap .wp-pagenavi > a.nextpostslink:hover {
	opacity: 0.5;
}
@media screen and (max-width: 800px) {
	.pagenavi-wrap {
		margin-top: 60px;
	}
	.pagenavi-wrap .wp-pagenavi {
		font-size: 20px;
	}
	.pagenavi-wrap .wp-pagenavi > a,
	.pagenavi-wrap .wp-pagenavi > span {
		padding: 0 2px 4px;
		min-width: 20px;
	}
}






/*------------------------------------------------------------
	Page - common
------------------------------------------------------------*/
.page-wrap {
	padding: 90px var(--px) 140px;
}

.page-title {
	max-width: var(--cw);
	margin: auto;
	position: relative;
	height: 190px;
}
.page-title:has(.page-mv) {
	height: 430px;
}
.page-title .page-mv {
	position: absolute;
	top: -30px;
	left: calc(100% * 308 / 996);
	width: min(790px,61.71875vw);
}
.page-title .title {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	max-width: 320px;
}
.page-title .title .en {
	font-family: var(--en);
	font-weight: 300;
	font-size: 50px;
	letter-spacing: 0.2em;
	line-height: 59px;
	color: var(--blue);
}
.page-title .title .ja {
	font-family: var(--ja);
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.2em;
	position: relative;
	display: flex;
	align-items: center;
}
.page-content {
	max-width: var(--cw);
	margin: auto;
}
.page-content > h2.wp-block-heading {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	font-family: var(--en);
	font-weight: 300;
	font-size: 50px;
	letter-spacing: 0.2em;
	line-height: 59px;
	margin-bottom: 90px;
}
.page-content > * + h2.wp-block-heading {
	margin-top: 140px;
}
.page-content > h2.wp-block-heading strong {
	font-family: var(--ja);
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.2em;
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
}
.page-content > h2.wp-block-heading strong::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
}
.page-content a {
	color: var(--blue);
}

@media screen and (max-width: 800px) {
	.page-wrap {
		padding: 60px var(--px) 120px;
	}
	.page-title .page-mv {
		width: 330px;
		left: auto;
		right: 0;
		top: 96px;
	}
	.page-title {
		max-width: var(--cw);
		margin: auto;
		position: relative;
		height: 146px;
	}
	.page-title:has(.page-mv) {
		height: 348px;
	}


	.page-title .title {
		position: relative;
		gap: 10px;
		max-width: 100%;
	}
	.page-title .title .en {
		font-size: 40px;
		line-height: 47px;
	}
	.page-title .title .ja {
		font-size: 13px;
		line-height: 19px;
	}
	.page-content > h2.wp-block-heading strong {
		font-size: 13px;
		line-height: 19px;
	}
	.page-content > h2.wp-block-heading {
		font-size: 40px;
		line-height: 1.2;
		margin-bottom: 50px;
	}
	.page-content > * + h2.wp-block-heading {
		margin-top: 120px;
	}
}


/*------------------------------------------------------------
	Page - About
------------------------------------------------------------*/
.page-about-us .page-wrap {
	padding-bottom: 0;
}
.page-about-us .wp-block-columns {
	border-top: 1px solid var(--grey);
	border-bottom: 1px solid var(--grey);
	padding: 40px 0;
	font-size: 13px;
	line-height: 1.45;
	letter-spacing: 0.2em;
}
.page-about-us .wp-block-columns + .wp-block-columns {
	margin-top: -1px;
}
.page-about-us .wp-block-columns > .wp-block-column:first-child {
	font-weight: 700;
}
.page-about-us .wp-block-columns h3 {
	font-weight: 700;
}
.page-about-us .wp-block-columns * + h3 {
	margin-top: 30px;
}
.page-about-us .wp-block-columns h4 {
	font-weight: 700;
	display: flex;
	gap: 10px;
	margin-bottom: 9px;
}
.page-about-us .wp-block-columns ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-left: 16px;
}
.page-about-us .wp-block-columns ul li {
	display: flex;
	gap: 10px;
}.page-about-us .wp-block-columns ul li::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 1px;
	border-radius: 50%;
	background: var(--grey);
	margin-top: 9px;
}

.page-about-us .wp-block-columns h4::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
	margin-top: 7px;
}

.page-about-us .wp-block-columns * + h4 {
	margin-top: 20px;
}
.page-about-us .wp-block-columns .wp-block-gallery {
	gap: 30px;
	display: inline-flex;
	width: auto;
	margin-bottom: 30px;
}
#page.page-about-us .wp-block-columns .wp-block-image {
	width: auto !important;
}
#page.page-about-us .wp-block-columns .wp-block-gallery img {
	height: 138px;
	width: auto;
}
.page-about-us .map {
	width: 100vw;
	height: 420px;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
}
.page-about-us .map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 800px) {
	.page-about-us .wp-block-columns {
		padding: 30px 0;
		gap: 10px;
		letter-spacing: 0.1em;
	}
	.page-about-us .wp-block-columns h3 {
		margin-top: 20px;
	}
	.page-about-us .wp-block-columns * + h3 {
		margin-top: 30px;
	}
	.page-about-us .wp-block-column:first-child p br {
		display: none;
	}
	.page-about-us .wp-block-columns .wp-block-gallery {
		gap: 20px;
		flex-wrap: nowrap;
		margin-bottom: 20px;
	}
	#page.page-about-us .wp-block-columns .wp-block-gallery img {
		height: 96px;
	}
}



/*------------------------------------------------------------
	Page - Vision
------------------------------------------------------------*/
.page-vision .page-content {
	position: relative;
}
.page-vision .page-content h3 {
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	letter-spacing: 0.1em;
	margin-bottom: 70px;
}
.page-vision .page-content h3.en {
	font-family: var(--en);
	line-height: 29px;
	margin-bottom: 20px;
}
.page-vision .page-content p {
	font-size: 13px;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.page-vision .page-content p + p {
	margin-top: 1.8em;
}
.page-vision .page-content .wp-block-image {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 486px;
	transform: translate(100px,0);
}
@media screen and (max-width: 800px) {
	.page-vision .page-content > h2.wp-block-heading {
		letter-spacing: 0.15em;
	}
	.page-vision .page-content h3 {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 50px;
	}
	.page-vision .page-content h3.en {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 16px;
	}
	.page-vision .page-content p {
		line-height: 2;
	}
	.page-vision .page-content .wp-block-image {
		display: block;
		width: 285px;
		margin-top: 50px;
		margin: auto;
		position: static;
		transform: none;
	}
}


/*------------------------------------------------------------
	Page - Service
------------------------------------------------------------*/

.page-service .page-content h2.description {
	font-weight: 700;
	font-size: 25px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	margin-bottom: 70px;
}
.page-service .service-list > li {
	margin-top: 140px;
}
.page-service .service-list > li > h2 {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.448;
	letter-spacing: 0.1em;
	color: var(--blue);
	padding-bottom: 20px;
	border-bottom: 1px solid var(--grey);
}
.page-service .service-list .item-list > li {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 30.7% auto;
	gap: 7.8%;
}
.page-service .service-list .item-list > li .title {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.448;
	letter-spacing: 0.1em;
	color: var(--blue);
}
.page-service .service-list .item-list > li .detail h3 {
	font-size: 16px;
	line-height: 1.8;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
.page-service .service-list .item-list > li .detail h4 {
	font-size: 13px;
	line-height: 1.448;
	letter-spacing: 0.1em;
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}
.page-service .service-list .item-list > li .detail p + h4 {
	margin-top: 20px;
}
.page-service .service-list .item-list > li .detail h4::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
	margin-top: 7px;
}
.page-service .service-list .item-list > li .detail p {
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
.page-service .service-list .item-list > li .detail .btn {
	text-align: right;
	margin-top: 40px;
}
.page-service .service-list .item-list > li .detail .btn a {
	color: var(--black);
}
.page-service .service-list .item-list > li .detail .btn a.ex {
	padding-right: 0;
	display: inline-flex;
	gap: 20px;
}
.page-service .service-list .item-list > li .detail .btn a .external {
	padding-top: 3px;
}
@media screen and (max-width: 800px) {
	.page-service .page-content h2.description {
		font-size: 20px;
		line-height: 1.5;
	}
	.page-service .page-content > h2.wp-block-heading {
		margin-bottom: 70px;
	}
	.page-service .service-list {
		margin-top: -50px;
	}
	.page-service .service-list > li {
		margin-top: 120px;
	}
	.page-service .service-list > li > h2 {
		font-size: 20px;
	}
	.page-service .service-list .item-list > li {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.page-service .service-list .item-list > li .title {
		text-align: center;
	}
	.page-service .service-list .item-list > li .title img {
		max-width: 306px;
	}
	.page-service .service-list .item-list > li .detail h3 {
		font-size: 14px;
		line-height: 1.8;
	}
	.page-service .service-list .item-list > li .detail .btn {
		margin-top: 30px;
	}
}
/*------------------------------------------------------------
	Page - Recruit
------------------------------------------------------------*/

.page-recruit .page-content h2.toggle {
	position: relative;
	font-weight: 700;
	font-size: 25px;
	line-height: 1.44;
	letter-spacing: 0.1em;
	margin-bottom: 0;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--grey);
	cursor: pointer;
	transition: opacity 0.5s;
}
.page-recruit .page-content h2.toggle.opened {
	border: none;
}
.page-recruit .page-content h2.toggle:hover {
	opacity: 0.5;
}
.page-recruit .page-content h2.toggle + .wp-block-group  {
	display: none;
}
.page-recruit .page-content h2.toggle::before {
	content: '';
	display: block;
	text-align: right;
	position: absolute;
	width: 16px;
	height: 9px;
	top: 15px;
	right: 0;
	background: url(images/toggle.svg) center center/contain no-repeat;
	transition: 0.5s;
}
.page-recruit .page-content h2.opened.toggle::before {
	transform: rotate(180deg);
}

.page-recruit .page-content h2.toggle::after {
	content: '情報を見る';
	text-align: right;
	position: absolute;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.2em;
	top: 10px;
	right: 25px;
}
.page-recruit .page-content h2.toggle.opened::after {
	content: '情報を閉じる';
}
.page-recruit .page-content > * + h2.toggle {
	margin-top: 50px;
}
.page-recruit .page-content .wp-block-group {
	padding-bottom: 60px;
	border-bottom: 1px solid var(--grey);
}
.page-recruit .page-content .wp-block-group h3 {
	font-weight: 700;
	font-size: 13px;
	line-height: 1.45;
	letter-spacing: 0.1em;
	margin-top: 30px;
}
.page-recruit .page-content .wp-block-group p {
	font-weight: 400;
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin-top: 10px;
}

@media screen and (max-width: 800px) {
	.page-recruit .page-content h2.toggle {
		font-size: 14px;
		line-height: 1.8;
		padding-right: 180px;
	}
	.page-recruit .page-content h2.toggle::after {
		top: 5px;
		font-size: 13px;
		line-height: 1;
	}
	.page-recruit .page-content h2.toggle::before {
		top: 6px;
	}
	.page-recruit .page-content .wp-block-group {
		margin-top: -10px;
	}
}
/*------------------------------------------------------------
	Page - Privacy Policy
------------------------------------------------------------*/
.page-template-privacy .page-content h2 {
	font-weight: 500;
	font-size: 40px;
	line-height: 58px;
	letter-spacing: 0.15em;
}
.page-template-privacy .page-content h3 {
	font-weight: 500;
	font-size: 16px;
	line-height: 200%;
	text-align: justify;
	letter-spacing: 0.1em;
}
.page-template-privacy .page-content > * + * {
	margin-top: 70px;
}
/* 事故発生予防と発生時の対応 */

.page-template-privacy .page-content h4 {
	font-weight: 700;
	font-size: 13px;
	line-height: 19px;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}
.page-template-privacy .page-content p {
	font-weight: 400;
	font-size: 13px;
	line-height: 180%;
	text-align: justify;
	letter-spacing: 0.2em;
}
.page-template-privacy .page-content p + p {
	margin-top: 30px;
}
.page-template-privacy .page-content .wp-block-separator {
	box-shadow: none;
	border: none;
	border-top: 1px solid var(--grey);
	margin: 30px 0;
}

@media screen and (max-width: 800px) {
	.page-template-privacy .page-content h2 {
		font-size: 20px;
		line-height: 1.448;
		letter-spacing: 0.12em;
	}
	.page-template-privacy .page-content > * + * {
		margin-top: 50px;
	}
	.page-template-privacy .page-content h3 {
		font-size: 14px;
		line-height: 1.8;
	}
	.page-template-privacy .page-content p {
		letter-spacing: 0.1em;
	}
	.page-template-privacy .page-content p + p {
		margin-top: 20px;
	}

}
/*------------------------------------------------------------
	Archive - News
------------------------------------------------------------*/
#news .page-content {
	display: grid;
	grid-template-columns: 204px auto;
}
#news .year-archive {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.2em;
	font-family: var(--en);
	font-weight: 300;
	gap: 20px;
	display: flex;
	flex-direction: column;
}
#news .year-archive a {
	color: var(--grey);
	transition: 0.5s;
}
#news .year-archive a:hover,
#news .year-archive a[aria-current="page"] {
	color: var(--black);
}
@media screen and (max-width: 800px) {

	#news .page-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	#news .year-archive {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}
}
/*------------------------------------------------------------
	Single - News
------------------------------------------------------------*/
.single-title {
	max-width: var(--cw);
	width: 100%;
	margin: auto;
}
.single-title .datecat {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
}
.single-title .datecat > img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}
.single-title .datecat .date {
	font-family: var(--en);
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.2em;
	font-weight: 400;
	margin-right: 20px;
}
.single-title .datecat .cat {
	display: flex;
	gap: 10px;
}
.single-title .datecat .cat li {
	color: var(--white);
	background: var(--blue);
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	height: 27px;
	padding: 0 16px 1px;
	border-radius: 100px;
}
.single-title .datecat .sns {
	display: flex;
	gap: 20px;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 1;
	height: 100%;
}
.single-title .datecat .sns img {
	height: 20px;
	width: auto;
	vertical-align: top;
}
.single-title .title {
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-bottom: 70px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--grey);
}

.single-content {
	max-width: var(--cw);
	width: 100%;
	margin: auto;
	font-size: 13px;
	line-height: 1.8;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.single-content > * + * {
	margin-top: 50px;
}
.single-content > .btn {
	margin-top: 100px;
	text-align: right;
}
@media screen and (max-width: 800px) {
	.single-title .title {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.single-content {
		font-weight: 400;
	}
	.single-content > * + * {
		margin-top: 30px;
	}
	.single-content > .btn {
		margin-top: 70px;
	}
	.single-title .datecat {
		flex-wrap: wrap;
		margin-bottom: 60px;
	}
	.single-title .datecat .sns {
		width: 100%;
		margin-top: 30px;
		position: relative;
	}

}
/*------------------------------------------------------------
	Page - Contact
------------------------------------------------------------*/
#page.page-contact .page-content {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.page-contact .wpcf7 {
	margin-top: 90px;
}
.page-contact .wpcf7 table {
	width: 100%;
}
.page-contact .wpcf7 th {
	font-size: 13px;
	line-height: calc(18 / 13);
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: left;
	vertical-align: top;
	padding-top: 16px;
	padding-bottom: 30px;
	width: 306px;
}
.page-contact .wpcf7-list-item {
	margin-left: 0;
}
.page-contact .wpcf7 td {
	font-size: 13px;
	line-height: calc(18 / 13);
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-bottom: 30px;
}
.page-contact .wpcf7 select,
.page-contact .wpcf7 input[type=text],
.page-contact .wpcf7 input[type=email],
.page-contact .wpcf7 input[type=tel] {
	-webkit-appearance: none;
	box-shadow: none;
	font-size: 13px;
	line-height: calc(18 / 13);
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 15px 30px;
	background-color: #fff;
	width: 100%;
	border: 1px solid var(--grey);
	border-radius: 5px;
}
.page-contact .wpcf7 select {
	padding-left: 54px;
	background: url(images/icon-select.svg) left 30px top 17px/14px 14px no-repeat;
}
.page-contact .wpcf7 select option {
	font-family: var(--ja);
	font-weight: 500;
}
.page-contact .wpcf7 ::placeholder {
	color: var(--placeholder);
}
.page-contact .wpcf7 .your-acceptance-wrap label {
	position: relative;
	display: block;
	cursor: pointer;
}
.page-contact .wpcf7 input[type=checkbox] {
	position: absolute;
	opacity: 0;
}
.page-contact .wpcf7 .wpcf7-acceptance {
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
	letter-spacing: 0.2em;
}
.page-contact .wpcf7 input[type=checkbox] + span {
	position: relative;
	padding: 0 0 0 54px;
	display: block;
	min-width: 100%;
}
.page-contact .wpcf7 input[type=checkbox] + span::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	height: 34px;
	width: 34px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--grey);
	z-index: 1;
}

.page-contact .wpcf7 input[type=checkbox] + span::after {
	content: '';
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	position: absolute;
	top: 9px;
	left: 9px;
	z-index: 2;
	background: var(--grey);
	opacity: 0;
	transition: .5s;
}
.page-contact .wpcf7 input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.page-contact .wpcf7 textarea {
	-webkit-appearance: none;
	box-shadow: none;
	padding: 15px 30px;
	font-size: 13px;
	line-height: calc(18 / 13);
	height: 240px;
	background-color: #fff;
	max-width: 780px;
	width: 100%;
	border: 1px solid var(--grey);
	border-radius: 5px;
	vertical-align: top;
}


.page-contact .wpcf7 .submit {
	text-align: center;
	padding-top: 70px;
	position: relative;
	margin-top: 0;
}
.page-contact .wpcf7 .submit .wpcf7-spinner {
	position: absolute;
	top: 40px;
	right: 0;
}
.page-contact .wpcf7 input[type=submit] {
	display: inline-flex;
	max-width: 384px;
	width: 100%;
	height: 80px;
	align-items: center;
	justify-content: center;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	box-shadow: none;
	font-size: 20px;
	font-family: var(--en);
	font-weight: 500;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	padding: 0;
	color: var(--black);
	line-height: 1;
	border: 1px solid var(--black);
	border-radius: 10px;
	background-color: var(--white);
	cursor: pointer;
	transition: .5s;
}
.page-contact .wpcf7 input[type=submit]:hover {
	background: var(--black);
	color: var(--white);
}
.page-contact .wpcf7 input[type=submit]:disabled {
	opacity: .5;
	cursor: not-allowed;
}
.page-contact .wpcf7 input[type=submit]:disabled:hover {
	opacity: 1;
}
p:has(span[data-name="your-acceptance"]) {
	text-align: center;
	padding-top: 40px;
}
@media screen and (max-width: 800px) {
	#page.page-contact .page-content {
		font-size: 14px;
		line-height: 1.8;
	}
	.page-contact .page-content > h2.wp-block-heading {
		margin-bottom: 70px;
	}
	.page-contact .wpcf7 {
		margin-top: 50px;
	}
	.page-contact .wpcf7 th {
		display: block;
		width: 100%;
		padding-top: 0;
		padding-bottom: 20px;
	}
	.page-contact .wpcf7 td {
		display: block;
		width: 100%;
		padding-bottom: 40px;
	}
	.page-contact .wpcf7 textarea,
	.page-contact .wpcf7 select,
	.page-contact .wpcf7 input[type=text],
	.page-contact .wpcf7 input[type=email],
	.page-contact .wpcf7 input[type=tel] {
		padding: 15px 20px;
	}
	.page-contact .wpcf7 select {
		padding-left: 44px;
		background: url(images/icon-select.svg) left 20px top 17px/14px 14px no-repeat;
	}
	p:has(span[data-name="your-acceptance"]) {
		padding-top: 10px;
	}
	.page-contact .wpcf7 .wpcf7-acceptance {
		font-size: 16px;
		line-height: 1.448;
		text-align: left;
		letter-spacing: 0.1em;
	}
	.page-contact .wpcf7 input[type=checkbox] + span::before {
		top: 50%;
		margin-top: -17px;
	}
	.page-contact .wpcf7 input[type=checkbox] + span::after {
		top: 50%;
		margin-top: -8px;
	}
	.page-contact .wpcf7 .submit {
		padding-top: 50px;
	}
	.page-contact .wpcf7 input[type=submit] {
		max-width: 172px;
	}
}

/*------------------------------------------------------------
	
------------------------------------------------------------*/

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}