@charset "UTF-8";
/* charset */

/*
	font-family: 'Anton', sans-serif;
	font-family: 'Manrope', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: 'Noto Serif JP', serif;
*/

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

body {
	margin: 0;
	padding: 0;
	line-height: 1.6em;
	color: #000;
	background: #fff;
	font-size: 16px;
	font-family:  'Noto Serif JP', 'Anton', serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	letter-spacing: 1px\9;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: auto;
}

h1, h2, h3, h4, h5, h6, h7,
ul, ol, li, dl, dt, dd,
article, section,
div, figure, p, form, img, legend, i {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	list-style: none;
	font-style: normal;
	font-weight: normal;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

a ,
button ,
span {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all  0.4s ease;
	text-decoration: none!important;
}

a:link {color: #000;}
a:visited {color: #000;}
a:active {color: #000;}

a:hover {
	opacity: .60;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-khtml-opacity: .60;
	-moz-opacity: .60;
	text-decoration: none!important;
}

a:hover img ,
button:hover img {
	opacity: .75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
	-khtml-opacity: .75;
	-moz-opacity: .75;
}
a:focus,
*:focus {
	outline: none;
}
.error {
	color: #c00;
}
.error span {
	display: block;
}
.error span:before {
	content: "\f071";
	margin-right: 3px;
	color: #c00;
	font-size: 15px;
	font-family: "FontAwesome";
}
.hide {
	display: none!important;
}
.spi {
	display: none!important;
}
.spb {
	display: none!important;
}
.pci {
	display: inline!important;
}
.pcb {
	display: block!important;
}




.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7 .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

.wpcf7 form.submitting .ajax-loader {
	visibility: visible;
}

.wpcf7 .ajax-loader::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7 .ajax-loader::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}




#wrapper {
	padding-top: 85px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.inner {
	margin: 0 auto;
	width: 90%;
	max-width: 1000px;
	position: relative;
}
header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
header .inner {
	width: 96%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 85px;
}
header .logo {
}
header nav {
	display: flex;
	height: 100%;
}
header nav span {
	position: relative;
}
header nav span:before ,
header nav span:last-child:after {
	content: "";
	width: 2px;
	height: 16px;
	background: #0e207a;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
header nav span:last-child:after {
	left: auto;
	right: 0;
}
header nav a {
	display: flex;
	align-items: center;
	padding: 0 0.75em;
	height: 100%;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #0e207a!important;
	letter-spacing: 0;
	white-space: nowrap;
}
header nav a ,
header nav a i {
	font-weight: 700;
}
footer {
	position: relative;
	padding: 80px 0;
	letter-spacing: 0.2em;
	background: #0e207a;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
}
footer .inner {
	max-width: 960px;
}
footer nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
footer nav span {
	position: relative;
}
footer nav span:before ,
footer nav span:last-child:after {
	content: "";
	width: 2px;
	height: 16px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
footer nav span:last-child:after {
	left: auto;
	right: 0;
}
footer nav a {
	display: flex;
	align-items: center;
	padding: 0 0.75em;
	height: 100%;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff!important;
	letter-spacing: 0;
	white-space: nowrap;
}

footer p {
	font-size: 12px;
	text-align: center;
}

footer .btm_scroll {
	position: absolute;
	width: 20px;
	top: -40px;
	right: 0;
}

/*button*/
.btn_w {
	text-align: center;
}
.btn_w a {
	display: block;
	position: relative;
	background: #fff;
	padding: 25px 0;
	width: 370px;
	font-size: 18px;
	color: #0e207a;
}
.btn_w a:after {
	content: '';
	position: absolute;
	background: url(/img/arrow_01.png) no-repeat;
	width: 57px;
	height: 7px;
	top: 34px;
	right: 25px;
}
.btn_b {
	text-align: center;
}
.btn_b a {
	display: block;
	position: relative;
	background: linear-gradient(90deg, rgba(14,32,122,1) 0%, rgba(12,27,102,1) 100%);
	padding: 25px 0;
	width: 370px;
	font-size: 18px;
	color: #fff;
}
.btn_b a:after {
	content: '';
	position: absolute;
	background: url(/img/arrow_02.png) no-repeat;
	width: 57px;
	height: 7px;
	top: 34px;
	right: 25px;
}
.en {
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.2em;
	font-weight: 400!important;
}
/*home*/

.topimg {
	margin: 0 auto;
	width: 100%;
	height: 530px;
	background: url(/img/topimg.jpg) no-repeat center top;
	background-size: cover;
	position: relative;
}
.topimg dl {
	display: flex;
	flex-flow: column;
	margin: 75px 0 0 80px;
	position: absolute;
	top: 0;
	left: 0;
}
.topimg dl dt {
	display: flex;
	flex-flow: column;
}
.topimg dl dt span {
	margin: 0 0 10px 7px;
	padding: 0.2em 0 0.35em;
	width: 315px;
	line-height: 1em;
	font-size: 28px;
	color: #fff;
	background: #0E207A;
	text-align: center;
	letter-spacing: 0.2em;
}
.topimg dl dt b {
}
.topimg dl dd {
}
.topimg dl dd p {
	line-height: 1.9;
	font-size: 22px;
	font-weight: 700;
}
.info {
}
.info dl {
	display: flex;
	flex-flow: column;
	margin: 0 auto;
	background: #88B4DC;
	position: relative;
}
.info dl dt {
	display: flex;
	justify-content: center;
	color: #fff;
	background: #0E207A;
}
.info dl dt span {
	padding: 0.5em 0;
	font-size: 18px;
}
.info dl dd {
	display: flex;
	justify-content: center;
	padding: 65px 0;
}
.info dl dd .btn_w a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 820px;
	height: 120px;
	pointer-events: none;
}
.info dl dd .btn_w a:after {
	content: none;
}
.info dl dd .btn_w a p {
	display: flex;
	flex-flow: column;
	padding-left: 100px;
	color: #0E207A;
	position: relative;
}
.info dl dd .btn_w a p:before {
	content: "";
	width: 63px;
	height: 63px;
	background: url(/img/infotel.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.info dl dd .btn_w a p span {
	margin-bottom: 0.5em;
	line-height: 1em;
	font-size: 18px;
}
.info dl dd .btn_w a p b {
	line-height: 1em;
	font-size: 48px;
}

.cap {
	margin-bottom: 60px;
	color: #fff;
	background: #0E207A;
}
.cap .in {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 40px 0;
	width: 100%;
	color: #fff;
	background: #0E207A;
	text-align: center;
	position: relative;
}
.cap span {
	padding-bottom: 10px;
	font-size: 22px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.2em;
}
.cap b {
	line-height: 1.5em;
	font-size: 36px;
	font-weight: 400;
}

.top .sec01 ,
.top .sec02 ,
.top .sec03 ,
.top .sec04 ,
.top .sec05 {
	padding: 80px 0;
	position: relative;
}


.top .sec01 {
}
.top .sec01 .cap {
	width: 520px;
}
.top .sec01 figure {
	width: 53%;
	text-align: right;
	position: absolute;
	top: 50px;
	right: 0;
	z-index: -1;
}
.top .sec01 ol {
}
.top .sec01 ol li {
	display: flex;
}
.top .sec01 ol li + li {
	margin-top: 40px;
}
.top .sec01 ol li i {
	margin-right: 1em;
	color: #0E207A;
	font-size: 32px;
	font-family: 'Anton', sans-serif;
}
.top .sec01 ol li p {
	line-height: 1.75;
	font-size: 20px;
}
.top .sec01 .btn_b a {
	margin: 60px auto 0;
	width: 370px;
}
.top .sec02 {
	background: #ECF4FA;
}

.top .sec02 dl {
}
.top .sec02 dl dt {
	display: flex;
	justify-content: center;
	margin-bottom: 1%;
	background: #88B4DC;
}
.top .sec02 dl dt span {
	padding: 0.75em 0;
	line-height: 1em;
	font-size: 30px;
	color: #fff;
}
.top .sec02 dl dd {
}
.top .sec02 dl dd ul {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
.top .sec02 dl dd ul li {
	display: flex;
	flex-flow: column;
	margin-bottom: 1%;
	width: 49.5%;
}
.top .sec02 dl dd ul li b {
	display: flex;
	justify-content: center;
	margin-bottom: 1%;
	padding: 0.75em 0;
	line-height: 1em;
	font-size: 21px;
	color: #231815;
	background: #D8E7F4;
}
.top .sec02 dl dd ul li p {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 1em 0;
	height: 100%;
	font-size: 18px;
	color: #0E207A;
	background: #fff;
	text-align: center;
}
.top .sec02 dl dd ul li p i {
	line-height: 1em;
	font-size: 36px;
	font-family: 'Manrope', sans-serif;
	letter-spacing: -0.05em;
}
.top .sec02 dl dd ul li p small {
	display: block;
	margin-top: 0.5em;
	line-height: 1em;
	color: #000;
	font-size: 15px;
}
.top .sec02 dl dd .btm {
	margin: 1em 0 3em;
	line-height: 1em;
	font-size: 21px;
	text-align: center;
}
.top .sec02 dl + dl dd .btm {
	margin: 1em 0;
}

.top .sec03 {
	background: #88B4DC;
}
.top .sec03 .cap {
	width: 480px;
	position: relative;
	z-index: 2;
}
.top .sec03 figure {
	width: 57%;
	max-width: 570px;
	position: absolute;
	top: 55px;
	right: 0;
}
.top .sec03 figure img {
}
.top .sec03 figure img + img {
	margin-top: 50px;
}
.top .sec03 ol {
	width: 380px;
}
.top .sec03 ol li {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 27px 0;
	background: #fff;
	position: relative;
}
.top .sec03 ol li + li {
	margin-top: 30px;
}
.top .sec03 ol li:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #ffffff transparent transparent transparent;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}
.top .sec03 ol li:last-child:before {
	content: none;
}
.top .sec03 ol li span {
	margin-bottom: 10px;
	line-height: 1em;
	font-size: 18px;
	font-family: 'Anton', sans-serif;
	color: #0e207a;
	letter-spacing: 0.2em;
}
.top .sec03 ol li b {
	line-height: 1em;
	font-size: 27px;
	font-weight: 400;
}



.top .sec04 {
	background: url(/img/index_sec03bg01.jpg) no-repeat center top;
	background-size: cover;
}
.top .sec04:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(14, 32, 122, 0.6);
	top: 0;
	left: 0;
}
.top .sec04 .inner {
	display: flex;
	flex-flow: column;
}
.top .sec04 .cap {
	margin-left: auto;
	width: 480px;
	z-index: 1;
}
.top .sec04 p {
	margin-left: auto;
	width: 480px;
	color: #fff;
	line-height: 1.85em;
	font-size: 18px;
}
.top .sec04 figure {
	width: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.top .sec05 {
	background: #ECF4FA;
}
.top .sec05 .cap {
	width: 480px;
}
.top .sec05 ul {
	display: flex;
	flex-flow: column;
}
.top .sec05 ul li {
	display: flex;
	flex-flow: column;
	border-left: 2px solid #0e207a;
	padding: 40px 40px 40px 130px;
	min-height: 138px;
	background: #fff;
	position: relative;
}
.top .sec05 ul li + li {
	margin-top: 20px;
}
.top .sec05 ul li b {
	margin-bottom: 0.75em;
	font-size: 25px;
}
.top .sec05 ul li b i {
	font-size: 50px;
	font-family: 'Anton', sans-serif;
	color: #0e207a;
	letter-spacing: 0.2em;
	position: absolute;
	top: 40px;
	left: 40px;
}
.top .sec05 ul li b span {
	color: #0e207a;
}
.top .sec05 ul li p {
	font-size: 18px;
}
.top .sec05 .btn_b a {
	margin: 60px auto 0;
}

.top .contact {
	background: url(/img/index_sec05bg01.jpg) no-repeat center top;
	background-size: cover;
	padding: 65px 0;
	position: relative;
}
.top .contact:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(14, 32, 122, 0.4);
	top: 0;
	left: 0;
}

.top .contact .inner {
	max-width: 960px;
}
.top .contact dl {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-bottom: 50px;
	color: #fff;
}
.top .contact dl dt {
	display: flex;
	font-size: 30px;
}
.top .contact dl dd {
	text-align: center;
}
.top .contact dl dd p {
	margin: 30px auto 15px;
	font-size: 23px;
}
.top .contact dl dd span {
	display: inline-block;
	border: 1px solid #fff;
	padding: 0.25em;
	font-size: 21px;
}
.top .contact ul {
	display: flex;
	justify-content: space-around;
}
.top .contact ul li {
	margin-right: 30px;
}
.top .contact ul li:last-child {
	margin-right: 0;
}
.top .contact ul li {}
.top .contact ul li .btn_w {}
.top .contact ul li .btn_w a {
	width: 475px;
	font-size: 30px;
	padding: 50px 0;
}
.top .contact ul li .btn_w a:after {
	top: 60px;
}
.top .contact ul li .btn_w a:before {
	content: '';
	position: absolute;
	background: url(/img/icon_01.png) no-repeat;
	width: 29px;
	height: 29px;
	top: 50px;
	left: 86px;
}
.top .contact ul li:first-child .btn_w a {
	pointer-events: none;
}
.top .contact ul li:last-child .btn_w a:before {
	content: '';
	position: absolute;
	background: url(/img/icon_02.png) no-repeat;
	width: 32px;
	height: 24px;
	top: 52px;
	left: 65px;
}
.top .contact ul li:first-child .btn_w a:after {
	content: none;
}

/* ttl */
.ttl {
	margin-bottom: 120px;
/*
	padding-top: 36.33%;
*/
	padding-top: 465px;
	position: relative;
	z-index: 1;
}
.ttl .ttl_bg {
	display: block;
/*	padding-top: 24.61%;*/
	padding-top: 315px;
	width: 100%;
	background: #0e207a;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.ttl .ttl_txt {
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 100%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.ttl .ttl_txt span {
	display: block;
	margin-bottom: 10px;
	font-size: 26px;
	line-height: 1em;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.2em;
}
.ttl .ttl_txt h2 {
	line-height: 1em;
	font-size: 44px;
}
.ttl .ttl_txt p {
	font-size: 22px;
}

.company {}
.company .ttl {
	background: url(/img/company_topimg.jpg) no-repeat center center;
	background-size: cover;
}
.company .sec_01 {
	padding-bottom: 120px;
}
.company .sec_01 figure {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
.company .sec_01 figure span {
	margin-bottom: 3%;
	width: 31.333%;
}
.company .sec_01 figure span:nth-child(2) ,
.company .sec_01 figure span:nth-child(5) {
	margin: 0 1% 3%;
}

.company .sec_02 {
	padding-bottom: 120px;
}
.company .sec_02 .inner {
	width: 960px;
}
.company .sec_02 dl {
	display: flex;
	justify-content: space-between;
}
.company .sec_02 dl dt {}
.company .sec_02 dl dt span {
	display: block;
	padding-bottom: 10px;
	font-size: 22px;
	color: #0e207a;
}
.company .sec_02 dl dt h3 {
	display: block;
	padding-bottom: 30px;
	font-size: 36px;
	line-height: 1em;
}
.company .sec_02 dl dd {
	width: 685px;
}
.company .sec_02 dl dd ul {}
.company .sec_02 dl dd ul li {
	display: flex;
	padding: 20px 0 20px 10px;
	border-top: 1px solid #4b4b4b;
	font-size: 18px;
}
.company .sec_02 dl dd ul li b {
	display: block;
	width: 190px;
	font-weight: 400;
}
.company .sec_02 dl dd ul li p {
	width: 480px;
}

.company .sec_03 {
	height: 0;
	overflow: hidden;
	padding-top: 538px;
	position: relative;
}
.company .sec_03 iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

/* 追加 */


body.contact {
}
body.contact .ttl {
	margin: 0;
	background: url(/img/topimg_contact.jpg) no-repeat  center center;
	background-size: cover;
}
body.contact .ttl .btn_w {
	margin-top: 20px;
}
body.contact .ttl .btn_w a:after {
	right: 20px;
}
body.contact .sec01 {
	padding-top: 60px;
	background: #f5f5f5;
}
body.contact .sec01 .inner {
	margin: 0 auto;
	width: 90%;
	max-width: 1120px;
	position: relative;
}
body.contact .sec01 dl {
	display: flex;
	align-items: flex-start;
}
body.contact .sec01 dl dt {
	display: flex;
	flex-flow: column;
	width: 28.57%;
}
body.contact .sec01 dl dt span {
	margin-bottom: 0.5em;
	line-height: 1em;
	font-size: 22px;
	font-family: 'Anton', sans-serif;
	color: #0e207a;
	letter-spacing: 0.1em;
}
body.contact .sec01 dl dt b {
	line-height: 1em;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
body.contact .sec01 dl dd {
	width: 71.43%;
}
body.contact .sec01 dl dd ul {
	padding-bottom: 92px;
}
body.contact .sec01 dl dd ul li {
	margin-top: 27px;
	border-left: 2px solid #0e207a;
	padding: 28px 28px 28px 65px;
	background: #fff;
}
body.contact .sec01 dl dd ul li:first-child {
	margin-top: 0;
}
body.contact .sec01 dl dd ul li b {
	display: block;
	padding-right: 50px;
	position: relative;
	cursor: pointer;
}
body.contact .sec01 dl dd ul li b:before {
	content: "";
	border-radius: 100em;
	width: 30px;
	height: 30px;
	background: #0e207a;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
body.contact .sec01 dl dd ul li b:after {
	content: "＋";
	margin-top: -1px;
	line-height: 1em;
	font-size: 18px;
	color: #fff;
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
}
body.contact .sec01 dl dd ul li b.on:after {
	content: "－";
}
body.contact .sec01 dl dd ul li b i {
	line-height: 1.25em;
	font-size: 22px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.1em;
	position: absolute;
	top: 0;
	left: -42px;
}
body.contact .sec01 dl dd ul li b span {
	display: inline-block;
	line-height: 1.25em;
	font-size: 22px;
	font-weight: 700;
	color: #0e207a;
	letter-spacing: 0.1em;
}
body.contact .sec01 dl dd ul li p {
	padding: 20px 0 0 0;
}

body.contact .sec02 {
	padding: 100px 0;
}
body.contact .sec02 .sttl {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
body.contact .sec02 .sttl span {
	display: block;
	margin-bottom: 6px;
	color: #0e207a;
}
body.contact .sec02 .sttl h3 {
	font-size: 36px;
	margin-bottom: 60px;
}
body.contact .sec02 dl {
	display: flex;
	flex-flow: column;
	margin: 0 auto;
	max-width: 550px;
}
body.contact .sec02 dl dt {
	display: flex;
	align-items: center;
	padding-bottom: 0.5em;
}
body.contact .sec02 dl dt b {
	font-size: 22px;
	font-weight: 500;
}
body.contact .sec02 dl dt span {
	display: inline-block;
	margin-left: 1em;
	padding: 0 0.25em;
	color: #fff;
	background: #969696;
}
body.contact .sec02 dl dt span.chk {
	background: #af2626;
}
body.contact .sec02 dl dd {
	margin-bottom: 45px;
}
body.contact .sec02 dl dd input[type="text"] ,
body.contact .sec02 dl dd input[type="email"] ,
body.contact .sec02 dl dd input[type="tel"] ,
body.contact .sec02 dl dd input[type="url"] ,
body.contact .sec02 dl dd textarea {
	border-radius: 4px;
	border: 1px solid #808080;
	padding: 0.2em 0.5em;
	width: 100%;
	line-height: 1.5em;
	font-size: 1.2em;
	font-family: 'Noto Sans JP', sans-serif;
}
body.contact .sec02 dl dd textarea {
	height: 200px;
}
body.contact .sec02 dl dd .radio-choice {
	display: block;
	padding: 15px 0;
}
body.contact .sec02 label:hover span.wpcf7-list-item-label {
	color: #0e207a;
}
body.contact .sec02 label input[type="radio"] ,
body.contact .sec02 label input[type="checkbox"] {
	display: none;
}
body.contact .sec02 span.wpcf7-list-item-label {
	font-weight: 500;
	color: #000;
	position: relative;
}
body.contact .sec02 dl dd span.wpcf7-list-item-label:before {
	content: "";
	background: #fff;
	border-radius: 100%;
	border: 1px solid #888888;
	display: inline-block;
	width: 1.15em;
	height: 1.15em;
	position: relative;
	top: 0.25em;
	margin-right: 5px;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}
body.contact .sec02 dl dd label input[type="radio"]:checked + .wpcf7-list-item-label {
	color: #0e207a;
}
body.contact .sec02 dl dd label input[type="radio"]:checked + .wpcf7-list-item-label:before {
	background-color: #0e207a;
	box-shadow: inset 0 0 0 3px #fff;
}
body.contact .sec02 .sendbtn {
	text-align: center;
}
body.contact .sec02 .sendbtn input {
	margin: 0;
	border: 0;
	padding: 0;
	display: inline-block;
	padding: 20px 0;
	width: 340px;
	font-size: 18px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
	color: #fff;
	background: linear-gradient(90deg, rgba(14,32,122,1) 0%, rgba(12,27,102,1) 100%);
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all  0.4s ease;
}
body.contact .sec02 .sendbtn span {
	position: relative;
}
body.contact .sec02 .sendbtn span:after {
	content: '';
	position: absolute;
	background: url(/img/arrow_02.png) no-repeat;
	width: 57px;
	height: 7px;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
body.contact .sec02 .sendbtn input:hover {
	opacity: .60;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-khtml-opacity: .60;
	-moz-opacity: .60;
}
body.contact p.txt {
	margin: 0 auto;
	max-width: 900px;
	padding: 50px 0;
	font-size: 50px;
	text-align: center;
}
body.contact.fin .btn_b a {
	margin: 0 auto;
}
.contact .advice {
	margin: 0 auto;
	max-width: 550px;
}

.contact .outer {
	overflow: hidden;
	padding: 8px;
	border: 2px solid #3d3d3d;
	background: #fff;
}
.contact .outer .box {
	overflow: auto;
	width: 100%;
	height: 110px;
	padding: 0 60px;
	background: #fff;
	scrollbar-color: #919191 #fff;
	scrollbar-width: thin;
}
.contact .outer .box::-webkit-scrollbar {
    width: 5px;
}
.contact .outer .box::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 100em;
}
.contact .outer .box::-webkit-scrollbar-thumb {
    background-color: #919191;
    border-radius: 100em;
}
.contact .outer .box span {
	display: block;
	padding: 10px 0;
	text-align: center;
}
.contact .outer .box p {}

.contact .agree {
	padding: 30px 0;
	text-align: center;
}
.contact .agree label {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.contact .agree label input[type="checkbox"] {
	display: inline-block!important;
	width: 20px;
	height: 20px;
	vertical-align: bottom;
	margin-right: 10px;
}
.contact .agree label span {
}