@charset "utf-8";

/*
	** LAYOUT CSS
*/


.container {
	max-width: 1340px;
	padding: 0 20px;
	margin: 0 auto;
}


.header-top {
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-bottom: 1px solid #e5e5e5;
}
.header-top .text-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0 10px;
	padding: 0 50px;
	color: var(--primary-color);
}
.header-top .lnk {
	display: block;
	align-content: center;
	flex: 0 0 235px;
	height: 100%;
	background: var(--primary-color);
	text-align: center;
	color: #fff;
}
.header-top .lnk.branch {
	flex: 0 0 185px;
	background: #53ac5a;
}
@media all and (max-width: 1023px) {
	.header-top {
		height: 52px;
	}
	.header-top .text-box {
		padding: 0 30px;
		font-size: var(--font-size-15);
	}
	.header-top .lnk {
		flex: 0 0 200px;
		font-size: var(--font-size-15);
	}
	.header-top .lnk.branch {
		flex: 0 0 160px;
	}
}
@media all and (max-width: 767px) {
	.header-top {
		height: 40px;
	}
	.header-top .text-box {
		display: none;
	}
	.header-top .lnk {
		flex: 1 1 0 !important;
		font-size: var(--font-size-14);
	}
}


/* ## header ## */
.header-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 90%;
	margin: 0 auto;
	height: var(--header-height);
	position: relative;
	--header-height: 100px;
}
.gnb {
	flex: 0 0 72%;
}
.gnb-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gnb-item {
	position: relative;
	text-align: center;
}
.gnb-lnk {
	font-size: var(--font-size-20);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--header-height);
	transition: var(--transition);
}
.gnb-item.active .gnb-lnk {
	color: var(--primary-color);
}
.gnb-menu {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: 9;
	left: 50%;
	top: calc(var(--header-height) - 15px);
	transform: translate(-50%, -15px);
	min-width: 200px;
	padding: 15px 0;
	background:#fff;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.gnb-item.active .gnb-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	transition: var(--transition);
}
.gnb-menu .menu-lnk {
	display: block;
	padding: 10px;
	font-size: var(--font-size-18);
}
.icon-window {
	color: #999;
	font-size: 0.75em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-top:-1px;
	line-height: 1;
}
.gnb-open {
	position: relative;
	width: 40px;
	height: 14px;
}
.gnb-open::before,
.gnb-open::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #b2b2b2;
	transition: var(--transition);
}
.gnb-open::after {
	top: auto;
	bottom: 0;
}
.gnb-close {
	display: none;
	position: absolute;
	top: 25px;
	right: 30px;
	font-size: var(--font-size-22);
}
.gnb-close::before {
	content: "\e59b";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #b2b2b2;
}
@media all and (max-width: 1299px) {
	.gnb-lnk {
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 1023px) {
	.header-box {
		--header-height: 80px;
	}
	.header-logo {
		flex: 0 0 150px;
	}
	.gnb {
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0.3);
		transition: var(--transition);
		overflow: hidden auto;
	}
	.gnb.active {
		opacity: 1;
		visibility: visible;
	}
	.gnb-list {
		display: block;
		width: 70%;
		margin-left: auto;
		padding: 70px 30px;
		background: #fff;
	}
	.gnb-item {
		margin-bottom: 20px;
		text-align: left;
	}
	.gnb-lnk {
		display: block;
		height: auto;
		padding: 15px 0;
		font-size: var(--font-size-22);
	}
	.gnb.active .gnb-menu {
		opacity: 1;
		visibility: visible;
		position: initial;
		transform: none;
		min-width: auto;
		padding: 0;
		text-align: left;
		box-shadow: none;
		display: flex;
		flex-wrap: wrap;
		gap: 5px 20px;
	}
	.gnb-menu .menu-lnk {
		display: block;
		padding: 5px 0;
		font-size: var(--font-size-17);
		color: #777;
	}
	.gnb-open,
	.gnb-close {
		display: block;
	}
}
@media all and (max-width: 767px) {
	.header-box {
		--header-height: 70px;
	}
	.header-logo {
		flex: 0 0 130px;
	}
	.gnb-list {
		width: 80%;
		padding: 60px 20px;
	}
}

.all-gnb {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	height: calc(100vh - 58px);
	background: #fff;
	transition: var(--transition);
	overflow: hidden auto;
}
.all-gnb.active {
	opacity: 1;
	visibility: visible;
}
.all-gnb-list {
	max-width: 1300px;
	margin: 0 auto;
	padding: 120px 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 100px 5%;
}
.all-gnb-item {
	flex: 0 0 21.25%;
}
.all-gnb-lnk {
	display: block;
	font-size: var(--font-size-24);
	font-weight: 600;
	padding: 10px 0;
	border-bottom: 1px solid var(--primary-color);
}
.all-gnb-menu {
	margin-top: 20px;
}
.all-menu-lnk {
	display: block;
	padding: 5px 0;
	font-size: var(--font-size-18);
}
.all-gnb .gnb-close {
	top: 35px;
	right: 6%;
	font-size: var(--font-size-26);
}
.all-gnb.active .gnb-close {
	display: block;
}
@media all and (max-width: 1023px) {
	.all-gnb {
		display: none;
	}
}



/* ## footer ## */
.footer {
	padding: 60px 0;
	background: #382f2d;
	color: #fff;
}
.footer-contact {
	display: flex;
	justify-content: space-between;
}
.footer-help h3 {
	font-size: 2.5em;
	font-weight: 200;
}
.footer-help .lnk-box {
	margin-top: 45px;
	display: flex;
	flex-direction: column;
	gap: 12px 20px;
}
.footer-help .lnk-box .lnk {
	display: block;
	font-size: var(--font-size-18);
	color: #fff;
}
.footer-tel {
	text-align: right;
	margin-top: 10px;
}
.footer-tel .strong {
	font-size: var(--font-size-30);
	margin-top: 35px;
}
.footer-tel .strong:first-child {
	margin-top: 0;
}
.footer-tel p:not(.strong) {
	font-size: var(--font-size-18);
	color: #afacab;
}
.footer-info {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid #776d6a;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.footer-lnk {
	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.footer-lnk .lnk {
	color: #fff;
}
.footer-lnk .point {
	color: #58c684;
	font-weight: 800;
}
.footer-addr {
	flex: 0 0 calc(100% - 250px);
	line-height: 1.6;
	font-weight: 200;
	font-style: normal;
}
.footer-related {
	position: relative;
	font-size: var(--font-size-15);
}
.footer-related .btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--height);
	background:#382f2d;
	border:1px solid #776d6a;
	border-radius: 5px;
	color: #fff;
	padding:0 20px;
	min-width: 230px;
}
.footer-related .btn::after {
	display: block;
	content: "\2b";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #d3d3d3;
	transition: var(--transition);
}
.footer-related .btn.active::after {
	content: "\f068";
	transform: rotate(180deg);
}
.footer-related .list-box {
	position: absolute;
	left:0;
	bottom:0;
	z-index: 1;
	width: 100%;
	background:#382f2d;
	border:1px solid #776d6a;
	border-radius: 5px;
	padding:10px 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.footer-related .list-box.active {
	bottom:calc(var(--height) + 5px);
	opacity: 1;
	visibility: visible;
}
.footer-related .list-box a {
	display: block;
	padding:8px 20px;
	color: #fff;
}
@media all and (max-width: 1023px) {
	.footer {
		padding: 40px 0;
	}
	.footer-help h3 {
		font-size: var(--font-size-30);
	}
	.footer-help .lnk-box {
		margin-top: 30px;
	}
	.footer-help .lnk-box .lnk {
		font-size: var(--font-size-16);
	}
	.footer-tel .strong {
		font-size: var(--font-size-24);
		margin-top: 25px;
	}
	.footer-tel p:not(.strong) {
		font-size: var(--font-size-15);
	}
	.footer-info {
		margin-top: 35px;
		padding-top: 30px;
	}
}
@media all and (max-width: 767px) {
	.footer {
		padding: 30px 0;
	}
	.footer-contact {
		display: block;
	}
	.footer-help h3 {
		font-size: var(--font-size-26);
	}
	.footer-help .lnk-box {
		flex-direction: row;
		margin-top: 20px;
	}
	.footer-tel {
		text-align: left;
		margin-top: 20px;
	}
	.footer-tel .strong {
		font-size: var(--font-size-22);
		margin-top: 15px;
	}
	.footer-info {
		margin-top: 25px;
		padding-top: 25px;
	}
	.footer-lnk .lnk {
		font-size: var(--font-size-15);
	}
	.footer-addr {
		flex: 0 0 100%;
		font-size: var(--font-size-14);
	}
	.footer-related .btn {
		width: 100%;
		font-size: var(--font-size-15);
	}
}



/* ## sub ## */
.sub-wrapper:not(:has(.history-wrap, .view-wrap)) {
	margin-bottom:150px;
}
@media all and (max-width: 767px) {
	.sub-wrapper:not(:has(.history-wrap, .view-wrap)) {
		margin-bottom:100px;
	}
}

.sub-visual {
	height: 375px;
	align-content: center;
	background-image: url("../img/layout/sub-visual-img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
}
.sub-visual02 {background: url("../img/layout/sub-visual-img02.jpg") no-repeat center;}
.sub-visual03 {background: url("../img/layout/sub-visual-img03.jpg") no-repeat center;}
.sub-visual04 {background: url("../img/layout/sub-visual-img04.jpg") no-repeat center;}
.sub-visual05 {background: url("../img/layout/sub-visual-img05.jpg") no-repeat center;}
.sub-visual-title {
	font-size: 2.75em;
	font-weight: 600;
	color: #fff;
}
.breadcrumb {
	margin-top: 30px;
	display: flex;
	align-items: center;
	color: #fff;
	gap:0 15px;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	font-size: var(--font-size-18);
	line-height: 1;
}
.breadcrumb li:not(:first-child)::before {
	display: block;
	content:"";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background:#fff;
	margin-right: 15px;
}
.sub-menu {
	margin-bottom: 130px;
	border-bottom: 1px solid #ddd;
}
.sub-menu-list {
	display: flex;
	align-items: center;
	gap:0 60px;
}
.sub-menu .lnk {
	display: block;
	padding: 24px 0;
	font-size: var(--font-size-20);
}
.sub-menu .lnk.active {
	color:var(--primary-color);
	font-weight: 600;
	position: relative;
}
.sub-menu .lnk.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
}
.sub-title {
	font-size: 2.5em;
	font-weight: 600;
	margin-bottom: 50px;
}
.sub-title:has(.sub-desc) {
	margin-bottom: 0;
}
.sub-desc {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 10px;
	margin-bottom: 80px;
}
:has(.title-none) .sub-title {
	display: none;
}
.title-none .sub-title {
	display: block;
}
@media all and (max-width: 1023px) {
	.sub-visual {
		height: 300px;
	}
	.sub-visual-title {
		font-size: 2.25em;
	}
	.breadcrumb li {
		font-size: var(--font-size-17);
	}
	.sub-menu {
		margin-bottom:100px;
	}
	.sub-menu-list {
		gap:0 40px;
		overflow: auto hidden;
	}
	.sub-menu .lnk {
		font-size: var(--font-size-18);
		white-space: nowrap;
	}
	.sub-title {
		font-size: 2em;
	}
	.sub-desc {
		font-size: 18px;
	}
}
@media all and (max-width: 767px) {
	.sub-visual {
		height: 200px;
	}
	.sub-visual-title {
		font-size: var(--font-size-28);
	}
	.breadcrumb {
		margin-top: 20px;
		gap:0 10px;
	}
	.breadcrumb li {
		font-size: var(--font-size-14);
	}
	.breadcrumb li:not(:first-child)::before {
		margin-right: 10px;
	}
	.sub-menu {
		margin-bottom:50px;
	}
	.sub-menu-list {
		gap:0 30px;
	}
	.sub-menu .lnk {
		padding: 18px 0;
		font-size: var(--font-size-16);
	}
	.sub-title {
		font-size: var(--font-size-26);
		margin-bottom: 40px;
	}
	.sub-desc {
		font-size: 16px;
		margin-bottom: 60px;
	}
}


.swiper-button-prev,
.swiper-button-next {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0;
	transform: translateY(-50%);
	border-radius: initial;
	color: #fff;
	transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: var(--font-size-30);
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}
.swiper-button-prev {left: 0;}
.swiper-button-next {right: 0;}
.swiper-button-prev::after {content: "\f053";}
.swiper-button-next::after {content: "\f054";}
.swiper-button-lock {
	display: none;
}
@media all and (max-width: 767px) {
	.swiper-button-prev,
	.swiper-button-next {
		width: 40px;
		height: 40px;
	}
	.swiper-button-prev::after,
	.swiper-button-next::after {
		font-size: var(--font-size-18);
	}
}


.quick-menu {
	position: fixed;
	right:10px;
	top:50%;
	transform: translateY(-50%);
	z-index: 30;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.quick-menu .quick-btn {
	display: flex;
	flex-wrap: wrap;
	width: 55px;
	height: 55px;
	margin: 10px auto 0;
	border-radius: 100%;
	font-size: var(--font-size-13);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	overflow: hidden;
	text-align: center;
}
.quick-menu .quick-btn:nth-child(1) {background: #dd7fb2;}
.quick-menu .quick-btn:nth-child(2) {background: #b9cb66;}
.quick-menu .quick-btn:nth-child(3) {background: #70c6d0;}
.quick-menu .quick-btn:nth-child(4) {background: #58c684;}
.quick-menu .quick-btn:nth-child(5) {background: #b7b7b7;}
.quick-menu .quick-btn:hover :is(.img, .desc) {
	transform: translateY(-100%);
}
.quick-menu :is(.img, .desc) {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: var(--transition);
}
.quick-menu.active {
	right:20px;
	opacity: 1;
	visibility: visible;
}
@media all and (max-width: 1023px) {
	.quick-menu .quick-btn {
		width: 52px;
		height: 52px;
		margin-top: 8px;
	}
	.quick-menu.active {
		right:10px;
	}
}
@media all and (max-width: 767px) {
	.quick-menu {
		top:auto;
		bottom: 30px;
		transform: translateY(0);
	}
	.quick-menu .quick-btn {
		margin-top: 5px;
		font-weight: 400;
	}
}


.pop-up {
	position: absolute;
	left: 120px;
	top:35px;
	z-index: 9980;
	background: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
	width: 400px;
}
.pop-up .pop-up-body {
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.pop-up .pop-up-body img {
	width: 100%;
	height: 100%;
}
.pop-up .pop-up-footer {
	width: 100%;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 12px;
	background: #555;
	color: #fff;
	font-weight: 300;
	font-size: var(--font-size-14);
	box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
}
.pop-up .pop-up-close {
	background: #333;
	padding: 0 12px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 6px;
	color: #fff;
	font-weight: 400;
	border-radius: 0;
	font-size: var(--font-size-16);
}
.pop-up .pop-up-close::before {
	display: block;
	content:"\f00d";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	font-size: var(--font-size-20);
}
.pop-up.pop_window {
	width: 100% !important;
	height: auto !important;
	left: 0 !important;
	margin-left: 0;
	top: 0 !important;
}
@media all and (max-width:1023px) {
	.pop-up {
		top:200px;
		left: 50% !important;
		transform: translateX(-50%);
	}
}
@media all and (max-width:767px) {
	.pop-up {
		width: 90% !important;
		height: auto !important;
		top:110px !important;
	}
	.pop-up .pop-up-footer {
		height: 34px;
	}
}