@charset "UTF-8";

.sec_inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

@media screen and (max-width: 1280px) {
	.sec_inner {
		width: calc(100% - 4vw);
	}
}

@media screen and (max-width: 640px) {
	.sec_inner {
		width: calc(100% - 8vw);
	}
}

.zarazara {
	background-image: url("../img/common/bg_grad.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
}
.zarazara_2 {
	background-image: url("../img/common/bg_grad_2.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
}
.zarazara.dark {
	filter: grayscale(1);
}

@media screen and (max-width: 1280px) {
	.zarazara {
		border-radius: 1.6vw;
	}
	.zarazara_2 {
		border-radius: 1.6vw;
	}
}

@media screen and (max-width: 640px) {
	.zarazara {
		border-radius: 3vw;
	}
	.zarazara_2 {
		border-radius: 3vw;
	}
}

a.hover01 {
	position: relative;
	z-index: 1;
}
a.hover01::after {
	background: radial-gradient(rgba(131, 175, 200, .49), rgba(153, 187, 207, .49) 40%, rgba(229, 229, 229, .49) 80%, transparent);
	border-radius: 50%;
	content: '';
	display: block;
	filter: blur(15px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: ease .2s;
	height: 0;
	width: 0;
	z-index: -1;
}
a.hover01:hover::after {
	height: 90px;
	width: 90px;
}

a.hover02 {
	padding-left: 20px;
	position: relative;
}
a.hover02::before {
	background-color: #2E6280;
	border: solid 2px #2E6280;
	border-radius: 50%;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: ease .3s;
	height: 5px;
	width: 5px;
}
a.hover02:hover::before {
	background-color: transparent;
	height: 9px;
	width: 9px;
}

@media screen and (max-width: 1280px) {
	a.hover01:hover::after {
		height: 6.9vw;
		width: 6.9vw;
	}

	a.hover02 {
		padding-left: 1.6vw;
	}
	a.hover02::before {
		height: .36vw;
		width: .36vw;
	}
	a.hover02:hover::before {
		height: .58vw;
		width: .58vw;
	}
}

@media screen and (max-width: 640px) {
	a.hover01:hover::after {
		height: 6.9vw;
		width: 6.9vw;
	}

	a.hover02 {
		padding-left: 4vw;
	}
	a.hover02::before {
		height: 1vw;
		width: 1vw;
	}
	a.hover02:hover::before {
		height: 2vw;
		width: 2vw;
	}
}


/** ---------------
	header
--------------- **/
header {
	margin-top: 35px;
}

@media screen and (max-width: 1280px) {
	header {
		margin-top: 3vw;
	}
}

@media screen and (max-width: 640px) {
	header {
		margin-top: 8vw;
	}
}

/** -- signboard -- **/
.signboard {
	backdrop-filter: blur(30px);
	--webkit-backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 60px;
	box-shadow: 0 0 10px 0 #C1C1C1;
	margin: 0 auto;
	position: fixed;
	left: 50%;
	top: 20px;
	transform: translateX(-50%);
	height: 60px;
	width: 100%;
	max-width: 1200px;
	z-index: 999;
}
.signboard .logo {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 72px;
}

.signboard nav {
	height: 100%;
	width: 100%;
}
.signboard nav ul {
	align-content: center;
	justify-content: center;
	height: 100%;
}
.signboard nav ul li {
	margin: 0 15px;
	font-weight: bold;
}

.signboard .contact_btn {
	background-color: #F77F7F;
	border: solid 1px #F77F7F;
	border-radius: 30px;
	color: white;
	display: block;
	padding: 2px 0 3px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: ease .3s;
	width: 170px;
}
.signboard .contact_btn:hover {
	background-color: #FFE9E0;
	color: #F77F7F;
}
.signboard .contact_btn span {
	background: url("../img/common/icon_contact.svg") no-repeat 0 50% / 20px;
	display: table;
	margin: 0 auto;
	padding-left: 30px;
	transition: ease .3s;
}
.signboard .contact_btn:hover span {
	background-image: url("../img/common/icon_contact_h.svg");
}

.signboard .menu_btn {
	display: none;
}

.signboard .nav_bg {
	display: none;
}

@media screen and (max-width: 1280px) {
	.signboard {
		border-radius: 6vw;
		top: 1.6vw;
		height: 4.8vw;
		width: calc(100% - 4vw);
	}
	.signboard .logo {
		left: 3.1vw;
		width: 5.7vw;
	}

	.signboard nav ul li {
		margin: 0 1.2vw;
	}

	.signboard .contact_btn {
		border-radius: 3vw;
		padding: .1vw 0 .2vw;
		right: 1.6vw;
		width: 13.5vw;
	}
	.signboard .contact_btn span {
		background-size: 1.6vw;
		padding-left: 2.3vw;
	}
}

@media screen and (max-width: 640px) {
	.signboard {
		backdrop-filter: initial !important;
		--webkit-backdrop-filter: initial !important;
		border-radius: 10vw;
		left: 4vw;
		top: 4vw;
		transform: initial;
		height: 12vw;
		width: calc(100% - 8vw);
	}
	.signboard .logo {
		left: 8vw;
		width: 20vw;
		z-index: 9999;
	}

	.signboard nav {
		background: url("../img/common/bg_grad.png") no-repeat center / cover;
		display: none;
		filter: grayscale(1);
		overflow: hidden;
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		z-index: 999;
	}
	.signboard nav ul {
		display: block;
	}
	.signboard nav ul li {
		font-size: 5.4vw;
		margin: 0 0 6vw;
		text-align: center;
	}

	.signboard .contact_btn {
		border-radius: 10vw;
		font-size: 4vw;
		padding: 1vw 2vw;
		right: 20vw;
		width: 28vw;
		z-index: 999;
	}
	.signboard .contact_btn span {
		background-size: 4vw;
		padding-left: 6vw;
	}
	
	.signboard .menu_btn {
		display: block;
		position: absolute;
		right: 6vw;
		top: 2vw;
		height: 8vw;
		width: 8vw;
		z-index: 9999;
	}
	.signboard .menu_btn.active::before {
		background-color: white;
		border-radius: 50%;
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		transition: ease .5s;
		height: 12vw;
		width: 12vw;
	}
	.signboard .menu_btn span {
		background-color: #2E6280;
		display: block;
		position: absolute;
		left: 0;
		transform: translateY(-50%);
		transition: ease .5s;
		height: 3px;
		width: 100%;
	}
	.signboard .menu_btn span:nth-child(1) {
		top: calc(50% - 2.5vw);
	}
	.signboard .menu_btn span:nth-child(2) {
		top: 50%;
	}
	.signboard .menu_btn span:nth-child(3) {
		top: calc(50% + 2.5vw);
	}
	.signboard .menu_btn.active span:nth-child(1) {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.signboard .menu_btn.active span:nth-child(2) {
		transform: translateX(40vw);
	}
	.signboard .menu_btn.active span:nth-child(3) {
		top: 50%;
		transform: translateY(-50%) rotate(-225deg);
	}
}

/** ---------------
	footer
--------------- **/
footer.zarazara {
	border-radius: 0;
	margin-top: 100px;
	padding: 40px 0 30px;
}

footer .logo {
	margin: 0 auto 20px;
	width: 120px;
}

footer nav.menu {
	font-weight: 700;
	margin-bottom: 20px;
}
footer nav.menu ul {
	justify-content: center;
}
footer nav.menu li {
	letter-spacing: 2px;
	margin: 0 20px;
	position: relative;
}
footer nav.menu li:first-child {
	padding-right: 40px;
}
footer nav.menu li:first-child::after {
	content: '/';
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
footer nav.menu li:last-child {
	padding-left: 40px;
}
footer nav.menu li:last-child::after {
	content: '/';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

footer nav.other {
	margin-bottom: 40px;
}
footer nav.other ul {
	justify-content: center;
}
footer nav.other ul li {
	font-size: 14px;
}

footer .copyright {
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	footer.zarazara {
		margin-top: 8vw;
		padding: 3.2vw 0 2.6vw;
	}

	footer .logo {
		margin-bottom: 1.6vw;
		width: 9.6vw;
	}

	footer nav.menu {
		margin-bottom: 1.6vw;
	}
	footer nav.menu li {
		letter-spacing: .16vw;
		margin: 0 1.6vw;
	}
	footer nav.menu li:first-child {
		padding-right: 3.2vw;
	}
	footer nav.menu li:last-child {
		padding-left: 3.2vw;
	}

	footer nav.other {
		margin-bottom: 3.2vw;
	}
	footer nav.other ul li {
		font-size: 1.1vw;
	}

	footer .copyright {
		font-size: 1.1vw;
	}
}

@media screen and (max-width: 640px) {
	footer.zarazara {
		margin-top: 16vw;
		padding: 8vw 0 6vw;
	}

	footer .logo {
		margin-bottom: 4vw;
		width: 20vw;
	}

	footer nav.menu {
		margin: 0 -2vw 4vw;
	}
	footer nav.menu li {
		letter-spacing: .2vw;
		margin: 0 2vw;
	}
	footer nav.menu li:first-child {
		padding-right: 5vw;
	}
	footer nav.menu li:last-child {
		padding-left: 5vw;
	}

	footer nav.other {
		margin-bottom: 8vw;
	}
	footer nav.other ul li {
		font-size: 3.4vw;
	}

	footer .copyright {
		font-size: 3.2vw;
	}
}

/** ---------------
	main
--------------- **/
/** -- page_title -- **/
.page_title {
	box-shadow: 0 0 10px 0 #C0C8D6;
	margin: 0 20px;
	position: relative;
	height: 500px;
	width: auto;
}
.page_title h1 {
	font-size: 18px;
	letter-spacing: 2px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: calc(50% - 30px);
	transform: translate(-50%, -50%);
}
.page_title h1 span {
	display: block;
	font-size: 96px;
	letter-spacing: 8px;
	margin-bottom: -10px;
	white-space: nowrap;
}

@media screen and (max-width: 1280px) {
	.page_title {
		margin: 0 1.6vw;
		height: 36vw;
	}
	.page_title h1 {
		font-size: 1.44vw;
		letter-spacing: .16vw;
		top: calc(50% - 2.4vw);
	}
	.page_title h1 span {
		font-size: 7.6vw;
		letter-spacing: .6vw;
		margin-bottom: -.8vw;
	}
}

@media screen and (max-width: 640px) {
	.page_title {
		margin: 0 2vw;
		height: 48vw;
	}
	.page_title h1 {
		font-size: 3.4vw;
		letter-spacing: .2vw;
		top: 50%;
		width: 100%;
	}
	.page_title h1 span {
		font-size: 8vw;
		letter-spacing: 1vw;
		margin-bottom: -1vw;
	}
}

/** -- co_contact -- **/
.co_contact {
	margin: 0 20px;
	padding: 280px 0 80px;
	position: relative;
}
.co_contact h2 {
	color: white;
	font-size: 262px;
	letter-spacing: 24px;
	position: absolute;
	left: -10px;
	top: -153px;
}

.co_contact .inner {
	margin: 0 -25px;
}
.co_contact .box {
	background-color: white;
	border-radius: 20px;
	margin: 0 25px;
	padding: 60px 60px;
	position: relative;
	text-align: center;
	width: calc(50% - 50px);
}
.co_contact .box::before {
	content: '';
	display: block;
	position: absolute;
	height: 350px;
	width: 350px;
}
.co_contact .box_01::before {
	background: url("../img/common/3d__0009_hitsuji_02.png") no-repeat center / 100%;
	right: -85px;
	top: -207px;
}
.co_contact .box_02::before {
	background: url("../img/common/3d__0001_PC_02.png") no-repeat center / 100%;
	right: -75px;
	top: -200px;
}
.co_contact h3 {
	color: white;
	font-size: 102px;
	letter-spacing: 8px;
	position: absolute;
	left: 0;
	top: -115px;
}
.co_contact h4 {
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 30px;
}
.co_contact p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 30px;
}
.co_contact a {
	background-color: #F77F7F;
	border: solid 1px #F77F7F;
	border-radius: 30px;
	color: white;
	display: table;
	margin: 0 auto;
	padding: 2px 40px 3px;
	transition: ease .3s;
}
.co_contact a:hover {
	background-color: #FFE9E0;
	color: #F77F7F;
}
.co_contact a span {
	background: url("../img/common/icon_contact.svg") no-repeat 0 50% / 20px;
	display: table;
	margin: 0 auto;
	padding-left: 30px;
	transition: ease .3s;
}
.co_contact a:hover span {
	background-image: url("../img/common/icon_contact_h.svg");
}

@media screen and (max-width: 1280px) {
	.co_contact {
		margin: 0 1.6vw;
		padding: 22.1vw 0 6.4vw;
	}
	.co_contact h2 {
		font-size: 20.7vw;
		letter-spacing: 1.9vw;
		left: -.8vw;
		top: -12vw;
	}

	.co_contact .inner {
		margin: 0 -1.5vw;
	}
	.co_contact .box {
		border-radius: 1.6vw;
		margin: 0 1.5vw;
		padding: 4.7vw 4.7vw;
		width: calc(50% - 3vw);
	}
	.co_contact .box::before {
		height: 27.7vw;
		width: 27.7vw;
	}
	.co_contact .box_01::before {
		right: -6.8vw;
		top: -16.4vw;
	}
	.co_contact .box_02::before {
		right: -5.9vw;
		top: -15.8vw;
	}
	.co_contact h3 {
		font-size: 8.1vw;
		letter-spacing: .6vw;
		top: -9.2vw;
	}
	.co_contact h4 {
		font-size: 1.44vw;
		letter-spacing: .16vw;
		margin-bottom: 2.3vw;
	}
	.co_contact p {
		font-size: 1.44vw;
		margin-bottom: 2.3vw;
	}
	.co_contact a {
		border-radius: 2.3vw;
		padding: .12vw 3.1vw .2vw;
	}
	.co_contact a span {
		background-size: 1.6vw;
		padding-left: 2.3vw;
	}
}

@media screen and (max-width: 640px) {
	.co_contact {
		margin: 0 4vw;
		padding: 30vw 0 8vw;
	}
	.co_contact h2 {
		font-size: 23vw;
		letter-spacing: 1vw;
		left: -1vw;
		top: -13vw;
	}

	.co_contact .inner {
		margin: 0;
	}
	.co_contact .box {
		border-radius: 3vw;
		margin: 0;
		padding: 8vw 4vw;
		width: 100%;
	}
	.co_contact .box::before {
		height: 42vw;
		width: 42vw;
	}
	.co_contact .box_01 {
		margin-bottom: 14vw;
	}
	.co_contact .box_01::before {
		right: -12vw;
		top: -23vw;
	}
	.co_contact .box_02::before {
		right: -10vw;
		top: -23vw;
	}
	.co_contact h3 {
		font-size: 12vw;
		letter-spacing: 1vw;
		top: -13.6vw;
	}
	.co_contact h4 {
		font-size: 3.8vw;
		letter-spacing: .3vw;
		margin-bottom: 4vw;
	}
	.co_contact p {
		font-size: 3.2vw;
		margin-bottom: 6vw;
	}
	.co_contact a {
		border-radius: 10vw;
		padding: 1vw 8vw 1.2vw;
	}
	.co_contact a span {
		background-size: 5vw;
		padding-left: 7vw;
	}
}

/** -- co_b_card -- **/
.co_b_card {
	margin-top: 80px;
}
.co_b_card .sec_inner {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 0 10px 0 rgba(131, 175, 200, .16);
	overflow: hidden;
	padding: 60px 60px 80px;
	position: relative;
}
.co_b_card .text h2 {
	font-size: 20px;
	margin-bottom: 30px;
}
.co_b_card .text h3 {
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 2.5px;
	line-height: 1.8;
	margin-bottom: 40px;
}
.co_b_card .text p {
	line-height: 1.8;
}

.co_b_card .form {
	box-shadow: 5px 5px 10px 5px rgba(131, 175, 200, .16);
	margin-left: 70px;
	margin-top: 50px;
	padding: 30px 40px;
	position: relative;
	height: 100%;
	width: 450px;
}
.co_b_card .form .message {
	font-size: 12px;
	margin-bottom: 30px;
	text-align: center;
}
.co_b_card .form .wpforms-container {
	margin: 0;
}
.co_b_card .form .wpforms-field {
	align-items: center;
	display: flex;
	margin-bottom: 10px;
	padding: 0;
}
.co_b_card .form .wpforms-field-label {
	color: #2E6280;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	text-align: right;
	width: 110px;
}
.co_b_card .form .wpforms-field-medium {
	border: none;
	border-bottom: solid 1px #2D6280;
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	margin-left: auto;
	height: 30px;
	width: calc(100% - 130px);
	max-width: initial;
}
.co_b_card .form .wpforms-submit {
	background-color: #2E6280 !important;
	background-image: url("../img/common/icon_contact.svg");
	background-position: 45px 50%;
	background-repeat: no-repeat;
	background-size: 20px;
	border: solid 1px #2E6280;
	border-radius: 50px;
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin: 0 auto;
	margin-top: 30px;
	padding: 0 0 0 30px;
	transition: ease .2s;
	height: 34px;
	width: 228px;
}
.co_b_card .form .wpforms-submit:hover {
	background-color: rgba(46, 98, 128, .1) !important;
	background-image: url("../img/common/icon_contact_h.svg");
	background-position: 45px 50%;
	background-repeat: no-repeat;
	color: #2D6280;
}

.co_b_card .form .deco {
	position: absolute;
	right: -190px;
	top: 52px;
	width: 240px;
}
.co_b_card .form .deco02 {
	font-size: 10px;
	position: absolute;
	bottom: -90px;
	right: -20px;
}

div.wpforms-container-full .wpforms-confirmation-container-full {
	background: transparent !important;
	border: none !important;
	font-size: 14px;
	padding: 0 !important;
}
div.wpforms-container-full .wpforms-confirmation-container-full p {
	color: #2e6280 !important;
}

@media screen and (max-width: 1280px) {
	.co_b_card {
		margin-top: 6.3vw;
	}
	.co_b_card .sec_inner {
		border-radius: 1.6vw;
		padding: 4.8vw 4.7vw 6.3vw;
	}
	.co_b_card .text h2 {
		font-size: 1.57vw;
		margin-bottom: 2.3vw;
	}
	.co_b_card .text h3 {
		font-size: 2.05vw;
		letter-spacing: .2vw;
		margin-bottom: 3.2vw;
	}

	.co_b_card .form {
		margin-left: 5.5vw;
		margin-top: 5vw;
		padding: 2.3vw 2.3vw 3.2vw;
		width: 35.6vw;
	}
	.co_b_card .form .message {
		font-size: .95vw;
		margin-bottom: 2.3vw;
	}
	.co_b_card .form .wpforms-field {
		margin-bottom: .8vw;
	}
	.co_b_card .form .wpforms-field-label {
		font-size: 1.1vw;
		width: 110px;
	}
	.co_b_card .form .wpforms-field-medium {
		font-size: 1.1vw;
		height: 2.3vw;
		width: calc(100% - 10.3vw);
	}
	.co_b_card .form .wpforms-submit {
		background-position: 3.5vw 50%;
		border-radius: 5vw;
		background-size: 1.57vw;
		font-size: 1.28vw;
		margin-top: 2.3vw;
		padding: 0 0 0 2.3vw;
		height: 2.7vw;
		width: 18vw;
	}

	.co_b_card .form .deco {
		right: -15vw;
		top: 4.8vw;
		width: 19vw;
	}
	.co_b_card .form .deco02 {
		font-size: .8vw;
		bottom: -7.1vw;
		right: -1.6vw;
	}
	
	div.wpforms-container-full .wpforms-confirmation-container-full {
		font-size: 1.1vw;
	}
}

@media screen and (max-width: 640px) {
	.co_b_card {
		margin-top: 12vw;
	}
	.co_b_card .sec_inner {
		border-radius: 3vw;
		padding: 8vw 4vw 10vw;
	}
	.co_b_card .text {
		margin-bottom: 10vw;
	}
	.co_b_card .text h2 {
		font-size: 4.8vw;
		margin-bottom: 4vw;
	}
	.co_b_card .text h3 {
		font-size: 4.8vw;
		letter-spacing: .2vw;
		margin-bottom: 8vw;
	}

	.co_b_card .form {
		margin-left: 0;
		margin-top: 0;
		padding: 6vw 4vw;
		width: 76vw;
	}
	.co_b_card .form .message {
		font-size: 3.4vw;
		margin-bottom: 6vw;
	}
	.co_b_card .form .wpforms-field {
		display: block;
		margin-bottom: 6vw;
	}
	.co_b_card .form .wpforms-field-label {
		font-size: 3.2vw;
		margin-bottom: 2vw;
		text-align: left;
		width: auto;
	}
	.co_b_card .form .wpforms-field-medium {
		font-size: 3.4vw;
		height: 8vw;
		width: 100%;
	}
	.co_b_card .form .wpforms-submit {
		background-position: 7vw 50%;
		background-size: 5.4vw;
		border-radius: 10vw;
		font-size: 3.6vw;
		margin-top: 8vw;
		padding-left: 6vw;
		height: 10vw;
		width: 50vw;
	}

	.co_b_card .form .deco {
		right: -17vw;
		top: 66vw;
		width: 30vw;
	}
	.co_b_card .form .deco02 {
		font-size: 3vw;
		bottom: -8vw;
		right: 8vw;
	}
	
	div.wpforms-container-full .wpforms-confirmation-container-full {
		font-size: 3.2vw;
	}
}
