/* Common */
.sec-title p {
	font-size:3.6rem;
}

@media screen and (max-width:1200px) {
	.sec-title p {
		font-size:3rem;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	.sec-title p {
		font-size:2.4rem;
	}
}
@media screen and (max-width:576px) {
	.sec-title p {
		font-size:2rem;
	}
}


/* Sub Visual */
.sub-visual {
	position: relative;
	width: 100%;
	height:520px;
	overflow: hidden;
}

.sub-visual .sub-visual-container {
	max-width:1500px;
	width: 95%;
	height:100%;
	margin:0 auto;
}

.sub-visual .txt {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index:10;
}

.sub-visual .txt .t01 {
	font-size: 3rem;
}

.sub-visual .txt .t02 {
	font-size:5.8rem;
}

.sub-visual .bg {
	position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0065a3;
  z-index: 5;
  animation: sub-visual 1.2s cubic-bezier(0.4, 0.38, 0.26, 0.93) .2s both;
}

.sub-visual .bg div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sub-visual .bg1 div {
	background-image: url('../img/sub/sv01.jpg');
}

.sub-visual .bg2 div {
	background-image: url('../img/sub/sv02.jpg');
}

.sub-visual .bg3 div {
	background-image: url('../img/sub/sv03.jpg');
}

.sub-visual .bg4 div {
	background-image: url('../img/sub/sv04.jpg');
}

@media screen and (max-width:1200px) {
	.sub-visual .txt .t01 {
		font-size:2.4rem;
	}

	.sub-visual .txt .t02 {
		font-size:4.6rem;
	}
}
@media screen and (max-width:1024px) {
	.sub-visual {
		height:480px;
	}
}
@media screen and (max-width:768px) {
	.sub-visual {
		height:400px;
	}

	.sub-visual .txt .t01 {
		font-size:2rem;
	}

	.sub-visual .txt .t02 {
		font-size:3.2rem;
	}
}
@media screen and (max-width:576px) {
	.sub-visual {
		height:320px;
	}

	.sub-visual .txt .t01 {
		font-size:1.8rem;
	}

	.sub-visual .txt .t02 {
		font-size:2.6rem;
	}
}

/* SNB */
.snb {
	display: flex;
	justify-content: center;
}

.snb-menu {
	display: flex;
	justify-content: center;
	gap:10px;
	padding:10px;
	border-radius:20px;
	background-color: #e5eff6;
}

.snb-menu li {
	position: relative;
}

.snb-menu li::before,
.snb-menu li::after {
	content: "";
	display: block;
	position: absolute;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	width:6px;
	height:6px;
	border-radius:50%;
	background-color: #0065a3;
	pointer-events: none;
	opacity:0;
	-webkit-transition: var(--transition-basic);
	transition: var(--transition-basic);
}

.snb-menu li::before {
	top:-10px;
}

.snb-menu li::after {
	bottom:-10px;
}

.snb-menu a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width:230px;
	height: 60px;
	font-size:2rem;
	font-weight:600;
	border-radius:10px;
	background-color: #f2f7fb;
	-webkit-transition: var(--transition-basic);
	transition: var(--transition-basic);
}

.snb-menu li.on a {
	color:#0065a3;
	background-color: #fff;
}

@media screen and (min-width:1201px) {
	.snb-menu li:hover::before {
		top:-26px;
		opacity:1;
	}

	.snb-menu li:hover::after {
		bottom:-26px;
		opacity: 1;
	}

	.snb-menu li:hover a {
		color:#0065a3;
		background-color: #fff;
	}
}
@media screen and (max-width:1200px) {
	.snb {
		display: none;
	}

	.snb-menu a {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.snb-menu {
		padding:6px;
		gap:6px;
	}

	.snb-menu li::before, .snb-menu li::after {
		display: none;
	}

	.snb-menu a {
		width:180px;
		height:48px;
		border-radius:15px;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	
}


/* Greeting */
.greeting .sec {
	padding:200px 0px;
}

.greeting .article {
	position: relative;
}

.greeting .article-txt {
	display: block;
	position: absolute;
	top:-100px;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 12rem;
	color:#eef2f7;
}

.greeting .article-bak {
	position: absolute;
	right:0;
	bottom:-100px;
	width:508px;
	height:396px;
	background: url('../img/sub/about/sec_bak.png') no-repeat center;
}

.greeting .txt {
	position: relative;
	z-index:5;
}

.greeting .txt .t01 {
	font-size:4.6rem;
}

.greeting .txt .t02 {
	font-size:2rem;
	line-height:1.8;
}

@media screen and (max-width:1200px) {
	.greeting .sec {
		padding:80px 0px 160px;
	}

	.greeting .article-txt {
		top:-80px;
		font-size:9rem;
	}

	.greeting .article-bak {
		bottom:-80px;
		width:388px;
		height:296px;
		background-size:auto 296px;
	}

	.greeting .txt .t01 {
		font-size:3.2rem;
	}

	.greeting .txt .t02 {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.greeting .sec {
		padding:80px 0px 140px;
	}
}
@media screen and (max-width:768px) {
	.greeting .sec {
		padding:60px 0px 120px;
	}

	.greeting .article-txt {
		top:-50px;
		font-size:6rem;
	}

	.greeting .article-bak {
		bottom:-50px;
		width:268px;
		height:206px;
		background-size:auto 206px;
	}

	.greeting .txt .t01 {
		font-size:2.6rem;
	}

	.greeting .txt .t02 {
		font-size:1.6rem;
	}
}
@media screen and (max-width:576px) {
	.greeting .sec {
		padding:60px 0px 100px;
	}

	.greeting .article-txt {
		top:-30px;
		font-size:3.6rem;
	}

	.greeting .article-bak {
		bottom:-30px;
		width:168px;
		height:126px;
		background-size:auto 126px;
	}

	.greeting .txt .t01 {
		font-size:2.4rem;
	}

	.greeting .txt .t02 {
		font-size:1.4rem;
	}
}


/* History */
.history .sec {
	padding:0px 0px 120px;
}

.history .history-area {
	max-width:1040px;
	width: 100%;
	margin:0 auto;
}

.history .item {
	position: relative;
	padding-left:610px;
	padding-bottom:160px;
}

.history .item::before {
	content: "";
	display: block;
	position: absolute;
	top:0;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 32px;
	height:32px;
	border:10px solid #fff;
	border-radius:50%;
	background-color: #0065a3;
}

.history .item::after {
	content: "";
	display: block;
	position: absolute;
	top:32px;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 2px;
	height:calc(100% - 32px);
	background-color: #c9c9c9;
}

.history .item .lt {
	position: absolute;
	top:0;
	left:0;
	width: 42%;
	white-space: nowrap;
}

.history .item .rt {
	width: 380px;
}

.history .item p {
	font-size:8rem;
}

.history .item dt {
	font-size:3.6rem;
	padding-bottom:20px;
	margin-bottom:30px;
	border-bottom: 1px solid #c9c9c9;
}

.history .item dd {
	font-size: 2rem;
	line-height:1.8;
}

@media screen and (max-width:1200px) {
	.history .sec {
		padding:0px 0px 120px;
	}

	.history .item {
		padding-bottom:140px;
	}

	.history .item p {
		font-size:5.8rem;
	}

	.history .item dt {
		font-size:3rem;
	}

	.history .item dd {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.history .sec {
		padding:0px 0px 100px;
	}

	.history .item {
		padding-left:60%;
		padding-bottom:120px;
	}

	.history .item::before {
		width: 26px;
		height:26px;
		border-width:8px;
	}

	.history .item::after {
		top:26px;
		height: calc(100% - 26px);
	}

	.history .item .rt {
		width: auto;
	}

	.history .item dt {
		padding-bottom: 16px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width:768px) {
	.history .item {
		padding-left:30px;
		padding-bottom:100px;
	}

	.history .item::before {
		left:0px;
		-webkit-transform: none;
		transform: none;
		width:20px;
		height:20px;
		border-width:6px;
	}

	.history .item::after {
		left:8px;
		-webkit-transform: none;
		transform: none;
	}

	.history .item .lt {
		position: relative;
		top:unset;
		left: unset;
		width: auto;
		margin-bottom:40px;
	}

	.history .item p {
		font-size:4.6rem;
	}

	.history .item dt {
		font-size:2.4rem;
	}

	.history .item dd {
		font-size:1.6rem;
	}
}
@media screen and (max-width:576px) {
	.history .sec {
		padding:0px 0px 80px;
	}

	.history .item {
		padding-left:24px;
		padding-bottom:80px;
	}

	.history .item::before {
		width: 16px;
		height:16px;
		border-width: 4px;
	}
	
	.history .item::after {
		top:16px;
		left:7px;
		width: 1px;
		height: calc(100% - 16px);
	}

	.history .item .lt {
		margin-bottom:30px;
	}

	.history .item p {
		font-size:3.2rem;
	}

	.history .item dt {
		font-size:2rem;
		padding-bottom: 10px;
		margin-bottom: 16px;
	}

	.history .item dd {
		font-size:1.4rem;
	}
}


/* Certification */
.certi .sec {
	padding:0px 0px 120px;
}

@media screen and (max-width:1200px) {
	.certi .sec {
		padding:0px 0px 120px;
	}
}
@media screen and (max-width:1024px) {
	.certi .sec {
		padding:0px 0px 100px;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.certi .sec {
		padding:0px 0px 80px;
	}
}


/* Business */
.business .sec {
	padding:160px 0px;
}

.business .item {
	display: flex;
	align-items: center;
	gap:24px;
	padding-top:120px;
}

.business .item .lt,
.business .item .rt {
	width: calc(50% - 12px);
}

.business .item .txt .pin {
	display: inline-block;
	width:25px;
	height: 18px;
	background: url('../img/sub/business/sec_pin.png') no-repeat center / auto 18px;
}

.business .item .txt .t01 {
	font-size: 3rem;
}

.business .item .txt .t02 {
	font-size:2rem;
	line-height:1.8;
}

.business .item .img {
	position: relative;
}

@media screen and (max-width:1200px) {
	.business .sec {
		padding:140px 0px;
	}

	.business .item:first-child {
		padding-top:0px;
	}

	.business .item .txt .t01 {
		font-size:2.4rem;
	}

	.business .item .txt .t02 {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.business .sec {
		padding:120px 0px;
	}

	.business .item {
		gap:16px;
		padding-top:100px;
	}

	.business .item .lt,
	.business .item .rt {
		width: calc(50% - 8px);
	}

	.business .item .txt .pin {
		width:20px;
		height:14px;
		background-size:auto 14px;
	}
}
@media screen and (max-width:768px) {
	.business .sec {
		padding:100px 0px;
	}

	.business .item {
		flex-wrap: wrap;
		padding-top:80px;
	}

	.business .item:first-child {
		padding-top:0px;
	}

	.business .item .lt,
	.business .item .rt {
		width: 100%
	}

	.business .item .order-1 {
		order: 1;
	}

	.business .item .order-2 {
		order: 2;
	}

	.business .item .txt .pin {
		width:18px;
		height:12px;
		background-size: auto 12px;
	}

	.business .item .txt .t01 {
		font-size:2rem;
	}

	.business .item .txt .t02 {
		font-size:1.6rem;
	}
}
@media screen and (max-width:576px) {
	.business .sec {
		padding:80px 0px;
	}

	.business .item {
		padding-top:60px;
	}

	.business .item .txt .pin {
		width:16px;
		height:10px;
		background-size: auto 10px;
	}

	.business .item .txt .t01 {
		font-size:1.8rem;
	}

	.business .item .txt .t02 {
		font-size:1.4rem;
	}
}


/* Client */
.client .sec {
	padding: 160px 0px;
}

.client .article {
	padding-top:120px;
}

.client .txt .t01 {
	display: flex;
	align-items: center;
	gap:20px;
	font-size:3rem;
}

.client .txt .pin {
	display: inline-block;
	width:25px;
	height: 18px;
	background: url('../img/sub/network/sec_pin.png') no-repeat center / auto 18px;
}

@media screen and (max-width:1200px) {
	.client .sec {
		padding: 140px 0px;
	}

	.client .article {
		padding-top:0px;
	}

	.client .txt .t01 {
		gap:12px;
		font-size:2.4rem;
	}
}
@media screen and (max-width:1024px) {
	.client .sec {
		padding: 120px 0px;
	}

	.client .txt .pin {
		width:20px;
		height:14px;
		background-size:auto 14px;
	}
}
@media screen and (max-width:768px) {
	.client .sec {
		padding: 100px 0px;
	}

	.client .txt .pin {
		width:18px;
		height:12px;
		background-size:auto 12px;
	}

	.client .txt .t01 {
		gap:6px;
		font-size:2rem;
	}
}
@media screen and (max-width:576px) {
	.client .sec {
		padding: 80px 0px;
	}

	.client .txt .pin {
		width:16px;
		height:10px;
		background-size:auto 10px;
	}

	.client .txt .t01 {
		gap:4px;
		font-size:1.8rem;
	}
}


/* Global */
.global .sec {
	padding: 160px 0px;
}

.global .article {
	padding-top:120px;
}

.global .list {
	display: flex;
	flex-wrap: wrap;
	margin:-12px;
}

.global .list li {
	flex:1 0 25%;
	max-width: 25%;
	padding:12px;
}

.global .list .card {
	display: flex;
	align-items: center;
	gap:30px;
	padding:20px;
	border-radius:5px;
	background-color: #f2f7fb;
}

.global .list img {
	filter: drop-shadow(4px 4px 5px rgba(74,74,74,.1));
}

.global .list p {
	font-size:2rem;
}

@media screen and (max-width:1200px) {
	.global .sec {
		padding: 140px 0px;
	}

	.global .article {
		padding-top:0px;
	}

	.global .list li {
		flex:1 0 33.33%;
		max-width: 33.33%;
	}

	.global .list .card {
		gap:20px;
	}

	.global .list p {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.global .sec {
		padding: 120px 0px;
	}

	.global .list {
		margin:-6px;
	}

	.global .list li {
		padding:6px;
	}

	.global .list .card {
		padding:16px;
	}

	.global .list img {
		width:40px;
	}
}
@media screen and (max-width:768px) {
	.global .sec {
		padding: 100px 0px;
	}

	.global .list li {
		flex:1 0 50%;
		max-width:50%;
	}

	.global .list .card {
		gap:12px;
	}

	.global .list img {
		width: 30px;
	}

	.global .list p {
		font-size:1.6rem;
	}
}
@media screen and (max-width:576px) {
	.global .sec {
		padding: 80px 0px;
	}

	.global .list {
		margin:-4px;
	}

	.global .list li {
		flex:1 1 100%;
		max-width:100%;
		padding:4px;
	}

	.global .list .card {
		gap:8px;
		padding:10px;
	}

	.global .list img {
		width: 24px;
	}

	.global .list p {
		font-size:1.4rem;
	}
}


/* News */
.news .sec {
	padding: 160px 0px;
}

.news .article {
	padding-top:120px;
}

@media screen and (max-width:1200px) {
	.news .sec {
		padding: 140px 0px;
	}
}
@media screen and (max-width:1024px) {
	.news .sec {
		padding: 120px 0px;
	}
}
@media screen and (max-width:768px) {
	.news .sec {
		padding: 100px 0px;
	}
}
@media screen and (max-width:576px) {
	.news .sec {
		padding: 80px 0px;
	}
}


/* Inquiry */
.inquiry .sec {
	padding: 160px 0px;
}

.inquiry .article {
	padding-top:120px;
}

.inquiry .form-bubble {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:20px;
	width: 100%;
	height: 120px;
	border-radius:10px;
	background-color: #f5f5f5;
}

.inquiry .form-bubble .icon {
	display: block;
	width:28px;
	height:33px;
	background: url('../img/icon/ico_bell.png') no-repeat center;
}

.inquiry .form-bubble p {
	font-size:2.4rem;
}

.inquiry .form-table {
	display: flex;
	flex-wrap: wrap;
	gap:30px 80px;
	border-top: 1px solid #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
	padding:30px 0px;
}

.inquiry .form-table .row:not(.row-w100) {
	width: calc(50% - 40px);
}

.inquiry .form-table .row-w100 {
	width: 100%;
}

.inquiry .form-table .row-wrap {
	display: flex;
}

.inquiry .form-table .th {
	width:130px;
	padding:20px 0px;
	font-size: 2rem;
}

.inquiry .form-table .td {
	width: calc(100% - 130px);
}

.inquiry .form-table input {
	width: 100%;
	height: 60px;
	padding:0px 20px;
	background-color: #f5f5f5;
	font-size:1.8rem;
}

.inquiry .form-table textarea {
	display: block;
	width: 100%;
	height:420px;
	padding:20px;
	background-color: #f5f5f5;
	font-size:1.8rem;
	resize: none;
}

.inquiry .form-agree label {
	position: relative;
	display:inline-flex;
	align-items: center;
	gap:10px;
	cursor: pointer;
}

.inquiry .form-agree input {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	opacity:0;
	visibility: hidden;
}

.inquiry .form-agree i {
	display: inline-block;
	width:20px;
	height:20px;
	background: url('../img/icon/check_off.png') no-repeat center;
	-webkit-transition: var(--transition-basic);
	transition: var(--transition-basic);
}

.inquiry .form-agree span {
	font-size:2rem;
}

.inquiry .form-agree a {
	color:#0065a3;
	text-decoration: underline;
	text-underline-offset:3px;
	cursor: pointer;
}

.inquiry .form-agree input:checked + i {
  background-image: url('../img/icon/check_on.png');
}

.inquiry .form-btn {
	display: flex;
	justify-content: center;
}

.inquiry .form-btn button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width:300px;
	height:60px;
	background-color: #0065a3;
	border:1px solid transparent;
	font-size:2rem;
	font-weight:700;
	color:#fff;
	-webkit-transition: var(--transition-basic);
	transition: var(--transition-basic);
}

.inquiry .form-modal {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding:20px;;
	z-index: 9999;
}

.inquiry .form-modal .modal-con {
	display: flex;
  justify-content: center;
  align-items: center;
  max-width:640px;
  width: 100%;
  max-height: calc(100% - 300px);
	height:100%;
	margin:0 auto;
}

.inquiry .form-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.inquiry .form-modal .modal-inner {
	position: relative;
  width: 100%;
  height: 100%;
  padding:40px;
  background-color: #fff;
	overflow-y: auto;
}

.inquiry .form-modal .textarea p {
	font-size:1.6rem;
}

.inquiry .form-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media screen and (min-width:1201px) {
	.inquiry .form-btn button:hover {
		background-color: transparent;
		border-color:#0065a3;
		color:#0065a3;
	}
}
@media screen and (max-width:1200px) {
	.inquiry .sec {
		padding: 140px 0px;
	}

	.inquiry .form-bubble p {
		font-size:2rem;
	}

	.inquiry .form-table {
		gap:30px;
	}

	.inquiry .form-table .row:not(.row-w100) {
		width: calc(50% - 15px);
	}

	.inquiry .form-table .th {
		font-size:1.8rem;
	}

	.inquiry .form-table input {
		font-size:1.6rem;
	}

	.inquiry .form-table textarea {
		font-size:1.6rem;
	}

	.inquiry .form-agree span {
		font-size:1.8rem;
	}

	.inquiry .form-btn button {
		font-size:1.8rem;
	}

	.inquiry .form-modal .textarea p {
		font-size:1.4rem;
	}
}
@media screen and (max-width:1024px) {
	.inquiry .sec {
		padding: 120px 0px;
	}

	.inquiry .form-bubble {
		gap:16px;
		height:100px;
	}

	.inquiry .form-bubble .icon {
		width:22px;
		height:27px;
		background-size:auto 27px;
	}

	.inquiry .form-table {
		gap:20px;
		padding:20px 0px;
	}

	.inquiry .form-table .row:not(.row-w100) {
		width: calc(50% - 10px);
	}

	.inquiry .form-table .th {
		width:100px;
		padding:16px 0px;
	}

	.inquiry .form-table .td {
		width: calc(100% - 100px);
	}
	
	.inquiry .form-table input {
		height:50px;
		padding:0px 16px;
	}

	.inquiry .form-table textarea {
		height:320px;
		padding:16px;
	}

	.inquiry .form-agree label {
		gap:6px;
	}

	.inquiry .form-agree i {
		width:16px;
		height:16px;
		background-size: auto 16px;
	}

	.inquiry .form-btn button {
		width: 220px;
		height:50px;
	}

	.inquiry .form-modal .modal-inner {
		padding:30px;
	}
}
@media screen and (max-width:768px) {
	.inquiry .sec {
		padding: 100px 0px;
	}

	.inquiry .form-bubble .icon {
		height:23px;
		background-size: auto 23px;
	}

	.inquiry .form-bubble p {
		font-size:1.8rem;
	}

	.inquiry .form-table {
		gap:0px;
		padding:0px 0px 16px;
	}

	.inquiry .form-table .row:not(.row-w100) {
		width: 100%;
	}

	.inquiry .form-table .row-wrap {
		flex-wrap: wrap;
	}

	.inquiry .form-table .th {
		width: 100%;
		font-size:1.6rem;
	}

	.inquiry .form-table .td {
		width: 100%;
	}

	.inquiry .form-table input {
		font-size:1.4rem;
	}

	.inquiry .form-table textarea {
		height:260px;
		font-size:1.4rem;
	}

	.inquiry .form-agree span {
		font-size:1.6rem;
	}

	.inquiry .form-btn button {
		font-size:1.6rem;
	}
}
@media screen and (max-width:576px) {
	.inquiry .sec {
		padding: 80px 0px;
	}

	.inquiry .form-bubble {
		flex-direction: column;
		gap:10px;
		height:auto;
		padding:16px;
		text-align: center;
	}

	.inquiry .form-bubble .icon {
		height:19px;
		background-size: auto 19px;
	}

	.inquiry .form-bubble p {
		font-size:1.6rem;
	}

	.inquiry .form-table {
		padding:0px 0px 12px;
	}

	.inquiry .form-table .th {
		padding: 12px 0px;
		font-size:1.4rem;
	}

	.inquiry .form-table input {
		height:44px;
		padding:0px 12px;
		font-size:1.2rem;
	}

	.inquiry .form-table textarea {
		height:200px;
		padding:12px;
		font-size:1.2rem;
	}

	.inquiry .form-agree label {
		gap:4px;
	}

	.inquiry .form-agree i {
		width:14px;
		height:14px;
		background-size:auto 14px;
	}

	.inquiry .form-agree span {
		font-size:1.4rem;
	}

	.inquiry .form-btn button {
		width: 160px;
		height:44px;
		font-size:1.4rem;
	}

	.inquiry .form-modal .modal-con {
		max-height: calc(100% - 400px);
	}

	.inquiry .form-modal .modal-inner {
		padding:20px;
	}
	
	.inquiry .form-modal .textarea p {
		font-size:1.2rem;
	}
}


/* Location */
.location .sec {
	padding:160px 0px;
}

.location .article {
	padding-top:120px;
}

.location .map {
	position: relative;
	width: 100%;
	height:0;
	padding-top: calc(550/1500*100%);
	overflow: hidden;
}

.location .map iframe {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
}

.location .info {
	display: flex;
	align-items: center;
	margin:80px 0px;
}

.location .info .lt {
	width: 42%;
}

.location .info .rt {
	width: 58%;
}

.location .info dl {
	display: flex;
	align-items: center;
}

.location .info dt {
	position: relative;
	display: flex;
	align-items: center;
	gap:20px;
	width:200px;
	font-size:2rem;
}

.location .info dd {
	width: calc(100% - 200px);
	font-size:2rem;
}

.location .info .icon {
	display: block;
	width:40px;
	height:40px;
	background-repeat: no-repeat;
	background-position: center;
}

.location .info .icon01 {
	background-image: url('../img/icon/ico_address.png');
}

.location .info .icon02 {
	background-image: url('../img/icon/ico_tel.png');
}

.location .info .icon03 {
	background-image: url('../img/icon/ico_fax.png');
}

.location .info .icon04 {
	background-image: url('../img/icon/ico_mail.png');
}

.location .article-txt {
	display: block;
	
}

@media screen and (max-width:1200px) {
	.location .sec {
		padding:140px 0px;
	}

	.location .info img {
		width: 239px;
	}

	.location .info dt {
		font-size:1.8rem;
	}

	.location .info dd {
		font-size:1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.location .sec {
		padding:120px 0px;
	}

	.location .info {
		margin:60px 0px;
	}

	.location .info .lt {
		width: 35%;
	}

	.location .info .rt {
		width: 65%;
	}

	.location .info img {
		width: 199px;
	}

	.location .info dt {
		gap:12px;
		width:160px;
	}

	.location .info dd {
		width: calc(100% - 160px);
	}

	.location .info .icon {
		width:30px;
		height:30px;
		background-size:auto 30px;
	}
}
@media screen and (max-width:768px) {
	.location .sec {
		padding:100px 0px;
	}

	.location .map {
		padding-top: 72.5%;
	}

	.location .info {
		flex-wrap: wrap;
		gap:20px;
		margin:40px 0px 0px;
	}

	.location .info .lt,
	.location .info .rt {
		width: 100%;
	}

	.location .info .lt {
		display: none;
	}

	.location .info dt {
		font-size:1.6rem;
	}

	.location .info dd {
		font-size:1.6rem;
	}

	.location .article-txt {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.location .sec {
		padding:80px 0px;
	}

	.location .info {
		margin:20px 0px 0px;
		gap:12px;
	}

	.location .info img {
		width: 109px;
	}

	.location .info dl {
		flex-wrap: wrap;
		gap:6px;
	}

	.location .info dt {
		width: 100%;
		gap:6px;
		font-size:1.4rem;
	}

	.location .info dd {
		width: 100%;
		font-size:1.4rem;
	}

	.location .info .icon {
		width: 20px;
		height:20px;
		background-size:auto 20px;
	}
}