@charset "UTF-8";
.card__img::before, .card__img::after, .card__img img {
	-webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.flex--end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.flex--between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.flex--acenter {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.flex--astart {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.flex--jcstart {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.grid {
	display: grid;
}

.grid--space2 {
	grid-template-columns: 1fr 1fr;
}

.grid--space3 {
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 35px;
}

.grid--space4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 35px;
}

@media only screen and (max-width: 768px) {
	.grid--space3 {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.grid--space4 {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media only screen and (max-width: 540px) {
	.grid--space3, .grid--space4 {
		grid-template-columns: 1fr;
	}
}

.form__label {
	font-weight: 700;
	color: #343436;
}

.font--30 {
	font-size: 30px;
}

.font--28 {
	font-size: clamp(24px, 3vw, 28px);
}

.font--26 {
	font-size: 26px;
}

.font--24 {
	font-size: 24px;
}

.font--22 {
	font-size: 22px;
}

.font--20 {
	font-size: 20px;
}

.font--18 {
	font-size: 18px;
}

.font--16 {
	font-size: 16px;
}

.font--15 {
	font-size: 15px;
}

.font--13 {
	font-size: 13px;
}

.font--14 {
	font-size: 14px;
}

.font--md {
	font-weight: 500;
}

.font--bold {
	font-weight: 700;
}

.font--green {
	color: #0B7AB7;
}

.font--yellow {
	color: #F7FF84;
}

.font--orange {
	color: #F6BC35;
}

.font--red {
	color: #E60505;
}

.font--blue {
	color: #007BCE;
}

.font--black {
	color: #000;
}

.font--gray {
	color: #808080;
}

.font--gray500 {
	color: #adb5bd;
}

.font--gray800 {
	color: #343a40;
}

.font--white {
	color: #fff;
}

.font--center {
	text-align: center;
}

.font--line {
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 0 10px;
}

.font--through {
	text-decoration: line-through;
}

.font--main {
	color: #0B7AB7;
}

.page__title {
	letter-spacing: 0;
	font-size: 30px;
	font-weight: 900;
	margin-bottom: 20px;
}

.page__subtitle {
	margin: 1rem auto;
	padding-bottom: 15px;
	display: block;
	font-family: "Noto Sans TC", "Noto Sans JP", sans-serif;
	color: #0B7AB7;
	font-weight: bold;
	letter-spacing: 5px;
	position: relative;
}

.page__itemtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 22px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

.page__itemtitle i {
	color: #36BE81;
	font-size: 20px;
	margin-right: 5px;
}

.page__itemtitle p {
	color: #333;
	font-weight: 700;
}

.page__tip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 10px;
}

.page__tip li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #D9F1D9;
	line-height: 35px;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 16px;
	color: #104A32;
	margin: 0 8px 5px 0;
}

.page__tip li i {
	margin-right: 5px;
}

.page__subtip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	margin-bottom: 20px;
}

.page__subtip li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-size: 16px;
	font-weight: 500;
	margin-right: 20px;
	color: #9DA0AB;
}

.page__subtip li::before {
	content: attr(title);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: #1E3150;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 99rem;
	background: #EBEEF1;
}

.page__subtip li.at {
	color: #1E3150;
}

.page__subtip li.at::before {
	color: #fff;
	background: #4AC172;
}

.page__info {
	margin-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.page--full {
	width: 100%;
}

.page--pdtb120 {
	padding-top: 120px;
	padding-bottom: 120px;
}

.page--pdtb80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.page--pdb60 {
	padding-bottom: 60px;
}

.page--pdb100 {
	padding-bottom: 100px;
}

.page--pdlr120 {
	padding-left: 120px;
	padding-right: 120px;
}

.page--mtb50 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.page--mt50cut {
	margin-top: -50px;
}

.page--mb50 {
	margin-bottom: 50px;
}

.page--mb20 {
	margin-bottom: 20px;
}

.page--center {
	text-align: center;
}

.page--shadow {
	-webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border: none !important;
}

.page--bgwhite {
	background: #fff;
}

.page--greenline {
	border: 1px solid #0B7AB7 !important;
}

.page--w60 {
	width: 60%;
}

.page--w40 {
	width: 40%;
}

.page--line {
	border: 1px solid #dedede;
}

.page__img img {
	width: 100%;
}

@media only screen and (max-width: 1024px) {
	.page--pdtb120 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.page--pdb100 {
		padding-bottom: 80px;
	}
	.page--w70 {
		width: 100%;
		margin-right: 0;
	}
	.page--w30 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.page--pdtb80 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.page--w60, .page--w40 {
		width: 100%;
	}
}

.photo {
	display: block !important;
}

.photo .slick-arrow {
	width: 60px;
	height: auto;
	margin: auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 5;
	cursor: pointer;
}

.photo .slick-arrow i {
	font-size: 30px;
	line-height: 16px;
	color: #fff;
	opacity: 0.5;
}

.photo .slick-arrow i:hover {
	opacity: 1;
}

.photo .prev {
	left: 0;
}

.photo .next {
	right: 0;
}

/*===卡片列表==*/
.card__item {
	position: relative;
	-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card__item:hover::before {
	color: #0B7AB7;
}

.card__item:hover .card__title {
	color: #000;
}

.card__item:hover .lcard__img img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	opacity: 1;
}

.card__item:hover .lcard__img::before {
	opacity: 0.6;
}

.card__item:hover .lcard__img::after {
	opacity: 1;
	margin-top: 0;
}

.card__info {
	display: block;
	position: relative;
	width: 100%;
	padding: 30px 15px;
}

.card__info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	z-index: 1;
	background: -webkit-gradient(linear, left top, right top, from(#0394b9), to(#00d8ac));
	background: -o-linear-gradient(left, #0394b9 0%, #00d8ac 100%);
	background: linear-gradient(to right, #0394b9 0%, #00d8ac 100%);
}

.card__title {
	color: #333;
	font-size: 20px;
	font-size: 1.111rem;
	line-height: 1.444rem;
	font-weight: 600;
	min-height: 50px;
	margin-bottom: 20px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.card__txt {
	position: relative;
	height: 50px;
	font-size: 16px;
	font-size: 0.889rem;
	line-height: 1.333rem;
	color: #7f7f7f;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media only screen and (max-width: 1024px) {
	.card__txt {
		display: none;
	}
}

.card__date {
	font-size: 15px;
	font-size: 0.833rem;
	line-height: 1.389rem;
	font-family: 'Nanum Gothic', sans-serif;
	font-weight: 700;
	color: #0B7AB7;
}

.card__img {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 60%;
	top: 0;
	left: 0;
	background: #000;
}

.card__img::before {
	content: '';
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: #0B9A6E;
	opacity: 0.2;
}

.card__img::after {
	content: '\e92d';
	margin-top: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: 2;
	font-size: 30px;
	color: #fff;
	font-family: 'icomoon';
	opacity: 0;
}

.card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	opacity: 1;
}
