@charset "UTF-8";
html, body, ul, ol, p {
	list-style: none;
	font-family: "Noto Sans JP","游ゴシック","Yu Gothic","メイリオ",Meiryo,sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color: #333;
	padding: 0;
}
body {
	background-color: transparent;
	overflow-x: hidden;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: "Noto Sans JP","游ゴシック","Yu Gothic","メイリオ",Meiryo,sans-serif;
	font-weight: 400;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: #333;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	transition: .5s ease;
}
a:hover {
	opacity: .6;
	cursor: pointer;
}
a:focus,
*:focus {
	outline: none;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: .5s ease;}
a:hover img {
	cursor: pointer;
	zoom: 1;
}
@media screen and (max-width: 768px) {
	html, body, ul, ol, p {
		font-size: 14px;
	}
}


/*------------------------------------
ページのフェードイン
------------------------------------*/
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*エフェクト*/
.effect > .ef-fade02 {
	transition: .8s;
}
.ef-fade02 {
	opacity: 0;
	transform: translate(0, 60px);
	-webkit-transform: translate(0, 60px);
}
.fade02 {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}


/*------------------------------------
フォント
------------------------------------*/
.jp {
	font-family: "Noto Sans JP", sans-serif;
}
.en {
	font-family: "Outfit", sans-serif;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.g-h
------------------------------------*/
.g-h {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	line-height: 1;
	margin-bottom: 40px;
}
.g-h .en {
	font-size: 32px;
	letter-spacing: .08em;
	color: #0062b1;
}
.g-h .jp {
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	.g-h .en {
		font-size: 24px;
	}
	.g-h .jp {
		font-size: 14px;
	}
}


/*------------------------------------
.link
------------------------------------*/
.link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0062b1;
	border-radius: 30px;
	max-width: 260px;
	width: 100%;
	height: 60px;
	line-height: 1;
	color: #fff;
	margin: 0 auto;
}
.link a:after {
	content: "";
	position: absolute;
	right: 20px;
	background-image: url("../images/common/btn-arrow.svg");
	background-size: cover;
	width: 7px;
	height: 12px;
	filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {}


/*------------------------------------
#accordion
------------------------------------*/
#accordion > li {
	background-color: #fff;
	border: 1px solid #ccd4e0;
	border-radius: 16px;
}
#accordion > li:not(:last-child) {
	margin-bottom: 20px;
}
#accordion .que {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 20px 32px;
	cursor: pointer;
}
#accordion .que h3 {
	flex: 1;
	font-size: 16px;
}
#accordion .que .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #0062b1;
	border-radius: 50%;
	width: 24px;
	height: 24px;
}
#accordion .que .arrow:after {
	content: "";
	background-image: url("../images/common/arrow.svg");
	background-size: cover;
	width: 6px;
	height: 8px;
	transform: rotate(90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .que.active .arrow:after {
	transform: rotate(-90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .ans {
	display: none;
	padding: 0 32px 24px 50px;
}
#accordion .ans p:not(:last-child) {
	margin-bottom: 16px;
}
#accordion .ans p a {
	text-decoration: underline;
	color: #0062b1;
}
#accordion .ans p a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	#accordion > li:not(:last-child) {
		margin-bottom: 10px;
	}
	#accordion .que {
		padding: 20px 24px;
	}
	#accordion .que h3 {
		font-size: 14px;
	}
	#accordion .ans {
		padding: 0 24px 20px 36px;
	}
}



/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
header {
	background-color: #0062b1;
	position: relative;
	height: 156px;
	z-index: 9998;
}
header .logo {
	position: absolute;
	top: 50px;
	left: 77px;
	width: 283px;
	filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
	header {
		height: 70px;
	}
	header .logo {
		top: 24px;
		left: 24px;
		width: 180px;
	}
}


/*------------------------------------
.menu
------------------------------------*/
header .menu {
	position: fixed;
	top: 0;
	right: -400px;
	background-color: #fff;
	width: 400px;
	height: 100%;
	padding: 120px 56px 56px;
	overflow-y: auto;
	transition: right .5s ease;
	z-index: 1000;
}
header .menu.open {
	right: 0;
}
header .menu div:not(:last-child) {
	margin-bottom: 16px;
}
header .menu div > a {
	font-size: 18px;
	letter-spacing: .08em;
	color: #0062b1;
}
header .menu div.blk > a {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
header .menu div.blk > a:after {
	content: "";
	display: block;
	background-image: url("../images/common/blank.svg");
	background-size: cover;
	width: 12px;
	height: 12px;
}
header .menu .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 64px;
}
header .menu .sns li {
	width: 40px;
	height: 40px;
}
header .menu .sns li:last-child {
	width: 30px;
	height: 30px;
}
@media screen and (max-width: 768px) {
	header .menu {
		right: -320px;
		width: 320px;
		padding: 80px 32px 32px;
	}
	header .menu .sns li {
		width: 32px;
		height: 32px;
	}
	header .menu .sns li:last-child {
		width: 25px;
		height: 25px;
	}
}


/*------------------------------------
.hamburger
------------------------------------*/
.hamburger {
	position: fixed;
	top: 62px;
	right: 77px;
	cursor: pointer;
	z-index: 9999;
}
.hamburger:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #0062b1;
	border-radius: 50%;
	width: 80px;
	height: 80px;
}
.hamburger div {
	position: relative;
	background-color: #fff;
	width: 28px;
	height: 2px;
	margin: 5px 0;
	transition: 0.4s;
	z-index: 99;
}
.hamburger.open div:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
	opacity: 0;
}
.hamburger.open div:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 768px) {
	.hamburger {
		top: 30px;
		right: 30px;
	}
	.hamburger:after {
		width: 52px;
		height: 52px;
	}
	.hamburger div {
		width: 20px;
		height: 1px;
		margin: 3px 0;
	}
	.hamburger.open div:nth-child(1) {
		transform: rotate(45deg) translate(3px, 3px);
	}
	.hamburger.open div:nth-child(3) {
		transform: rotate(-45deg) translate(3px, -3px);
	}
}


/*------------------------------------
.overlay
------------------------------------*/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease;
	visibility: hidden;
	z-index: 900;
}
.overlay.open {
	backdrop-filter: blur(4px);
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 768px) {}


/*--------------------------------------------------------------------------
.link-list
--------------------------------------------------------------------------*/
.link-list {
	display: flex;
	background-color: #0062b1;
	height: 250px;
}
.link-list a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	position: relative;
	width: 50%;
	line-height: 1;
}
.link-list a:not(:last-child) {
	border-right: 1px solid #fff;
}
.link-list a.arr:before,
.link-list a.arr:after {
	content: "";
	position: absolute;
}
.link-list a.arr:before {
	right: 50px;
	background-color: #fff;
	border-radius: 12px;
	width: 24px;
	height: 24px;
}
.link-list a.arr:after {
	right: 58px;
	background-image: url("../images/common/btn-arrow.svg");
	background-size: cover;
	width: 7px;
	height: 12px;
}
.link-list a.blk:after {
	content: "";
	position: absolute;
	right: 80px;
	background-image: url("../images/common/blank.svg");
	background-size: cover;
	width: 15px;
	height: 15px;
	filter: brightness(0) invert(1);
}
.link-list a span {
	color: #fff;
}
.link-list a span.en {
	font-size: 32px;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px){
	.link-list {
		flex-direction: column;
		height: auto;
	}
	.link-list a {
		width: 100%;
		height: 120px;
	}
	.link-list a:not(:last-child) {
		border: none;
		border-bottom: 1px solid #fff;
	}
	.link-list a.arr:before {
		right: 25px;
	}
	.link-list a.arr:after {
		right: 33px;
	}
	.link-list a.blk:after {
		right: 30px;
	}
	.link-list a span.en {
		font-size: 24px;
	}
	.link-list a span.jp {
		font-size: 14px;
	}
}


/*--------------------------------------------------------------------------
#page-top
--------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	margin: 0;
	z-index: 24;
}
#page-top a {
	display: block;
	background: url("../images/common/page-top.svg") no-repeat center;
	background-size: 44px auto;/*この場合は高さが自動設定*/
	width: 44px;
	height: 44px;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 768px){
	#page-top {
		right: 4%;
	}
}


/*--------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
footer {
	padding-top: 80px;
}
footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1260px;
	width: calc(100% - 154px);
	margin: 0 auto;
}
footer > .container {
	padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
	footer {
		padding-top: 50px;
	}
	footer .container {
		width: calc(100% - 10vw);
	}
	footer > .container {
		padding-bottom: 50px;
	}
}


/*------------------------------------
.footer-left
------------------------------------*/
footer .footer-left {
	max-width: 440px;
	width: 100%;
}
footer .footer-left .logo {
	width: 283px;
	margin-bottom: 32px;
}
footer .footer-left .sns {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 40px;
}
footer .footer-left .sns li {
	width: 40px;
	height: 40px;
}
footer .footer-left .sns li:last-child {
	width: 30px;
	height: 30px;
}
@media screen and (max-width: 768px) {
	footer .footer-left .logo {
		width: 180px;
		margin-bottom: 16px;
	}
	footer .footer-left .sns {
		margin-top: 24px;
	}
	footer .footer-left .sns li {
		width: 32px;
		height: 32px;
	}
	footer .footer-left .sns li:last-child {
		width: 25px;
		height: 25px;
	}
}


/*------------------------------------
.footer-right
------------------------------------*/
footer .footer-right {
	display: flex;
	gap: 20px;
	max-width: 630px;
	width: 100%;
}
footer .footer-right section {
	width: calc((100% - 20px)/2);
}
footer .footer-right div:not(:last-child) {
	margin-bottom: 16px;
}
footer .footer-right div > a {
	font-size: 18px;
	letter-spacing: .08em;
	color: #0062b1;
}
footer .footer-right div.blk > a {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
footer .footer-right div.blk > a:after {
	content: "";
	display: block;
	background-image: url("../images/common/blank.svg");
	background-size: cover;
	width: 12px;
	height: 12px;
}
@media screen and (max-width: 768px) {
	footer .footer-right {
		display: none;
	}
}


/*------------------------------------
.footer-bottom
------------------------------------*/
footer .footer-bottom {
	border-top: 1px solid #ccd4e0;
	padding: 16px 0 80px;
}
footer .footer-bottom .container {
	display: flex;
	justify-content: space-between;
}
footer .footer-bottom .links {
	display: flex;
	gap: 16px;
}
footer .footer-bottom .links a {
	display: flex;
	align-items: center;
	gap: 16px;
	letter-spacing: .08em;
}
footer .footer-bottom .copyright {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {}


/*--------------------------------------------------------------------------
固定ページ共通
--------------------------------------------------------------------------*/
/*------------------------------------
.ttl
------------------------------------*/
.ttl {
	padding: 80px 77px 0;
}
@media screen and (max-width: 768px) {
	.ttl {
		padding: 40px 5vw 0;
	}
}


/*------------------------------------
.cate-list
------------------------------------*/
.cate-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 1260px;
	width: calc(100% - 154px);
	margin: 0 auto;
}
.cate-list li {
	position: relative;
	width: calc((100% - 32px)/3);
}
.cate-list li:before,
.cate-list li:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #0062b1;
}
.cate-list li:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.cate-list li:after {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
}
.cate-list li:hover:before,
.cate-list li:hover:after {
	opacity: 1;
}
.cate-list li a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #ccd4e0;
	height: 60px;
	line-height: 1.2;
	text-align: center;
	padding: 0 8px;
	z-index: 0;
}
.cate-list li a:hover {
	opacity: 1;
}
.cate-list li a:before,
.cate-list li a:after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	z-index: 10;
	transition: 0.5s ease;
	background: #0062b1;
}
.cate-list li a:before {
	top: 0;
	left: -1px;
	width: 2px;
	height: 100%;
}
.cate-list li a:after {
	top: 0;
	right: -1px;
	width: 2px;
	height: 100%;
}
.cate-list li:hover a:before,
.cate-list li:hover a:after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.cate-list {
		gap: 8px;
		width: calc(100% - 10vw);
	}
	.cate-list li {
		width: calc((100% - 8px)/2);
	}
	.cate-list li a {
		height: 50px;
	}
}



/*--------------------------------------------------------------------------
投稿関連
--------------------------------------------------------------------------*/
/*------------------------------------
.topic-path
------------------------------------*/
.topic-path {
	background-color: #f2f9ff;
	padding: 16px 0;
}
.topic-path ul {
	line-height: 1;
	padding: 0 56px;
}
.topic-path ul li,
.topic-path ul span {
	display: inline;
	font-size: 14px;
	line-height: 1.3;
}
.topic-path ul li a:after {
	content: "／";
	padding: 0 8px;
}
@media screen and (max-width: 768px) {
	.topic-path ul {
		padding: 0 16px;
	}
}


/*------------------------------------
投稿一覧
------------------------------------*/
.archive .container {
	width: calc(100% - 20vw);
	margin: 0 auto;
	padding-bottom: 120px;
}
.archive .info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 64px 40px;
}
.archive .entry {
	width: calc((100% - 120px)/4);
}
.archive .entry .img {
	margin-bottom: 32px;
}
.archive .entry .img img {
	width: 768px;
	aspect-ratio: 10 / 9;
	object-fit: cover;
	object-position: center top;
}
.archive .entry .txt .post-tags {
	margin-bottom: 8px;
}
.archive .entry .txt .post-tags > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFF781;
	width: 80px;
	height: 24px;
	font-size: 14px;
	line-height: 1;
}
.archive .entry .txt h2 {
	font-size: 20px;
}
.archive .entry .txt .post-date {
	letter-spacing: .08em;
	margin-top: 8px;
}
@media screen and (max-width: 768px) {
	.archive .container {
		padding-bottom: 64px;
	}
	.archive .info-list {
		gap: 40px 24px;
	}
	.archive .entry .img {
		margin-bottom: 16px;
	}
	.archive .entry {
		width: calc((100% - 24px)/2);
	}
	.archive .entry .txt h2 {
		font-size: 16px;
	}
}

/*.pager*/
.archive .pager,
.archive .pager ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.archive .pager {
	gap: 64px;
}
.archive .pager ul {
	gap: 32px;
}
.archive .pager ul li a,
.archive .pager ul li span {
	display: block;
	font-family: "Outfit", sans-serif;
	line-height: 1;
	padding: 0 16px;
}
.archive .pager ul li a {
	color: #ccd4e0;
}
.archive .pager ul li a:hover {
	color: #333;
	opacity: 1;
}
.archive .pager .arrow.prev a,
.archive .pager .arrow.next a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0062b1;
	border-radius: 50%;
	width: 46px;
	height: 46px;
}
.archive .pager .arrow.prev a img,
.archive .pager .arrow.next a img {
	width: 7px;
	height: 12px;
	filter: brightness(0) invert(1);
}
.archive .pager .arrow.prev a img {
	transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
	.archive .pager {
		gap: 16px;
	}
	.archive .pager ul {
		gap: 0;
	}
	.archive .pager ul li a,
	.archive .pager ul li span {
		font-size: 16px;
		padding: 0 16px 16px;
	}
}


/*------------------------------------
投稿詳細
------------------------------------*/
/*.main-sec*/
.single .main-sec .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-bottom: 1px solid #ccd4e0;
	padding-bottom: 40px;
}
.single .main-sec ul {
	display: flex;
}
.single .main-sec ul li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #FFF781;
	height: 28px;
	font-size: 14px;
	line-height: 1;
	padding: 0 16px;
}
.single .main-sec h1 {
	font-size: 28px;
}
.single .main-sec time {
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.single .main-sec .container {
		gap: 8px;
		padding-bottom: 16px;
	}
	.single .main-sec h1 {
		font-size: 20px;
	}
}

/*.container*/
.single .container {
	max-width: 944px;
	width: calc(100% - 20vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {}

/*.cms-block*/
.single .cms-block h2 {
	font-size: 28px;
	margin: 100px 0 24px;
}
.single .cms-block picture {
	display: block;
	margin: 40px 0;
}
.single .cms-block picture img {
	max-width: 100% !important;
}
.single .cms-block > p {
	line-height: 2;
	margin: 24px 0;
}
.single .cms-block strong {
	font-weight: 900;
}
.single .cms-block em {
	font-style: italic;
}
.single .cms-block ul,
.single .cms-block ol {
	margin: 24px 0;
	padding-left: 24px;
}
.single .cms-block ul li {
	list-style: disc;
}
.single .cms-block ol li {
	list-style: decimal;
}
.single .cms-block li:not(:last-child) {
	margin-bottom: 4px;
}
.single .cms-block blockquote {
	position: relative;
	border-left: 1px solid #ccd4e0;
	padding: 8px 0 8px 56px;
}
.single .cms-block blockquote:before {
	top: -16px;
	left: 24px;
	font-size: 40px;
}
.single .cms-block blockquote > p {
	font-size: 18px;
}
.single .cms-block a {
	text-decoration: underline;
	color: #0062b1;
}
.single .cms-block a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.single .cms-block h2 {
		font-size: 20px;
		margin: 50px 0 16px;
	}
	.single .cms-block picture {
		margin: 24px 0;
	}
	.single .cms-block > p {
		margin: 16px 0;
	}
}

/*.link*/
.single .link {
	padding: 120px 0;
}
@media screen and (max-width: 768px) {
	.single .link {
		padding: 64px 0;
	}
}


/*------------------------------------
お問い合わせ関連
------------------------------------*/
.contact section {
	padding: 32px 0 200px;
}
.contact section .container {
	max-width: 800px;
	width: calc(100% - 20vw);
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.contact section {
		padding: 16px 0 100px;
	}
}

/*.g-form*/
.g-form .form-col {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #ccd4e0;
	padding: 24px 0;
}
.g-form .form-col dt {
	width: 200px;
}
.g-form .form-col dt .req {
	color: #dc1111;
	margin-left: 4px;
}
.g-form .form-col dd {
	width: calc(100% - 240px);
	padding-left: 40px;
}
.g-form .form-col dd.date p {
	display: flex;
	gap: 24px;
}
.g-form .form-col dd.date p [data-name="your-hour"] {
	position: relative;
}
.g-form .form-col dd.date p [data-name="your-hour"]:after {
	content: "";
	position: absolute;
	top: 29px;
	right: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #333;
}
.g-form .form-col dd.date p [data-name="your-hour"] select {
	padding-right: 40px;
}
.g-form .form-col dd .conditional-input {
	margin-top: 16px;
}
.g-form .wpcf7-list-item {
	display: block;
	margin: 0;
}
.g-form .wpcf7-list-item:not(:last-child) {
	margin-bottom: 8px;
}
.g-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}
.g-form input[type=checkbox],
.g-form input[type=radio] {
	border: 1px solid #ccd4e0;
	width: 20px;
	height: 20px;
	background-color: #fff;
	transition: 0.5s ease;
}
.g-form input[type=checkbox]:after {
	top: 1px;
	border-width: 2px;
	transform: rotate(45deg);
}
.g-form input[type=checkbox]:checked {
	background-color: #333;
	border: 1px solid #333;
}
.g-form input[type=checkbox]:checked:after {
	border-color: #fff;
}
.g-form .wpcf7-list-item-label {
	cursor: pointer;
}
.g-form input[type=text],
.g-form input[type=email],
.g-form input[type=tel],
.g-form input[type=number],
.g-form input[type=password],
.g-form input[type=search],
.g-form input[type=url] {
	border: 1px solid #ccd4e0;
	width: 100%;
	margin: 0;
	padding: 16px;
}
.g-form textarea,
.g-form select {
	display: block;
	border: 1px solid #ccd4e0;
	width: 100%;
	padding: 16px;
	outline: none;
}
.g-form textarea {
	height: 160px;
}
.g-form .privacy-agree {
	margin-top: 24px;
}
.g-form .privacy-agree p {
	margin-bottom: 8px;
}
.g-form .privacy-agree p a {
	text-decoration: underline;
}
.g-form .privacy-agree p a:hover {
	text-decoration: none;
}
.g-form .submit {
	margin-top: 64px;
}
.g-form .submit input[type=submit] {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0062b1 !important;
	border: none;
	border-radius: 30px;
	max-width: 260px;
	width: 100%;
	height: 60px;
	font-size: 16px;
	line-height: 1;
	color: #fff !important;
	margin: 0 auto;
	transition: .5s ease;
}
.g-form .submit input[type=submit]:hover {
	opacity: .6;
}
.g-form .submit .wpcf7-spinner {
	display: none;
}
.wpcf7 form.invalid .wpcf7-response-output {
	display: none;
}
@media screen and (max-width: 768px) {
	.g-form .form-col {
		padding: 16px 0;
	}
	.g-form .form-col dt,
	.g-form .form-col dd {
		width: 100%;
	}
	.g-form .form-col dt {
		margin-bottom: 8px;
	}
	.g-form .form-col dd {
		padding: 0;
	}
	.g-form .form-col dd.date p {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.g-form .form-col dd.date p [data-name="your-hour"]:after {
		top: 27px;
	}
	.g-form input[type=text],
	.g-form input[type=email],
	.g-form input[type=tel],
	.g-form input[type=number],
	.g-form input[type=password],
	.g-form input[type=search],
	.g-form input[type=url],
	.g-form textarea {
		font-size: 16px;
	}
	.g-form textarea {
		height: 110px;
	}
	.g-form .submit {
		margin-top: 40px;
	}
}

/*.thanks*/
.thanks section {
	padding: 80px 0 120px;
}
.thanks section .container {
	max-width: 800px;
	width: calc(100% - 20vw);
	margin: 0 auto;
}
.thanks h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 32px;
}
.thanks p {
	text-align: center;
}
.thanks p:not(:last-of-type) {
	margin-bottom: 24px;
}
.thanks p.notes {
	color: #dc1111;
}
.thanks .link {
	margin-top: 56px;
}
@media screen and (max-width: 768px) {
	.thanks section {
		padding: 40px 0 64px;
	}
	.thanks h2 {
		font-size: 16px;
		text-align: left;
	}
	.thanks p {
		text-align: left;
	}
	.thanks .link {
		margin-top: 32px;
	}
}


/*------------------------------------
#privacy-policy
------------------------------------*/
#privacy-policy .container {
	max-width: 800px;
	width: calc(100% - 20vw);
	margin: 0 auto;
}
#privacy-policy section {
	margin-bottom: 200px;
}
#privacy-policy section:first-of-type {
	padding-top: 80px;
}
#privacy-policy h2 {
	font-size: 24px;
	margin-bottom: 16px;
}
#privacy-policy .block:not(:last-child) {
	margin-bottom: 64px;
}
#privacy-policy .block h3 {
	position: relative;
	font-size: 20px;
	margin-bottom: 32px;
	padding-bottom: 16px;
}
#privacy-policy .block h3:before,
#privacy-policy .block h3:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
}
#privacy-policy .block h3:before {
	background-color: #ccd4e0;
	width: 100%;
}
#privacy-policy .block h3:after {
	background-color: #0062b1;
	width: 120px;
}
#privacy-policy .block p:not(:last-child) {
	margin-bottom: 16px;
}
#privacy-policy .block address {
	font-style: normal;
}
@media screen and (max-width: 768px) {
	#privacy-policy section {
		margin-bottom: 100px;
	}
	#privacy-policy section:first-of-type {
		padding-top: 40px;
	}
	#privacy-policy .block:not(:last-child) {
		margin-bottom: 32px;
	}
	#privacy-policy h2 {
		font-size: 18px;
		margin-bottom: 8px;
	}
	#privacy-policy .block h3 {
		font-size: 16px;
		margin-bottom: 16px;
	}
}
