@import url(reset.css);
@import url(header.css);
@import url(footer.css);
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
	font-size: 100%;
	position: relative;
	box-sizing: border-box;
	overflow-x: hidden;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

a:link,
a:visited,
a:hover,
a:active {
	list-style: none;
	text-decoration: none;
	color: inherit;
}
p {
	margin-block-start: 0;
	margin-block-end: 0;
}
main {
	text-align: center;
}
section {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

/************************
Layout
************************/
.section-title {
	margin-bottom: 24px;
}
.section-title small {
	font-size: 0.8em;
}
.section-title em {
	font-style: normal;
	font-size: 42px;
	font-weight: 600;
}
.section .notice {
	font-size: 14px;
	color: #898989;
}
@media only screen and (max-width: 1280px) {
	/* .page-container {
		width: 100%;
		padding: 0px 2%;
	} */
}
/************************
Utilities
************************/

.d-lg-none {
	display: block !important;
}
.d-lg-block {
	display: none !important;
}

.position-relative {
	position: relative;
}

@media screen and (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}
	.d-lg-block {
		display: block !important;
	}
}
.text-start {
	text-align: left;
}
.text-end {
	text-align: right;
}
.text-red {
	color: var(--color-primary);
}

/* BASE */
.container {
	width: min(1000px, 100% - 30px);
	margin-inline: auto;
}

.section {
	padding-block: 40px;
}
@media screen and (max-width: 576px) {
	.section {
		padding-block: 40px;
	}
}

/***** UTILITIES *****/
:root {
	--color-primary: #bf2329;
	--color-lightgray: #d9d9d9;
	--color-gray: #c0c0c0;
}

/* display */
.d-block {
	display: block;
}
.d-none {
	display: none;
}
.d-flex {
	display: flex;
}
.d-md-none {
	display: block;
}
.d-sm-block {
	display: none;
}
.desktop-item {
	display: block;
}
.mobile-item {
	display: none;
}
@media screen and (max-width: 768px) {
	.d-md-none {
		display: none;
	}
	.mobile-item {
		display: block;
	}
	.desktop-item {
		display: none;
	}
}
@media screen and (max-width: 576px) {
	.d-sm-block {
		display: block;
	}
}

/* flex */
.align-items-center {
	align-items: center;
}
.justify-content-center {
	justify-content: center;
}
.justify-content-between {
	justify-content: space-between;
}
.justify-content-end {
	justify-content: flex-end;
}
.flex-column {
	flex-direction: column;
}

/* text align */
.text-primary {
	color: var(--color-primary) !important;
}
.text-gray {
	color: var(--color-gray) !important;
}
.text-center {
	text-align: center;
}

.h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}
.h3 {
	font-size: 24px;
	font-weight: 600;
}

/* font weight */
.fw-normal {
	font-weight: 500;
}
.fw-medium {
	font-weight: 600;
}
.fw-bold {
	font-weight: 700;
}

/* font size */
.fs-2 {
	font-size: 24px;
}
.fs-3 {
	font-size: 20px;
}
.fs-4 {
	font-size: 16px;
}
.fs-5 {
	font-size: 14px;
}
.fs-6 {
	font-size: 18px;
}

.text-larger {
	font-size: 1.2em;
}
@media screen and (max-width: 576px) {
	.h2 {
		font-size: 24px;
	}
	.h3 {
		font-size: 20px;
	}
	.fs-2 {
		font-size: 20px;
	}
	.fs-3 {
		font-size: 18px;
	}
}

/* margin */
.ms-auto {
	margin-left: auto;
}
.me-2 {
	margin-right: 8px;
}

.mt-auto {
	margin-top: auto;
}
.mt-6 {
	margin-top: 24px;
}
.mt-10 {
	margin-top: 40px;
}

.mb-2 {
	margin-bottom: 8px;
}
.mb-4 {
	margin-bottom: 16px;
}
.mb-10 {
	margin-bottom: 40px;
}
.mb-12 {
	margin-bottom: 48px;
}
.mb-20 {
	margin-bottom: 80px;
}

.mx-auto {
	margin-inline: auto;
}
.mx-4 {
	margin-inline: 16px;
}

/* padding */
.p-0 {
	padding: 0 !important;
}
.p-3 {
	padding: 12px !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.px-3 {
	padding-inline: 12px;
}
.px-4 {
	padding-inline: 16px;
}
.py-20 {
	padding-block: 80px;
}

/* position */
.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}

.left-0 {
	left: 0;
}
.right-0 {
	right: 0;
}
.top-0 {
	top: -2px;
}
.bottom-0 {
	bottom: -2px;
}

.translate-middle {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.translateX-middle {
	left: 50%;
	transform: translateX(-50%);
}

/* background */
.bg-white {
	background-color: #ffffff;
}

/* box shadow */
.shadow {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* grid system */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -2%;
}
.col-3 {
	width: 23%;
	margin-inline: 1%;
}
.col-4 {
	width: 31%;
	margin-inline: 1%;
}
/* sizing */
.h-100 {
	height: 100%;
}
/* list */
ol.decimal li {
	list-style-type: decimal;
	margin-left: 1em;
}
ul.disc li {
	list-style-type: disc;
	margin-left: 1em;
}
/************************
Button
************************/
.btn-default {
	border-radius: 8px;
	display: block;
	width: 180px;
	font-size: 20px;
	padding: 4px;
	font-weight: 500;
	transition: background ease 200ms, border ease 200ms;display: flex;
	align-items: center;
	justify-content: center;
}
.btn-outline {
	border: 1px solid var(--color-primary);
	color: var(--color-primary) !important;
}

.btn-primary {
	border: 1px solid var(--color-primary);
	color: #fff !important;
	background-color: var(--color-primary);
}

.btn-icon {
	width: 18px;
	margin-left: 10px;
	color: var(--color-primary)
}
.btn-container {
	display: flex;
	gap: 20px;
	padding-block: 32px;
	justify-content: center;
	z-index: 2;
	position: relative;
}
@media (hover:hover) {
	.btn-outline:hover .btn-icon{
		color: #fff;
	}
	.btn-primary:hover,
	.btn-primary:focus {
		border: 1px solid #de343a;
		background-color: #de343a;
	}
	.btn-outline:hover,
	.btn-outline:focus {
		border: 1px solid var(--color-primary);
		background-color: var(--color-primary);
		color: #fff !important;
	}
}
@media screen and (max-width: 576px) {
	.btn-default {
		width: 160px;
		font-size: 18px;
	}
}

/************************
KV
************************/
.banner {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	height: fit-content;
	max-width: 2560px;
	margin-top: 80px;
}
@media (max-width: 1600px) {
	.banner {
		height: auto;
	}
}
.banner .kv_pc_w {
	display: none;
}
@media (min-width: 1921px) {
	.banner .kv_pc_w {
		display: block;
	}
}
.banner .kv_pc {
	display: none;
}
@media (max-width: 1920px) {
	.banner .kv_pc {
		display: block;
	}
}
@media (max-width: 980px) {
	.banner .kv_pc {
		display: none;
	}
}
.banner .kv_m {
	display: none;
}
@media (max-width: 980px) {
	.banner .kv_m {
		display: block;
	}
}
.banner .kv_txt {
	position: absolute;
	text-align: center;
	top: 35%;
	left: 25%;
	right: auto;
	transform: translateY(-50%);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	color: #ffffff;
}
@media (max-width: 1920px) {
	.banner .kv_txt {
		left: 25%;
		top: 40%;
	}
}
@media (max-width: 1800px) {
	.banner .kv_txt {
		left: 20%;
	}
}
@media (max-width: 1600px) {
	.banner .kv_txt {
		top: 35%;
	}
}
@media (max-width: 1200px) {
	.banner .kv_txt {
		left: 20%;
	}
}
@media (max-width: 980px) {
	.banner .kv_txt {
		width: 93%;
		top: 15%;
		right: auto;
		left: 50%;
		transform: translate(-50%, -50%);
		flex-direction: unset;
		flex-wrap: wrap;
	}
}
.banner .kv_img {
	width: 100%;
	max-width: 2560px;
	height: fit-content;
}
.banner .kv_big {
	font-size: 65px;
	font-weight: 700;
}
@media (max-width: 1500px) {
	.banner .kv_big {
		font-size: 55px;
	}
}
@media (max-width: 1200px) {
	.banner .kv_big {
		font-size: 45px;
	}
}
@media (max-width: 980px) {
	.banner .kv_big {
		font-size: 95px;
		width: 100%;
		text-align: center;
		line-height: 1.2;
		margin: 5% 0 3% 0;
	}
}
@media (max-width: 860px) {
	.banner .kv_big {
		font-size: 60px;
		margin-bottom: 10px;
	}
}
@media (max-width: 720px) {
	.banner .kv_big {
		font-size: 63px;
	}
}
@media (max-width: 560px) {
	.banner .kv_big {
		font-size: 48px;
	}
}
@media (max-width: 480px) {
	.banner .kv_big {
		font-size: 33px;
		margin-bottom: 1%;
	}
}
.banner .kv_big .br_box {
	display: inline-block;
}
.banner .kv_big .color_red {
	color: #c12329;
}
.banner .kv_small {
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 25px 0;
}
@media (max-width: 1500px) {
	.banner .kv_small {
		font-size: 30px;
	}
}
@media (max-width: 980px) {
	.banner .kv_small {
		width: 100%;
		text-align: center;
		margin: 0;
		font-size: 48px;
	}
}
@media (max-width: 860px) {
	.banner .kv_small {
		font-size: 36px;
		margin-bottom: 20px;
	}
}
@media (max-width: 720px) {
	.banner .kv_small {
		font-size: 35px;
	}
}
@media (max-width: 560px) {
	.banner .kv_small {
		font-size: 30px;
	}
}
@media (max-width: 480px) {
	.banner .kv_small {
		font-size: 20px;
		margin-bottom: 3%;
	}
}
.banner .kv_small .side_box {
	display: inline-block;
}
.banner .kv_small .color_white {
	color: #fff;
}
@media (max-width: 980px) {
	.banner .color_white_m {
		color: #fff;
	}
}
.banner .color_white_m02 {
	color: #fff;
}
.banner .txt_shadow {
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.banner .kv_btn {
	width: 200px;
	position: relative;
	color: transparent;
}
.banner .kv_btn img {
	max-width: 250px;
}
@media (max-width: 980px) {
	.banner .kv_btn img {
		max-width: fit-content;
	}
}
.banner .kv_btn a {
	width: 100%;
	position: relative;
	padding: 0.5rem 0.5rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	border-radius: 0.5rem;
	color: #ffffff;
	font-weight: bold;
	background-color: var(--color-primary);
	overflow: hidden;
	transition: all 0.1s ease;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 480px) {
	.banner .kv_btn a {
		font-size: 1rem;
		padding: 0.35rem 0.35rem;
	}
}
.banner .kv_btn a .text {
	position: relative;
	z-index: 2;
}
.banner .kv_btn a::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: block;
	background: linear-gradient(
		to right,
		rgba(238, 61, 72, 0) 10%,
		#ee3d48 50%,
		rgba(238, 61, 72, 0) 90%
	);
	animation: kv_btn_m 3s linear infinite;
}
.banner .kv_btn a:hover {
	transform: translateY(5px);
	transition: all 0.1s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1600px) {
	.banner .kv_btn {
		max-width: 200px;
	}
}
@media (max-width: 992px) {
	.banner {
		margin-top: 50px;
	}
	.banner .kv_btn {
		max-width: 200px;
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		margin: auto;
	}
}
@media (max-width: 480px) {
	.banner .kv_btn {
		max-width: 150px;
		margin: auto;
	}
}
.banner .kv_btn .kv_pc_animate {
	position: absolute;
	top: 0;
	left: 0;
	animation: kv_btn 3s ease-in infinite;
}
@keyframes kv_btn {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes kv_btn_m {
	0% {
		transform: translateX(-120%) skewX(-30deg);
	}
	50% {
		transform: translateX(0%) skewX(-30deg);
	}
	100% {
		transform: translateX(120%) skewX(-30deg);
	}
}
.banner .kv_btn .kv_small_size {
	max-width: 245px;
}
/************************
KV對話框
************************/
.mesag_bg {
	position: relative;
	margin: 0 auto;
	height: 100px;
}
.mesag_bg .mesag_box_scale {
	position: relative;
}
.mesag_bg .mesag_box {
	cursor: pointer;
	width: 100%;
	max-width: 800px;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	border: 1px solid #c12329;
	box-shadow: 20px 20px 0px #c12329;
	padding: 33px 0;
}
@media (max-width: 1400px) {
	.mesag_bg .mesag_box {
		max-width: 800px;
	}
}
@media (max-width: 1300px) {
	.mesag_bg .mesag_box {
		padding: 33px 0;
		width: 60%;
	}
}
@media (max-width: 1199px) {
	.mesag_bg .mesag_box {
		transform: translate(-50%, -10%);
		padding-inline: 16px;
	}
}
@media (max-width: 980px) {
	.mesag_bg .mesag_box {
		box-shadow: 0 20px 0px #c12329;
		width: 550px;
		font-size: 25px;
		transform: translate(-50%, -50%);
	}
}
@media (max-width: 620px) {
	.mesag_bg .mesag_box {
		width: 450px;
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.mesag_bg .mesag_box {
		width: 90%;
		display: flex;
		justify-content: center;
		flex-direction: row;
		padding: 16px 10px 16px 10px;
		top: -10px;
	}
}
.mesag_bg .left_mesag {
	margin: 0 10px 0 0;
	text-align: center;
	font-weight: 700;
}
.mesag_bg .left_mesag_small {
	font-size: 24px;
	font-weight: 500;
}
@media (max-width: 980px) {
	.mesag_bg .left_mesag_small {
		font-size: 26px;
	}
}
.mesag_bg .left_mesag_small .br_box {
	display: unset;
}
@media (max-width: 480px) {
	.mesag_bg .left_mesag_small .br_box {
		display: block;
		font-size: 18px;
	}
}
@media (max-width: 320px) {
	.mesag_bg .left_mesag_small .br_box {
		display: block;
		font-size: 16px;
	}
}
.mesag_bg .color_red {
	color: #c12329;
}
.mesag_bg .right_mesag {
	width: 30px;
	margin: 7px 0 0 0;
}
@media (max-width: 980px) {
	.mesag_bg .right_mesag {
		width: 25px;
		margin: 7px 0 0 -4px;
	}
}
@media (max-width: 1199px) {
	.mesag_bg {
		height: 120px;
	}
}
@media (max-width: 480px) {
	.mesag_bg {
		height: 50px;
	}
}

/************************
KV Popup
************************/
.popup_bg {
	width: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #333333;
	z-index: 99999;
	overflow-y: scroll;
	display: none;
}
.popup_bg .popup_close {
	width: 90%;
	margin: 4% auto 0% auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
}
.popup_bg .popup_close img {
	width: 60px;
}
@media (max-width: 480px) {
	.popup_bg .popup_close img {
		width: 40px;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_close {
		width: 85%;
	}
}
.popup_bg .popup_box {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: 76vh;
}
.popup_bg .popup_box .popup_part01 {
	width: 96%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_part01 {
		flex-direction: column;
		align-items: center;
	}
}
.popup_bg .popup_box .left_popup {
	width: 170px;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .left_popup {
		margin: 0 auto 30px auto;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_box .left_popup {
		width: 105px;
	}
}
.popup_bg .popup_box .right_popup {
	width: calc(100% - 230px);
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 0 60px;
	color: #fff;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .right_popup {
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
}
.popup_bg .popup_box .popup_title {
	width: 100%;
	font-size: 50px;
	font-weight: 700;
	margin: 0 0 20px 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_title {
		font-size: 50px;
		margin: 0 0 20px 0;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_box .popup_title {
		font-size: 25px;
	}
}
.popup_bg .popup_box .popu_txt {
	width: 100%;
	font-size: 30px;
	font-weight: 500;
	margin: 0 0 35px 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popu_txt {
		margin: 0 0 25px 0;
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_box .popu_txt {
		font-size: 18px;
	}
}
.popup_bg .popup_box .popup_title_group {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_title_group {
		flex-wrap: wrap;
	}
}
.popup_bg .popup_box .popup_title_group .box {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
.popup_bg .popup_box .popup_title_btn {
	width: 100%;
	max-width: 248px;
	position: absolute;
	display: inline-block;
	top: 12px;
	left: 55%;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_title_btn {
		position: static;
		margin: 0 0 50px 0;
	}
}
.popup_bg .popup_box .popup_title_btn a {
	width: 100%;
	display: block;
	font-size: 0;
	text-indent: -9999px;
	color: #333;
}
.popup_bg .popup_box .popup_txt_group {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 60px 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_txt_group {
		flex-wrap: wrap;
		margin: 0 auto 60px auto;
	}
}
.popup_bg .popup_box .popup_txt_left {
	width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #fff;
	margin: 0 25px 0 0;
	padding: 15px 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_txt_left {
		width: 100%;
		border-right: none;
		margin: 0 auto;
	}
	.popup_bg .popup_box .popup_txt_left img {
		width: 150px;
		margin: 0 auto;
	}
}
.popup_bg .popup_box .popup_txt_left .popup_txt {
	font-size: 30px;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_txt_left .popup_txt {
		font-size: 28px;
	}
}
.popup_bg .popup_box .popup_txt_icon {
	width: 56px;
	margin: 0 0 15px 0;
}
.popup_bg .popup_box .popup_txt_right {
	width: calc(100% - 150px);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_txt_right {
		width: 90%;
		margin: 0 auto;
	}
}
.popup_bg .popup_box .popup_txt_right .popup_txt {
	font-size: 30px;
	margin: 0 0 15px 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_txt_right .popup_txt {
		text-align: center;
		font-size: 28px;
		width: 90%;
		margin: 0 auto 25px auto;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_box .popup_txt_right .popup_txt {
		font-size: 23px;
		margin: 0 auto 20px auto;
	}
}
.popup_bg .popup_box .popup_small {
	font-size: 23px;
	margin: 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_small {
		width: 90%;
		margin: 0 auto 10px auto;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.popup_bg .popup_box .popup_small {
		font-size: 18px;
	}
}
.popup_bg .popup_box .popup_small:last-child {
	margin: 0;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .popup_small:last-child {
		margin: 0 auto;
	}
}
.popup_bg .popup_box .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.popup_bg .popup_box .br_box {
		display: block;
	}
}
.popup_bg .popup_box .popup_notice {
	margin: 60px 0 0 0;
	color: #fff;
}
.popup_bg .popup_box .popup_notice_title {
	font-size: 20px;
	margin: 0 0 10px 0;
	text-align: left;
}
.popup_bg .popup_box .popup_notice_content {
	font-size: 16px;
	margin: 0 0 50px 0;
	text-align: justify;
}
.popup_bg .popup_box .popup_notice_content ul {
	list-style: decimal;
	padding: 0 0 0 30px;
}
.popup_bg .popup_box .popup_notice_content li {
	margin: 0 0 7px 0;
}
.popup_bg .popup_box .color_red {
	color: #c12329;
}

.popup_bg_ac {
	display: block;
}

.popup_a_link {
	color: #0083f1 !important;
}
/************************
Fixed
************************/
.fixed_box {
	width: 140px;
	height: fit-content;
	position: fixed;
	bottom: 40%;
	right: 0;
	z-index: 11;
}
@media (max-width: 980px) {
	.fixed_box {
		bottom: 0;
		right: 0;
		width: 100%;
	}
}
.fixed_box a {
	width: 100%;
	display: block;
}
@media (max-width: 980px) {
	.fixed_box a {
		background: #c12329;
		color: #fff;
		font-size: 25px;
		font-weight: 500;
		text-align: center;
		padding: 5px 0;
	}
}
@media (max-width: 768px) {
	.fixed_box a {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.fixed_box a {
		font-size: 18px;
	}
}
.fixed_box .fixed_icon {
	width: 30px;
	height: fit-content;
}
.fixed_box .fixed_txt_pc {
	display: block;
}
@media (max-width: 980px) {
	.fixed_box .fixed_txt_pc {
		display: none;
	}
}
.fixed_box .fixed_txt {
	display: none;
}
@media (max-width: 980px) {
	.fixed_box .fixed_txt {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.fixed_box .inline_block {
	display: inline-block;
	margin: 0 10px 0 0;
}
.fixed_box .inline_block:last-child {
	margin: 0;
}
.fixed_box .color_yellow {
	color: #ffff00;
}

.fixed_box_pc {
	display: block;
}
@media (max-width: 980px) {
	.fixed_box_pc {
		display: none;
	}
}

.fixed_box_m {
	display: none;
}
@media (max-width: 980px) {
	.fixed_box_m {
		display: block !important;
	}
}
/************************
Section ECO 帳戶結合信用卡
************************/
.section-eco {
	background: #e2e7ed;
	background: linear-gradient(
		0deg,
		rgba(226, 231, 237, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
	padding-bottom: 100px;
}
.section-eco .title-decor {
	width: 14.5%;
	position: absolute;
	right: calc(50% - 280px);
	top: -5%;
}
.section-eco .card {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 6px 6px 0 var(--color-primary);
	padding: 32px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}
.section-eco .card-title {
	display: flex;
	align-items: center;
}
.section-eco .card-icon {
	width: 56px;
	margin-right: 4px;
}
.section-eco .card-content {
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 20px;
}
.section-eco .card-content em {
	font-size: 64px;
	font-weight: 700;
}
.section-eco .card-content small {
	font-size: 40px;
}
.section-eco .card-notice {
	font-size: 14px;
	color: var(--color-gray);
}
.section-eco .content-left {
	font-size: 20px;
}
@media screen and (max-width: 992px) {
	.section-eco .card-content em {
		font-size: 56px;
	}
	.section-eco .card-content small {
		font-size: 32px;
	}
	.section-eco .h3 {
		font-size: 20px;
	}
	.section-eco .content-left {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	.section-eco .row {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.section-eco .col-4 {
		width: 70%;
	}
}
@media screen and (max-width: 576px) {
	.section-eco .col-4 {
		width: 90%;
	}
	.section-eco .card {
		padding: 16px 12px;
	}
	.section-eco .notice {
		text-align: left;
	}
}
/************************
Section Account 數位帳戶優惠權益
************************/
.section-account {
	background: #e2e7ed;
	background: linear-gradient(
		0deg,
		rgba(226, 231, 237, 1) 0%,
		rgba(244, 246, 248, 1) 100%
	);
	padding-bottom: 100px;
}
.section-account .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 10px;
	border-radius: 20px;
	position: relative;
	z-index: 2;
	transition: transform ease 200ms;
}
@media (hover: hover) {
	.section-account .card:hover {
		transform: translateY(-10px);
	}
}
.section-account .col-3:nth-of-type(odd) .card {
	border: 1px solid var(--color-primary);
}
.section-account .col-3:nth-of-type(even) .card {
	border: 1px solid #e88f20;
}
.section-account .card-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section-account .card-icon {
	width: 64px;
}
.section-account .card-em {
	padding: 2px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	width: 104%;
	margin-block: 8px;
}
.section-account .col-3:nth-of-type(odd) .card-em {
	background-color: var(--color-primary);
}
.section-account .col-3:nth-of-type(even) .card-em {
	background-color: #e88f20;
}
.section-account .card-decor-back {
	height: 40px;
	width: 106%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 44px;
	z-index: 1;
}
.section-account .col-3:nth-of-type(odd) .card-decor-back {
	background-color: #911b1f;
}
.section-account .col-3:nth-of-type(even) .card-decor-back {
	background-color: #c2771b;
}
@media screen and (max-width: 768px) {
	.section-account .row {
		gap: 16px;
		justify-content: center;
	}
	.section-account .col-3 {
		width: 46%;
	}
	.section-account .col-3:nth-of-type(3) {
		order: 4;
	}
}
@media screen and (max-width: 576px) {
	.section-account .row {
		gap: 8px;
	}
	.section-account .card-icon {
		width: 48px;
	}
	.section-account .card-em {
		font-size: 20px;
	}
}
/************************
修正錨點誤差
************************/
.anchor-item {
	transform: translateY(-90px);
}

/************************
背景
************************/
@media screen and (max-width: 576px) {
	.bg-coin {
		transform: scale(1.2);
		bottom: 20px;
	}
}

/************************
舊版面
************************/

.part02 {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
@media (max-width: 980px) {
	.part02 {
		display: none;
	}
}
.part02 .part_txt_group {
	width: 100%;
}
.part02 .part_txt {
	margin: 0 0 3% 0;
}
.part02 .part_title {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin: 0 0 7px 0;
}
@media (max-width: 600px) {
	.part02 .part_title {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.part02 .part_title {
		font-size: 23px;
	}
}
.part02 .part_title .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.part02 .part_title .br_box {
		display: block;
	}
}
.part02 .part_small_txt {
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
}
@media (max-width: 600px) {
	.part02 .part_small_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part02 .part_small_txt {
		font-size: 18px;
	}
}
.part02 .part_small_txt .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.part02 .part_small_txt .br_box {
		display: block;
	}
}
.part02 .step01 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}
@media (max-width: 1200px) {
	.part02 .step01 {
		width: 90%;
	}
}
.part02 .left_box {
	width: 50%;
	position: relative;
	border-radius: 20px;
	overflow: clip;
}
@media (max-width: 980px) {
	.part02 .left_box {
		width: 100%;
		margin: 0 0 35px 0;
	}
}
.part02 .left_box .address_icon {
	width: 5%;
	right: 19.7%;
	top: 36%;
	position: absolute;
}
.part02 .left_box .left_bg {
	width: 100%;
}
.part02 .right_box {
	width: 45%;
	margin: 0px 0 0 5%;
	position: relative;
}
@media (min-width: 981px) {
	.part02 .right_box {
		width: 48%;
		margin: 0px 0 0 2%;
	}
}
.part02 .right_box .part02_title {
	display: flex;
}
.part02 .right_box .part02_title .part02_title_icon {
	width: 6%;
}
.part02 .right_box .part02_title .part02_title_txt {
	font-size: 28px;
	font-weight: 700;
	margin-right: -100px;
}
.part02 .right_box .part02_title .br_box {
	display: block;
}
.part02 .right_box .part02_title .br_box:last-child {
	margin: 17px 0 0 0;
}
.part02 .right_box .txt_list {
	margin: 5px 0 25px 35px;
}
@media (max-width: 1100px) {
	.part02 .right_box .txt_list {
		margin: 5px 0 25px 24px;
	}
}
@media (max-width: 999px) {
	.part02 .right_box .txt_list {
		margin: 5px 0 25px 19px;
	}
}
.part02 .right_box .list_li {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	align-items: baseline;
	font-size: 20px;
	margin: 0 0 12px 0;
	line-height: 1;
}
@media (max-width: 1200px) {
	.part02 .right_box .list_li {
		font-size: 20px;
	}
}
.part02 .right_box .list_li:last-child {
	margin: 0;
}
.part02 .right_box .list_li_icon {
	width: 6%;
	margin: 0 5px 0 0;
	opacity: 1;
}
.part02 .right_box .step01_icon_ac {
	opacity: 1;
}
.part02 .color_red {
	color: #c12329;
}
.part02 .color_red_block {
	display: unset;
}
@media (max-width: 1200px) {
	.part02 .color_red_block {
		display: block;
	}
}
.part02 .txt_w {
	font-size: 35px;
}
.part02 .txt_w_small {
	font-size: 24px;
}
.part02 .li_color_txt {
	color: #c12329;
	font-weight: 700;
	margin: 0 3px;
	font-size: 33px;
}
@media (max-width: 1200px) {
	.part02 .li_color_txt {
		font-size: 28px;
	}
}
.part02 .br_box_inline {
	display: inline;
}
.part02 .step02_map {
	width: 100%;
	background: url(../image/part02/part02_bg_pc.jpg) no-repeat center center;
	background-size: 2560px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.part02 .swiper-slide {
	min-height: 800px;
	display: flex;
	justify-content: center;
}
.part02 .step_group {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	align-content: center;
}
@media (max-width: 1200px) {
	.part02 .step_group {
		width: 90%;
	}
}
.part02 .step03 {
	width: 80%;
	margin: 5% auto 50px auto;
	font-size: 35px;
	font-weight: 700;
}
.part02 .step03 .br_box {
	display: block;
}
.part02 .step04 {
	width: 85%;
	margin: 0 auto 0 auto;
	box-shadow: 9px 10px 10px rgba(0, 0, 0, 0.2);
	border-radius: 32px;
	overflow: hidden;
}
@media (max-width: 1600px) {
	.part02 .step04 {
		width: 95% !important;
	}
}
.part02 .step05 {
	position: absolute;
	right: 19%;
	top: 2%;
	width: 10%;
	cursor: pointer;
}
@media (max-width: 1600px) {
	.part02 .step05 {
		right: 17%;
	}
}
@media (max-width: 1200px) {
	.part02 .step05 {
		top: 7%;
		right: 15%;
	}
}
@media (max-width: 1100px) {
	.part02 .step05 {
		top: 9%;
	}
}
.part02 .nav {
	width: 195px;
	cursor: pointer;
	margin: 20px 0 0 32px;
}
@media (max-width: 1200px) {
	.part02 .nav {
		margin: 20px 0 0 30px;
		width: 188px;
	}
}
.part02 .nav02 {
	margin: 40px auto 0;
}
@media (max-width: 1200px) {
	.part02 .nav02 {
		margin: 40px auto 0;
	}
}
.part02 .nav li {
	width: 100%;
	/* font-size: 0; */
}
.part02 .hidd {
	display: none;
}

.part02_m01 {
	display: none;
	margin: 40px 0 0 0;
}
@media (max-width: 980px) {
	.part02_m01 {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		flex-wrap: wrap;
		background: #ececeb url(../image/part02/part02_bg_m.png) no-repeat
			center 280px;
		background-size: 980px;
		padding: 10% 0 10% 0;
		margin: 0 0 -1px 0;
	}
}
.part02_m01 .addClass_icon {
	width: 70px;
	margin: 0 0 20px 0;
}
@media (max-width: 768px) {
	.part02_m01 .addClass_icon {
		width: 50px;
	}
}
.part02_m01 .part_txt_group {
	width: 100%;
	margin: 0 0 50px 0;
}
@media (max-width: 480px) {
	.part02_m01 .part_txt_group {
		margin: 0 0 25px 0;
	}
}
.part02_m01 .part_txt {
	margin: 0 0 3% 0;
}
.part02_m01 .part_title {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin: 0 0 7px 0;
}
@media (max-width: 600px) {
	.part02_m01 .part_title {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.part02_m01 .part_title {
		font-size: 23px;
	}
}
.part02_m01 .part_title .br_box {
	display: unset;
}
.part02_m01 .part_small_txt {
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
}
@media (max-width: 600px) {
	.part02_m01 .part_small_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part02_m01 .part_small_txt {
		font-size: 20px;
	}
}
.part02_m01 .part_small_txt .br_box {
	display: unset;
}
.part02_m01 .part02_btn_m_bg {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 30px 0;
}
.part02_m01 .part02_btn_m_hidden {
	opacity: 0;
	display: none;
}
.part02_m01 .part02_btn_m {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
@media (max-width: 600px) {
	.part02_m01 .part02_btn_m {
		width: 45%;
	}
}
.part02_m01 .step01 {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.part02_m01 .right_box {
	width: 100%;
	margin: 0 auto 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.part02_m01 .right_box .part02_title {
	width: 100%;
	font-size: 28px;
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media (max-width: 768px) {
	.part02_m01 .right_box .part02_title {
		font-size: 23px;
	}
}
.part02_m01 .right_box .part02_title .br_box {
	display: block;
}
.part02_m01 .right_box .part02_title {
	width: 550px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media (max-width: 550px) {
	.part02_m01 .right_box .part02_title {
		width: 90%;
	}
}
.part02_m01 .right_box .part02_title .title_group {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media (max-width: 480px) {
	.part02_m01 .right_box .part02_title .title_group {
		justify-content: center;
	}
}
.part02_m01 .right_box .part02_title .part02_title_icon {
	width: 25px;
}
.part02_m01 .right_box .part02_title .part02_title_txt {
	font-size: 28px;
	font-weight: 700;
}
@media (max-width: 600px) {
	.part02_m01 .right_box .part02_title .part02_title_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part02_m01 .right_box .part02_title .part02_title_txt {
		font-size: 20px;
	}
}
@media (max-width: 320px) {
	.part02_m01 .right_box .part02_title .part02_title_txt {
		font-size: 16px;
	}
}
.part02_m01 .right_box .part02_title .title_group02 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0;
}
@media (max-width: 480px) {
	.part02_m01 .right_box .part02_title .title_group02 {
		justify-content: center;
	}
}
.part02_m01 .right_box .part02_title .br_box {
	display: block;
}
.part02_m01 .right_box .part02_title .br_box:last-child {
	margin: 17px 0 0 0;
}
.part02_m01 .right_box .txt_list {
	width: 100%;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 5px auto 35px auto;
}
.part02_m01 .right_box .txt_list02 {
	margin: 27px 0 35px 66px;
}
@media (max-width: 550px) {
	.part02_m01 .right_box .txt_list02 {
		margin: 27px 0 35px 35px;
	}
}
@media (max-width: 480px) {
	.part02_m01 .right_box .txt_list02 {
		margin: 23px auto 35px auto;
	}
}
.part02_m01 .right_box .list_li {
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 25px;
	margin: 0;
}
@media (max-width: 600px) {
	.part02_m01 .right_box .list_li {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.part02_m01 .right_box .list_li {
		font-size: 16px;
		margin: 0 0 7px 0;
	}
}
.part02_m01 .right_box .list_li:last-child {
	margin: 0;
}
.part02_m01 .part02_title:first-of-type .list_li:nth-child(2) .list_li_txt {
	margin: 6px 0 0 0;
}

@media (max-width: 420px) {
	.part02_m01 .part02_title:first-of-type .list_li:nth-child(2) .list_li_txt {
		margin: 2px 0 0 0;
	}
}
.part02_m01 .right_box .list_li_icon_m {
	width: 25px;
	margin-right: 8px;
}
.part02_m01 .right_box .step_icon_ac {
	opacity: 1;
}
.part02_m01 .color_red_block {
	display: block;
}
.part02_m01 .color_red {
	color: #c12329;
}
.part02_m01 .txt_w {
	font-weight: 700;
}
.part02_m01 .li_color_txt {
	color: #c12329;
	font-weight: 700;
	margin: 0 3px;
	font-size: 35px;
}
@media (max-width: 600px) {
	.part02_m01 .li_color_txt {
		font-size: 25px;
	}
}
@media (max-width: 420px) {
	.part02_m01 .li_color_txt {
		font-size: 18px;
	}
}
.part02_m01 .step_group {
	width: 0%;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	display: none;
	opacity: 0;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}
.part02_m01 .step03 {
	width: 95%;
	margin: 5% auto 50px auto;
	display: none;
	opacity: 0;
	font-size: 45px;
	transition: all 1s;
}
.part02_m01 .step03 .br_box {
	display: block;
}

.swiper_box_btn {
	/* width: 260px; */
	/* border: 1px solid #c12329; */
	/* border-radius: 20px; */
	/* padding: 10px 10px 13px 30px; */
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 10px 0;
	cursor: pointer;
}
@media (max-width: 600px) {
	.swiper_box_btn {
		width: 200px;
	}
}
@media (max-width: 480px) {
	.swiper_box_btn {
		width: 150px;
		margin: 24px auto 10px;
	}
}
@media (max-width: 420px) {
	.swiper_box_btn {
		margin: 15px auto 10px auto;
	}
}
.swiper_box_btn .txt {
	font-size: 25px;
}
@media (max-width: 600px) {
	.swiper_box_btn .txt {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.swiper_box_btn .txt {
		font-size: 18px;
	}
}
.swiper_box_btn .txt_icon {
	width: 28px;
	/* margin: 5px 0 0 10px; */
}
@media (max-width: 600px) {
	.swiper_box_btn .txt_icon {
		width: 20px;
	}
}
@media (max-width: 480px) {
	.swiper_box_btn .txt_icon {
		width: 18px;
	}
}
.swiper_box_btn .open {
	display: block;
}
.swiper_box_btn .close {
	display: none;
}

.swiper_box_btn_ac .open {
	display: none;
}
.swiper_box_btn_ac .close {
	display: block;
}

.swiper_box_btn02 {
	margin: 0;
}
@media (max-width: 480px) {
	.swiper_box_btn02 {
		margin: 0 auto;
	}
}

.swiper_box {
	width: 90%;
	max-width: 90%;
	margin: 20px auto 25px auto;
	border-radius: 30px;
	background: #fff;
	box-shadow: 9px 10px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: none;
}
.swiper_box .step_m_bg {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	padding: 17px 0;
}
.swiper_box .step_m {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px;
}
@media (max-width: 480px) {
	.swiper_box .step_m {
		padding: 0 10px 14px 10px;
	}
}
.swiper_box .step_title {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
@media (max-width: 600px) {
	.swiper_box .step_title {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.swiper_box .step_title {
		font-size: 20px;
	}
}
.swiper_box .title_big_txt {
	font-size: 40px;
	color: #c12329;
	margin: 0 0 -5px 0;
}
@media (max-width: 600px) {
	.swiper_box .title_big_txt {
		margin: 0 3px -5px 3px;
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.swiper_box .title_big_txt {
		font-size: 33px;
	}
}
.swiper_box .step_txt {
	width: 100%;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.swiper_box .big_txt {
	width: 100%;
	text-align: center;
	font-size: 25px;
	font-weight: 700;
}
@media (max-width: 600px) {
	.swiper_box .big_txt {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.swiper_box .big_txt {
		font-size: 18px;
	}
}
.swiper_box .small_txt {
	width: 100%;
	font-size: 25px;
	text-align: center;
}
@media (max-width: 600px) {
	.swiper_box .small_txt {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.swiper_box .small_txt {
		font-size: 18px;
	}
}
.swiper_box .inline_block {
	width: fit-content;
	display: inline-block;
}
.swiper_box .inline_block:nth-child(2) {
	margin: 0 0 0 3px;
}

.swiper_box_ac {
	display: block;
}

.morelinkicon {
	width: 30px;
	height: 30px;
	display: inline-block;
	position: relative;
	top: 5px;
	left: 0;
}
@media screen and (min-width: 601px) {
	.morelinkicon {
		top: 3px;
		left: 0;
	}
}
@media (min-width: 981px) {
	.morelinkicon {
		top: 4px;
		left: -3px;
	}
}

.part03 {
	width: 100%;
	height: auto;
	min-height: 900px;
	background: url(../image/part03/part03_bg_pc.jpg) no-repeat center center;
	background-size: 2560px;
}
.part03 .part03_group {
	width: 100%;
	position: relative;
}
.part03 .part_txt {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
}
@media (max-width: 1200px) {
	.part03 .part_txt {
		width: 90%;
	}
}
.part03 .part_title {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin: 80px 0 7px 0;
}
@media (max-width: 600px) {
	.part03 .part_title {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.part03 .part_title {
		font-size: 23px;
	}
}
.part03 .part_title .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.part03 .part_title .br_box {
		display: block;
	}
}
.part03 .part_small_txt {
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
}
@media (max-width: 600px) {
	.part03 .part_small_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part03 .part_small_txt {
		font-size: 18px;
	}
}
.part03 .part_small_txt .br_box {
	display: inline-block;
}
.part03 .part_small01_ac {
	display: block;
	opacity: 1;
}
.part03 .part_small01_noac {
	display: none;
	opacity: 0;
}

.mySwiper03_bg {
	width: 100%;
	max-width: 1200px;
	margin: 3% auto 0 auto;
	position: relative;
}

.part03_box02 {
	width: 100%;
	margin: 2% auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media (max-width: 980px) {
	.part03_box02 {
		width: 95%;
		max-width: 500px;
	}
}
@media (max-width: 480px) {
	.part03_box02 {
		max-width: 350px;
	}
}
.part03_box02 .part_card {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 10px;
	background: #fff;
	padding: 30px 0 0 0;
	border-radius: 20px;
	overflow: clip;
	box-shadow: 6px 6px 0 var(--color-primary);
}
.part03_box02 .icon_box {
	height: 95px;
}
@media (max-width: 980px) {
	.part03_box02 .icon_box {
		height: 70px;
	}
}
.part03_box02 .icon_box01 {
	width: 73px;
}
@media (max-width: 980px) {
	.part03_box02 .icon_box01 {
		width: 54px;
	}
}
.part03_box02 .icon_box02 {
	width: 83px;
}
@media (max-width: 980px) {
	.part03_box02 .icon_box02 {
		width: 61px;
	}
}
.part03_box02 .icon_box03 {
	width: 95px;
}
@media (max-width: 980px) {
	.part03_box02 .icon_box03 {
		width: 70px;
	}
}
.part03_box02 .part_card04 {
	opacity: 1;
	transition: all 1s;
}
.part03_box02 .part_card05 {
	opacity: 1;
}
.part03_box02 .part_card06 {
	opacity: 1;
}
.part03_box02 .part_card_ac {
	opacity: 1;
	transition: all 1s;
	display: flex;
}
@media (max-width: 980px) {
	.part03_box02 .part_card_ac {
		display: flex;
	}
}
@media (max-width: 980px) {
	.part03_box02 .part_card_noac01 {
		opacity: 0;
		display: none;
	}
}
@media (max-width: 980px) {
	.part03_box02 .part_card_noac02 {
		opacity: 0;
		display: none;
	}
}
.part03_box02 .part_card_ac02 {
	opacity: 1;
	transition: all 1s;
	display: flex;
}
@media (max-width: 980px) {
	.part03_box02 .part_card_ac02 {
		opacity: 1;
		transition: all 1s;
		display: flex;
	}
}
.part03_box02 .card_title {
	height: 70px;
	margin: 0 0 30px 0;
	box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1050px) {
	.part03_box02 .card_title {
		height: 67px;
	}
}
.part03_box02 .card_title01 {
	width: 240px;
}
.part03_box02 .card_title02 {
	width: 300px;
}
.part03_box02 .card_title03 {
	width: 240px;
}
.part03_box02 .part_bg {
	width: 100%;
	background: #fff;
}
.part03_box02 .part_title {
	font-size: 25px;
	font-weight: 700;
	padding: 6% 0;
	margin: 0;
}
@media (max-width: 1920px) {
	.part03_box02 .part_title {
		font-size: 25px;
		padding: 6% 0;
	}
}
@media (max-width: 1254px) {
	.part03_box02 .part_title {
		font-size: 25px;
	}
}
@media (max-width: 1060px) {
	.part03_box02 .part_title {
		font-size: 23px;
	}
}
@media (max-width: 980px) {
	.part03_box02 .part_title {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.part03_box02 .part_title {
		font-size: 23px;
	}
}
.part03_box02 .part_title .br_box {
	display: block;
}
.part03_box02 .part_txt {
	width: calc(100% - 30px);
	font-size: 20px;
	padding: 0 15px 0;
	color: #000;
	min-height: 200px;
	display: flex;
	align-items: flex-start;
	text-align: left;
}
@media (max-width: 1920px) {
	.part03_box02 .part_txt {
		width: calc(100% - 30px);
		padding: 0 15px 0;
		font-size: 20px;
	}
}
@media (max-width: 980px) {
	.part03_box02 .part_txt {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.part03_box02 .part_txt {
		padding: 0 20px 0;
	}
}
@media (max-width: 320px) {
	.part03_box02 .part_txt {
		font-size: 16px;
	}
}
.part03_box02 .part_txt ul {
	list-style: disc;
	padding: 0 0 0 30px;
	margin: 0;
}
.part03_box02 .part_txt li {
	margin: 0 0 5px 0;
}
.part03_box02 .part_txt li:last-child {
	margin: 0;
}
.part03_box02 .part_txt li .br_box {
	display: inline;
}
@media (max-width: 1920px) {
	.part03_box02 .part_txt li .br_box {
		display: inline;
	}
}
@media (max-width: 1228px) {
	.part03_box02 .part_txt li .br_box {
		display: inline;
	}
}
.part03_box02 .color_red {
	color: #c12329;
	font-weight: 700;
}
.part03_box02 .part_btn {
	width: 156px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px auto 30px auto;
	cursor: pointer;
}
.part03_box02 .part_btn a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	/* padding: 10px 0; */
	/* border: 1px solid #c12329; */
	/* border-radius: 20px; */
}
.part03_box02 .part_btn .big {
	font-size: 20px;
}
.part03_box02 .part_btn .big .hidden_txt {
	font-size: 0;
}
.part03_box02 .part_btn .small {
	font-size: 16px;
	display: inline-block;
	margin: 0 0 0 3px;
}

.part03_box02_ac {
	display: flex;
	opacity: 1;
}

.part03_m01 {
	width: 100%;
	background: url(../image/part03/part03_bg_m.jpg) no-repeat center center;
	background-size: 980px;
	margin: 0 0 -2px 0;
	display: none;
	padding: 12% 0 42% 0;
}
@media (max-width: 980px) {
	.part03_m01 {
		display: block;
	}
}
@media (max-width: 751px) {
	.part03_m01 {
		background-size: auto;
	}
}
.part03_m01 .part03_group {
	width: 100%;
	position: relative;
}
.part03_m01 .part_txt {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
}
@media (max-width: 1200px) {
	.part03_m01 .part_txt {
		width: 90%;
	}
}
.part03_m01 .part_title {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin: 0 0 7px 0;
}
@media (max-width: 600px) {
	.part03_m01 .part_title {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.part03_m01 .part_title {
		font-size: 23px;
	}
}
.part03_m01 .part_title .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.part03_m01 .part_title .br_box {
		display: block;
	}
}
.part03_m01 .part_small_txt {
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
}
@media (max-width: 600px) {
	.part03_m01 .part_small_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part03_m01 .part_small_txt {
		font-size: 20px;
	}
}
.part03_m01 .part_small_txt .br_box {
	display: block;
}
.part03_m01 .part03_box01 {
	width: 100%;
	max-width: 1260px;
	margin: 8% auto 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media (max-width: 480px) {
	.part03_m01 .part03_box01 {
		margin: 13% auto 0 auto;
	}
}
.part03_m01 .part03_box01 .part_card {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin: 0 auto 7% auto;
}
.part03_m01 .part03_box01 .part_txt {
	font-size: 30px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
@media (max-width: 600px) {
	.part03_m01 .part03_box01 .part_txt {
		font-size: 23px;
	}
}
@media (max-width: 480px) {
	.part03_m01 .part03_box01 .part_txt {
		font-size: 20px;
	}
}
.part03_m01 .part03_box01 .part_txt .br_box {
	display: block;
}
.part03_m01 .part03_box01 .part_icon {
	width: 41px;
	height: 41px;
}
.part03_m01 .part03_box01 .part_line {
	width: 1px;
	height: 100px;
	background: #fff;
	margin: 2% 0 0 0;
}
.part03_m01 .part03_box02 {
	width: 95%;
	max-width: 1600px;
	margin: 5% auto 0 auto;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
@media (max-width: 480px) {
	.part03_m01 .part03_box02 {
		margin: 7% auto 0 auto;
	}
}
.part03_m01 .part03_box02 .tab_box {
	width: 100%;
	height: 70px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	color: #fff;
	margin: 20px 0 45px 0;
}
@media (max-width: 768px) {
	.part03_m01 .part03_box02 .tab_box {
		height: 60px;
	}
}
@media (max-width: 538px) {
	.part03_m01 .part03_box02 .tab_box {
		margin: 20px 0 30px 0;
	}
}
.part03_m01 .part03_box02 .tab_list {
	width: 100%;
	margin: 0 5px;
	background: transparent;
	text-align: center;
}
@media (max-width: 480px) {
	.part03_m01 .part03_box02 .tab_list {
		margin: 0 3px;
	}
}
.part03_m01 .part03_box02 .tab_list .show01 {
	display: block;
}
.part03_m01 .part03_box02 .tab_list .show02 {
	display: none;
}
.part03_m01 .part03_box02 .tab_list:nth-child(1) {
	width: 123px;
}
.part03_m01 .part03_box02 .tab_list:nth-child(2) {
	width: 272px;
}
.part03_m01 .part03_box02 .tab_list:nth-child(3) {
	width: 175px;
}
.part03_m01 .part03_box02 .tab_list_ac .show01 {
	display: none;
}
.part03_m01 .part03_box02 .tab_list_ac .show02 {
	display: block;
}
.part03_m01 .part03_box02 .part_card {
	width: 90%;
	max-width: 540px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 10px;
	background: #fff;
}
.part03_m01 .part03_box02 .part_card04 {
	opacity: 0;
	transition: all 1s;
	display: none;
}
.part03_m01 .part03_box02 .part_card05 {
	opacity: 0;
	transition: all 1s;
	display: none;
}
.part03_m01 .part03_box02 .part_card06 {
	opacity: 0;
	transition: all 1s;
	display: none;
}
.part03_m01 .part03_box02 .part_card_ac {
	opacity: 1;
	transition: all 1s;
	display: flex;
}
.part03_m01 .part03_box02 .part_title {
	font-size: 28px;
	font-weight: 400;
	background: #666;
	padding: 10% 10%;
	color: #fff;
	margin: 0;
}
@media (max-width: 768px) {
	.part03_m01 .part03_box02 .part_title {
		font-size: 25px;
		padding: 10% 5%;
	}
}
@media (max-width: 480px) {
	.part03_m01 .part03_box02 .part_title {
		font-size: 23px;
	}
}
.part03_m01 .part03_box02 .part_title .br_box {
	display: block;
}
.part03_m01 .part03_box02 .part_txt {
	font-size: 24px;
	padding: 30px 15% 0;
	color: #000;
	min-height: 250px;
	display: flex;
	align-items: flex-start;
}
@media (max-width: 768px) {
	.part03_m01 .part03_box02 .part_txt {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.part03_m01 .part03_box02 .part_txt {
		font-size: 18px;
		padding: 30px 5% 0;
	}
}
.part03_m01 .part03_box02 .part_txt ul {
	list-style: disc;
	padding: 0 0 0 30px;
	margin: 0;
}
.part03_m01 .part03_box02 .part_txt li {
	margin: 0 0 5px 0;
}
.part03_m01 .part03_box02 .part_txt li:last-child {
	margin: 0;
}
.part03_m01 .part03_box02 .part_txt li .br_box {
	display: unset;
}
.part03_m01 .part03_box02 .part_txt li .br_box_ml {
	margin: 0;
}
.part03_m01 .part03_box02 .part_txt .color_red {
	color: #c12329;
	font-weight: 700;
}
.part03_m01 .part03_box02 .part_btn {
	width: 156px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px auto;
}
.part03_m01 .part03_box02 .part_btn a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	border: 1px solid #000;
}
.part03_m01 .part03_box02 .part_btn .big {
	font-size: 20px;
}
.part03_m01 .part03_box02 .part_btn .small {
	font-size: 16px;
	display: inline-block;
	margin: 0 0 0 3px;
}


.part04 {
	width: 100%;
	height: auto;
	padding-bottom: 50px;
	background: url(../image/part04/bgimage_indexSection.jpg) no-repeat center
		center;
	background-size: 2560px;
}
@media (max-width: 1200px) {
	.part04 {
		padding-bottom: 12%;
	}
}
.part04 .part_txt {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #000;
}
@media (max-width: 1200px) {
	.part04 .part_txt {
		width: 90%;
	}
}
.part04 .part_title {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	margin: 80px 0 7px 0;
}
@media (max-width: 600px) {
	.part04 .part_title {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.part04 .part_title {
		font-size: 23px;
	}
}
.part04 .part_title .br_box {
	display: unset;
}
@media (max-width: 980px) {
	.part04 .part_title .br_box {
		display: block;
	}
}
.part04 .swiper-button-next.swiper-button-next04 {
	right: 20px;
}
@media (max-width: 480px) {
	.part04 .swiper-button-next.swiper-button-next04 {
		right: 10px;
	}
}
.part04 .swiper-button-prev.swiper-button-prev04 {
	left: 20px;
}
@media (max-width: 480px) {
	.part04 .swiper-button-prev.swiper-button-prev04 {
		left: 10px;
	}
}

.mySwiper04_bg {
	width: 100%;
	max-width: 1200px;
	margin: 3% auto 0 auto;
	position: relative;
}
.mySwiper04_bg .swiper-pagination {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 20px 0;
}
.mySwiper04_bg
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 12px;
	background-color: #333333;
	opacity: 0.5;
}
.mySwiper04_bg
	.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #c0232a;
	opacity: 1;
}

.part04_box02 {
	width: 100%;
	margin: 2% auto 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media (max-width: 980px) {
	.part04_box02 {
		width: 95%;
		max-width: 500px;
	}
}
@media (max-width: 480px) {
	.part04_box02 {
		max-width: 350px;
	}
}
.part04_box02 .part_card {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 10px;
	padding-bottom: 30px;
	background: #fff;
	padding: 5px 15px 15px;
	border: 1px solid #c0232a;
}
@media (max-width: 768px) {
	.part04_box02 .part_card {
		width: calc(100% - 100px);
	}
}
.part04_box02 .part_card::before {
	content: "";
	display: block;
	position: absolute;
	width: 75%;
	height: 10px;
	right: -10px;
	bottom: -10px;
	background-color: #c0232a;
}
.part04_box02 .part_card::after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 55%;
	right: -10px;
	bottom: -10px;
	background-color: #c0232a;
}
.part04_box02 .part_bg {
	width: 100%;
}
.part04_box02 .part_title {
	font-size: 22px;
	font-weight: 700;
	text-align: left;
	padding: 3% 0;
	margin: 0;
}
@media (max-width: 480px) {
	.part04_box02 .part_title {
		font-size: 20px;
	}
}
.part04_box02 .part_title .br_box {
	display: block;
}
.part04_box02 .part_content {
	display: flex;
}
.part04_box02 .part_photo {
	width: 33%;
}
.part04_box02 .part_txt {
	width: 67%;
	font-size: 18px;
	padding: 0 0 0 15px;
	color: #000;
	align-content: flex-start;
}
@media (max-width: 1920px) {
	.part04_box02 .part_txt {
		font-size: 18px;
	}
}
@media (max-width: 980px) {
	.part04_box02 .part_txt {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.part04_box02 .part_txt {
		font-size: 16px;
	}
}
.part04_box02 .color_red {
	color: #c12329;
	font-weight: 700;
}
.part04_box02 .part_btn {
	width: 30px;
	height: 30px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 auto;
	border: 1px solid #c12329;
	border-radius: 999px;
	cursor: pointer;
}
.part04_box02 .part_btn a {
	width: 30px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0;
	margin-top: -3px;
}
.part04_box02 .part_btn a span {
	color: #c12329;
}

.notice {
	width: 100%;
	max-width: 1000px;
	margin: 5% auto 5% auto;
	position: relative;
}
@media (max-width: 980px) {
	.notice {
		margin: 5% auto 12% auto;
	}
}
.notice .notice_a_link {
	color: #0083f1;
}
.notice .notice_title {
	font-size: 28px;
	font-weight: 500;
	background: #c12329;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 4px 0;
}
@media (max-width: 480px) {
	.notice .notice_title {
		font-size: 24px;
		padding: 3px 0 5px;
	}
}
.notice .color_red {
	color: #c12329;
}

.notice_content {
	margin: 30px 0 0 0;
}

.notice_part {
	margin: 0 0 20px 0;
}
@media (max-width: 1600px) {
	.notice_part {
		width: 90%;
		margin: 0 auto 30px auto;
	}
}
.notice_part .notice_img02 {
	display: inline-block;
	width: 55px;
}
.notice_part .notice_img03 {
	display: block;
	max-width: 754px;
	margin: 10px 0 0 0;
}
.notice_part .notice_img03 .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_part .notice_img03 .pc_img {
		display: none;
	}
}
.notice_part .notice_img03 .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_part .notice_img03 .m_img {
		display: block;
	}
}
.notice_part .notice_img04 {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 8px 0 8px 20px;
}
@media (max-width: 980px) {
	.notice_part .notice_img04 {
		margin: 15px auto;
		width: 90%;
		max-width: 350px;
	}
}
.notice_part .notice_img04 .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_part .notice_img04 .pc_img {
		display: none;
	}
}
.notice_part .notice_img04 .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_part .notice_img04 .m_img {
		display: block;
	}
}
.notice_part .notice_img05 {
	display: block;
	margin: 10px 0 0 0;
}
.notice_part .notice_img05 .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_part .notice_img05 .pc_img {
		display: none;
	}
}
.notice_part .notice_img05 .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_part .notice_img05 .m_img {
		display: block;
	}
}
.notice_part .notice_img06 {
	display: block;
	margin: 10px 0 10px -16px;
}
.notice_part .notice_img06 .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_part .notice_img06 .pc_img {
		display: none;
	}
}
.notice_part .notice_img06 .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_part .notice_img06 .m_img {
		display: block;
	}
}
.notice_part .notice_img07 {
	width: 100%;
	max-width: 777px;
	display: block;
	margin: 10px 0 10px 0;
}
.notice_part .notice_img07 .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_part .notice_img07 .pc_img {
		display: none;
	}
}
.notice_part .notice_img07 .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_part .notice_img07 .m_img {
		display: block;
	}
}

.notice_q {
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	padding: 10px 20px;
	border: 1px solid #000;
	cursor: pointer;
	text-align: left;
	border-radius: 8px;
}
@media (max-width: 400px) {
	.notice_q {
		font-size: 18px;
	}
}
.notice_q .notice_q_txt {
	width: 100%;
	text-align: left;
}
.notice_q .notice_q_icon .notice_open {
	width: 25px;
	height: 25px;
	display: block;
}
.notice_q .notice_q_icon .notice_close {
	width: 25px;
	height: 25px;
	display: none;
}
.notice_q .notice_q_icon_ac .notice_open {
	width: 25px;
	height: 25px;
	display: none !important;
}
.notice_q .notice_q_icon_ac .notice_close {
	width: 25px;
	height: 25px;
	display: block !important;
}

.notice_ans {
	width: auto;
	margin: 15px 0 0 0;
	padding: 0 0 0 20px;
	display: none;
}
.notice_ans .ans_box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	margin: 0 0 10px 0;
	padding: 0 20px 0 0;
}
@media (max-width: 1221px) {
	.notice_ans .ans_box {
		flex-wrap: wrap;
	}
}
.notice_ans .ans_box_marginTop {
	margin: 18px 0 0 0;
	align-items: flex-start;
}
.notice_ans .left_box {
	width: 100%;
}
.notice_ans .left_box .ans_title {
	margin: 0 0 5px 0;
}
.notice_ans .left_box ul {
	list-style: decimal;
	padding: 0 0 0 20px;
}
.notice_ans .left_box li {
	margin: 0 0 5px 0;
	text-align: justify;
}
.notice_ans .left_box li .br_box {
	display: block;
}
.notice_ans .left_box02 {
	margin: 0 5px;
}
@media (max-width: 980px) {
	.notice_ans .left_box02 {
		margin: 0 5px 30px;
	}
}
.notice_ans .right_box {
	width: 100%;
	margin: 20px 0 0 20px;
}
@media (max-width: 1221px) {
	.notice_ans .right_box {
		margin: 10px 0 0 0;
	}
}
.notice_ans .right_box .pc_img {
	display: block;
}
@media (max-width: 980px) {
	.notice_ans .right_box .pc_img {
		display: none;
	}
}
.notice_ans .right_box .m_img {
	display: none;
}
@media (max-width: 980px) {
	.notice_ans .right_box .m_img {
		display: block;
	}
}
.notice_ans .right_box02 {
	margin: 0 5px;
}
.notice_ans .ul_box .li_box {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
}
.notice_ans .ul_box .li_number {
	display: inline-block;
}
.notice_ans .ul_box .li_content {
	display: inline-block;
	margin: 0 0 0 5px;
}

.notice_ans_ac {
	display: block;
}