@charset "utf-8";

body {
	background: #00384C url("../images/news/bg.jpg") no-repeat center top;
	background-size: 1920px auto;
}
#container {
	padding-top: 160px;
}
.main {
	padding: 58px 0 80px;
}
.main .ttlBox {
	display: flex;
}
.main .comTtl {
	margin-bottom: 2px;
	font-size: 48px;
}
.main .text {
	margin-bottom: 62px;
	opacity: 0.5;
	font-size: 28px;
}
.main .section {
	padding: 40px;
	border-radius: 16px;
	background: rgba(255,255,255,0.05);
}
.main .section .inner {
	margin-bottom: 40px;
	display: flex;
	align-items: center;
}
.main .section .inner .map {
	margin-right: 40px;
	width: 520px;
	overflow: hidden;
	border-radius: 15px;
}
.main .section .inner .map iframe {
	width: 100%;
	height: 269px;
	display: block;
}
.main .section .inner .textBox {
	min-width: 1px;
	flex: 1;
}
.main .section .inner .textBox .ttl {
	font-size: 24px;
}
.main .section .inner .textBox ul {
	display: flex;
	flex-wrap: wrap;
}
.main .section .inner .textBox li {
	margin-top: 31px;
	width: 50%;
	display: flex;
	align-items: center;
}
.main .section .inner .textBox li:first-child {
	width: 100%;
	align-items: flex-start;
}
.main .section .inner .textBox li .icon {
	margin-right: 15px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 2px solid #fff;
	box-sizing: border-box;
}
.main .section .inner .textBox li p {
	flex: 1;
	min-width: 1px;
	color: rgba(255,255,255,0.5);
	font-size: 16px;
	line-height: 24px;
}
.main .section .inner .textBox li p a {
	color: rgba(255,255,255,0.5);
}
.main .section .inner .textBox li p a:hover {
	color: #fff;
}
.main .section .inner .textBox li p span {
	margin-bottom: 4px;
	display: block;
	color: #fff;
}
.main .section .txt {
	margin-bottom: 30px;
	font-size: 24px;
}
.main .section .formBox ul {
	margin: 0 -12px;
	display: flex;
	flex-wrap: wrap;
}
.main .section .formBox li {
	padding: 0 12px 24px;
	width: 50%;
	position: relative;
	box-sizing: border-box;
}
.main .section .formBox li input {
	margin: 0;
	padding: 0 15px;
	width: 100%;
	height: 40px;
	color: #000;
	font-size: 14px;
	line-height: 38px;
	box-sizing: border-box;
	border: 1px solid #F0F0F0;
	border-radius: 2px;
	background: #fff;
}
.main .section .formBox li .error {
	font-size: 12px;
	color: #f00;
	line-height: 24px;
	position: absolute;
	right: 12px;
	top: -24px;
	display: none;
}
.main .section .formBox li select {
	margin: 0;
	padding: 0 11px;
	width: 100%;
	height: 40px;
	color: #000;
	font-size: 14px;
	line-height: 38px;
	box-sizing: border-box;
	border: 1px solid #F0F0F0;
	border-radius: 2px;
	background: #fff;
}
.main .section .formBox li:last-child {
	width: 100%;
}
.main .section .formBox li textarea {
	margin: 0;
	padding: 11px 15px;
	width: 100%;
	height: 120px;
	color: #000;
	font-size: 14px;
	line-height: 22px;
	box-sizing: border-box;
	border: 1px solid #F0F0F0;
	border-radius: 2px;
	background: #fff;
	resize: none;
}
.main .section .formBox .btn {
	margin-top: -8px;
	display: flex;
	justify-content: flex-end;
}
.main .section .formBox .btn a {
	min-width: 120px;
	padding: 0 20px;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	background: #3E83AF;
	border-radius: 4px;
	box-sizing: border-box;
}
.main .section .formBox .btn a:hover {
	background: #08748D;
}

.noticeBox {
	padding: 0 50px;
	position: fixed;
	left: 50%;
	top: 20%;
	display: none;
	line-height: 60px;
	background: #08748D;
	border-radius: 10px;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

@media all and (min-width: 750px) and (max-width: 1239px) {
	body {
		background: #00384C url("../images/news/sp_bg.png") no-repeat center top;
		background-size: 100% auto;
	}
	#container {
		padding-top: 120px;
	}
	.main {
		padding: 66px 0 100px;
	}
	.main .comTtl {
		margin-bottom: 6px;
		font-size: 64px;
	}
	.main .text {
		margin-bottom: 64px;
		font-size: 32px;
	}
	.main .section {
		padding: 0;
		border-radius: 0;
		background: none;
	}
	.main .section .inner {
		margin-bottom: 100px;
		display: block;
	}
	.main .section .inner .map {
		margin: 0 0 38px;
		width: auto;
	}
	.main .section .inner .map iframe {
		height: 320px;
	}
	.main .section .inner .textBox .ttl {
		font-size: 36px;
	}
	.main .section .inner .textBox ul {
		display: block;
	}
	.main .section .inner .textBox li {
		margin-top: 30px;
		align-items: flex-start;
	}
	.main .section .inner .textBox li .icon {
		margin-right: 24px;
		width: 64px;
		height: 64px;
		border-width: 2px;
	}
	.main .section .inner .textBox li .icon img {
		width: 36px;
	}
	.main .section .inner .textBox li p {
		font-size: 28px;
		line-height: 44px;
	}
	.main .section .inner .textBox li p span {
		margin-bottom: 0;
		font-size: 30px;
	}
	.main .section .inner .textBox li .tel {
		font-style: normal;
	}
	.main .section .txt {
		font-size: 32px;
	}
	.main .section .formBox li {
		width: 100%;
	}
	.main .section .formBox li input,
	.main .section .formBox li select {
		height: 60px;
		font-size: 24px;
		line-height: 58px;
	}
	.main .section .formBox li textarea {
		padding: 20px 15px;
		font-size: 24px;
	}
	.main .section .formBox .btn a {
		min-width: 160px;
		font-size: 24px;
		line-height: 60px;
	}
}


@media all and (min-width: 0) and (max-width: 749px) {
	body {
		background: #00384C url("../images/news/sp_bg.png") no-repeat center top;
		background-size: 100% auto;
	}
	#container {
		padding-top: 120px;
	}
	.main {
		padding: 33px 0 80px;
	}
	.main .comTtl {
		margin-bottom: 3px;
		font-size: 32px;
	}
	.main .text {
		margin-bottom: 32px;
		font-size: 16px;
	}
	.main .section {
		padding: 0;
		border-radius: 0;
		background: none;
	}
	.main .section .inner {
		margin-bottom: 83px;
		display: block;
	}
	.main .section .inner .map {
		margin: 0 0 19px;
		width: auto;
	}
	.main .section .inner .map iframe {
		height: 160px;
	}
	.main .section .inner .textBox .ttl {
		font-size: 18px;
	}
	.main .section .inner .textBox ul {
		display: block;
	}
	.main .section .inner .textBox li {
		margin-top: 15px;
		align-items: flex-start;
	}
	.main .section .inner .textBox li .icon {
		margin-right: 12px;
		width: 32px;
		height: 32px;
		border-width: 1px;
	}
	.main .section .inner .textBox li .icon img {
		width: 18px;
	}
	.main .section .inner .textBox li p {
		font-size: 14px;
	}
	.main .section .inner .textBox li p span {
		margin-bottom: 0;
		font-size: 15px;
	}
	.main .section .formBox li .error {
		top: -22px;
	}
	.main .section .txt {
		font-size: 20px;
	}
	.main .section .formBox li {
		padding-bottom: 24px;
		width: 100%;
	}
	.main .section .formBox li input,
	.main .section .formBox li select {
		height: 44px;
		line-height: 42px;
	}
}