@charset "UTF-8";

.h-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 210px;
	height: 50px;
	border: 1px solid var(--btn_color);
	border-radius: 9999px;
	background: var(--btn_color);
	color: #ffffff;
	font-weight: bold;
	transition: all 0.4s;
}

.h-btn:hover {
	background: #ffffff;
	color: var(--btn_color);
}

.h-btn::before {
	content: "\e900";
	position: absolute;
	bottom: 50%;
	left: 23px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 10px;
	line-height: 1;

/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	text-transform: none;
	transform: translateY(50%);

	speak: never;

/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.hero {
	position: relative;
	height: auto;
	padding: 170px 0 0;
}

.hero::before {
	content: "";
	display: block;
	position: absolute;
	top: calc(100% - 130px);
	left: 0;
	z-index: -1;
	width: 100%;
	height: 625px;
	background: url(../img/home/bg-item01@2x.png) center / 100% 100%;
}

.hero_img {
	position: relative;
	width: calc(100% - 180px);
	max-width: 1600px;
	height: auto;
	margin: 0 auto;
	aspect-ratio: 1220 / 511;
}

.hero_img span {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	transition: opacity 0.6s;
}

.hero_img span:nth-child(2) {
	animation: fade infinite 15s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	48% {
		opacity: 0;
	}

	52% {
		opacity: 1;
	}

	96% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.hero_img span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero_wrap {
}

.hero_catch {
	position: relative;
	width: fit-content;
	margin: 0 auto 35px;
	padding-bottom: 20px;
	font-weight: bold;
	font-size: 41px;
	text-align: center;
}

.hero_catch::after {
	content: "";
	display: block;
	position: absolute;
	right: 50%;
	bottom: 0;
	width: 524px;
	height: 11.5px;
	background: url(../img/cmn/ttl-item01@2x.png) left / 87.5px 11.5px;
	transform: translateX(50%);
}

.intro {
	position: relative;
	z-index: 2;
	padding-top: 60px;
}

.intro_wrap {
}

.intro_txt {
	margin-bottom: 45px;
	padding: 20px;
	border-radius: 20px;
	background: #ffffff70;
	text-align: center;
}

.intro_link {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 22px;
}

.intro_link_cnt {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	border: #1fb9a1 4px solid;
	border-radius: 20px;
	background: #ffffff;
	transition: all 0.4s;
	aspect-ratio: 1;
}

.intro_link_cnt:hover {
	opacity: 0.6;
}

.intro_link_icon {
	background: #ffffff;
}

.intro_link_cnt p {
	font-weight: bold;
	line-height: 1.38;
	text-align: center;
}

.sec {
}

.sec_ttl {
	position: relative;
	padding-bottom: 22px;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
}

.sec_ttl::before {
	content: "";
	display: block;
	position: absolute;
	right: 50%;
	bottom: 0;
	width: 85px;
	height: 11px;
	background: center / 100% 100%;
	transform: translateX(50%);
}

.news_ttl::before,
.access_ttl::before {
	background-image: url(../img/cmn/ttl-item01@2x.png);
}

.faq_ttl::before,
.recruit_ttl::before {
	background-image: url(../img/cmn/ttl-item02@2x.png);
}

.news {
	position: relative;
	z-index: 3;
	padding: 100px 0;
}

.news_wrap {
	padding: 0 20px;
}

.news_ttl {
	margin-bottom: 40px;
}

.news_ttl::before {
	background-image: url(../img/cmn/ttl-item01@2x.png);
}

.news_important {
	display: flex;
	margin-bottom: 30px;
	overflow: hidden;
	border: #fd683c 2px solid;
	border-radius: 13px;
}

.news_important_hd {
	display: flex;
	align-items: center;
	gap: 7px;
	width: 200px;
	height: auto;
	padding: 30px 20px;
	background: #fd683c;
	color: #ffffff;
	font-weight: bold;
}

.news_important_hd .icon-important {
	font-size: 20px;
}

.news_important_cnt {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 15px 19px;
}

.news_important_link {
	display: block;
	position: relative;
	padding-left: 11px;
	color: #003a74;
	text-decoration: underline;
}

.news_important_link .icon-arrow {
	position: absolute;
	bottom: 50%;
	left: 0;
	font-size: 8px;
	cursor: none;
	transform: translateY(50%);
}

.news_cnt {
}

.news_tab {
	display: flex;
	gap: 6px;
	margin-bottom: 15px;
}

.news_tab_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	width: calc((100% - 240px - 30px) / 5);
	min-width: 170px;
	height: 56px;
	padding: 0 25px;
	border: #009880 1px solid;
	border-radius: 20px 20px 0 0;
	background: #009880;
	color: #ffffff;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.4s;
}

.news_tab_btn:hover,
.news_tab_btn.active {
	background: #ffffff;
	color: #009880;
}

.news_tab_btn.tab_lbtn {
	width: 240px;
}

.news_list {
}

.news_list_wrap {
	margin-bottom: 45px;
}

.news_list_cnt {
	border-bottom: #cccccc 1px solid;
}

.news_list_link {
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
	width: 100%;
	padding: 15px 0;
}

.news_list_link_cat {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 155px;
	height: 20px;
	border: #009c84 1px solid;
	border-radius: 9999px;
	font-size: 13px;
}

.news_list_link_ttl {
}

.news_list_link_new {
	padding-left: 10px;
	color: #ef3a3a;
	font-size: 11px;
}

.news_list_btn {
}

.news_list_btn .h-btn {
	margin: 0 auto;
}

.faq {
	position: relative;
	z-index: 4;
	padding-top: 100px;
}

.faq::before {
	content: "";
	display: block;
	position: absolute;
	top: -85px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 823px;
	background: url(../img/home/bg-item02@2x.png) center / 100% 100%;
}

.faq_wrap {
	padding: 0 135px;
}

.faq_ttl {
	margin-bottom: 40px;
}

.faq_cnt {
}

.faq_tab {
	display: flex;
	gap: 8px;
	margin-bottom: 30px;
}

.faq_tab_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	width: calc((100% - 240px - 24px) / 3);
	min-width: 170px;
	height: 56px;
	padding: 0 25px;
	border: #ff7262 1px solid;
	border-radius: 20px 20px 0 0;
	background: #ff7262;
	color: #ffffff;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.4s;
}

.faq_tab_btn:hover,
.faq_tab_btn.active {
	background: #ffffff;
	color: #ff7262;
}

.faq_tab_btn.tab_lbtn {
	width: 240px;
}

.faq_list {
	min-height: 180px;
}

.faq_list_wrap {
}

.faq_list_cnt {
}

.faq_list_hd {
}

.faq_list_hd_item {
}

.faq_list_detal {
}

.access {
	position: relative;
	z-index: 4;
}

.access_wrap {
	position: relative;
	z-index: 2;
	padding: 80px 0 80px;
}

.access_wrap::before {
	content: "";
	display: block;
	position: absolute;
	right: 50%;
	bottom: 0;
	z-index: -1;
	width: calc(100% + 90px);
	max-width: 1240px;
	height: calc(100% - 120px);
	border-radius: 40px;
	background: #e8f7f5;
	transform: translateX(50%);
}

.access_ttl {
	margin-bottom: 25px;
}

.access_cnt {
}

.access_address {
	margin-bottom: 25px;
	text-align: center;
}

.access_address span {
	font-weight: bold;
}

.access_link {
	margin-bottom: 40px;
}

.access_link a {
	margin: 0 auto;
}

.access_img {
}

.access_img_cnt {
	width: 100%;
	max-width: 857px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 20px;
}

.access_img_cnt img {
}

.recruit {
}

.recruit_wrap {
	position: relative;
	z-index: 2;
	padding: 80px 0 40px;
}

.recruit_wrap::before {
	content: "";
	display: block;
	position: absolute;
	right: 50%;
	bottom: 0;
	z-index: -1;
	width: calc(100% + 90px);
	max-width: 1240px;
	height: calc(100% - 120px);
	border-radius: 40px;
	background: #fff9f8;
	transform: translateX(50%);
}

.recruit_ttl {
	margin-bottom: 40px;
}

.recruit_cnt {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.recruit_txt {
}

.recruit_txt a {
	margin-top: 28px;
}

.recruit_img {
}

.recruit_img img {
}

.bnr {
	padding-top: 110px;
	padding-bottom: 45px;
}

.bnr_top {
	padding-bottom: 40px;
	border-bottom: 1px solid #cccccc;
}

.bnr_top_ttl {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
}

.bnr_top_cnt {
	display: flex;
	justify-content: center;
	gap: 25px;
}

.bnr_top_cnt a {
	display: flex;
	max-width: 270px;
}

.bnr_btm {
	padding-top: 20px;
}

.bnr_btm_wrap {
	display: flex;
	justify-content: center;
}

.bnr_btm_related {
	padding: 0 20px;
	border-right: #cccccc 1px solid;
}

.bnr_btm_related_ttl {
	margin-bottom: 10px;
	font-size: 16px;
	text-align: center;
}

.bnr_btm_related_cnt {
	display: flex;
	flex-flow: wrap;
	gap: 10px;
}

.bnr_btm_related_cnt a {
	display: flex;
	max-width: 200px;
}

.bnr_btm_pr {
	padding: 0 20px;
}

.bnr_btm_pr_ttl {
	margin-bottom: 10px;
	font-size: 16px;
	text-align: center;
}

.bnr_btm_pr_cnt {
	display: flex;
	flex-flow: wrap;
	gap: 10px;
}

.bnr_btm_pr_cnt a {
	display: flex;
	max-width: 190px;
}

@media screen and (max-width:1240px) {
}

@media screen and (max-width:768px) {
	.h-btn {
	}

	.h-btn:hover {
	}

	.h-btn::before {
	}

	.hero {
		padding: 0 0 0;
	}

	.hero::before {
		top: calc(100% - 70px);
		height: 240px;
	}

	.hero_wrap {
		padding: 110px 0 0;
	}

	.hero_catch {
		margin: 0 auto 15px;
		padding-bottom: 10px;
		font-size: 20px;
	}

	.hero_catch::after {
		width: 304px;
		height: 4.6px;
		background: url(../img/cmn/ttl-item01@2x.png) left / 35px 4.6px;
	}

	.hero_img {
		width: calc(100% - 25px);
	}

	.hero_img span {
		border-radius: 20px;
	}

	.intro {
		padding-top: 10px;
	}

	.intro_wrap {
	}

	.intro_txt {
		margin-bottom: 20px;
		padding: 0;
		background: unset;
		text-align: start;
	}

	.intro_link {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.intro_link_cnt {
	}

	.intro_link_cnt:hover {
	}

	.intro_link_icon {
	}

	.intro_link_cnt p {
	}

	.sec {
	}

	.sec_ttl {
		padding-bottom: 15px;
		font-size: 26px;
	}

	.sec_ttl::before {
	}

	.news_ttl::before,
	.access_ttl::before {
	}

	.faq_ttl::before,
	.recruit_ttl::before {
	}

	.news {
		padding: 50px 0;
	}

	.news_wrap {
		padding: 0;
	}

	.news_ttl {
		margin-bottom: 30px;
	}

	.news_ttl::before {
	}

	.news_important {
		flex-flow: column;
	}

	.news_important_hd {
		justify-content: center;
		width: 100%;
		padding: 15px 10px;
	}

	.news_important_hd .icon-important {
	}

	.news_important_cnt {
	}

	.news_important_link {
	}

	.news_important_link .icon-arrow {
	}

	.news_cnt {
	}

	.news_tab {
		padding-bottom: 10px;
		overflow-x: scroll;
		overflow-y: hidden;
	}

	.news_tab_btn {
		min-width: 150px;
		height: 45px;
		padding: 0 15px;
		font-size: 16px;
	}

	.news_tab_btn:hover,
	.news_tab_btn.active {
	}

	.news_tab_btn.tab_lbtn {
	}

	.news_list {
	}

	.news_list_wrap {
		margin-bottom: 25px;
	}

	.news_list_cnt {
	}

	.news_list_link {
		flex-flow: column;
		align-items: start;
		gap: 5px;
		padding: 10px 0;
	}

	.news_list_link_cat {
	}

	.news_list_link_ttl {
	}

	.news_list_link_new {
		padding-left: 5px;
	}

	.news_list_btn {
	}

	.news_list_btn .h-btn {
	}

	.faq {
		padding-top: 40px;
	}

	.faq::before {
		top: -35px;
		height: 300px;
	}

	.faq_wrap {
		padding: 0;
	}

	.faq_ttl {
	}

	.faq_cnt {
	}

	.faq_tab {
		padding-bottom: 10px;
		overflow-x: scroll;
		overflow-y: hidden;
	}

	.faq_tab_btn {
		min-width: 150px;
		height: 45px;
		padding: 0 15px;
		font-size: 16px;
	}

	.faq_tab_btn:hover,
	.faq_tab_btn.active {
	}

	.faq_tab_btn.tab_lbtn {
	}

	.faq_list {
		min-height: 80px;
	}

	.faq_list_wrap {
	}

	.faq_list_cnt {
	}

	.faq_list_hd {
	}

	.faq_list_hd_item {
	}

	.faq_list_detal {
	}

	.access {
	}

	.access_wrap {
		padding: 30px 0 30px;
	}

	.access_wrap::before {
		width: calc(100% + 48px);
		height: calc(100% - 60px);
		border-radius: 20px;
	}

	.access_ttl {
	}

	.access_cnt {
	}

	.access_address {
	}

	.access_address span {
	}

	.access_link {
		margin-bottom: 20px;
	}

	.access_link a {
	}

	.access_img {
		grid-template-columns: 1fr;
		gap: 15px;
		max-width: 380px;
		margin: 0 auto;
	}

	.access_img_cnt {
	}

	.access_img_cnt.access_img_map {
	}

	.access_img_cnt.access_img_pic {
	}

	.access_img_cnt img {
	}

	.recruit {
	}

	.recruit_wrap {
		padding: 40px 0 40px;
	}

	.recruit_wrap::before {
		width: calc(100% + 48px);
		height: calc(100% - 70px);
		border-radius: 20px;
	}

	.recruit_ttl {
	}

	.recruit_cnt {
		flex-flow: column;
		gap: 20px;
	}

	.recruit_txt {
	}

	.recruit_txt a {
		margin: 10px auto 0;
	}

	.recruit_img {
		width: 100%;
	}

	.recruit_img img {
	}

	.bnr {
		padding-top: 50px;
	}

	.bnr_top {
	}

	.bnr_top_ttl {
		margin-bottom: 15px;
		font-size: 24px;
	}

	.bnr_top_cnt {
		flex-flow: column;
		align-items: center;
		gap: 12px;
	}

	.bnr_top_cnt a {
	}

	.bnr_btm {
	}

	.bnr_btm_wrap {
		flex-flow: column;
		gap: 20px;
	}

	.bnr_btm_related {
		padding-bottom: 20px;
		border-right: none;
		border-bottom: 1px solid #cccccc;
	}

	.bnr_btm_related_ttl {
	}

	.bnr_btm_related_cnt {
		justify-content: center;
	}

	.bnr_btm_related_cnt a {
	}

	.bnr_btm_pr {
	}

	.bnr_btm_pr_ttl {
	}

	.bnr_btm_pr_cnt {
		justify-content: center;
	}

	.bnr_btm_pr_cnt a {
	}
}
