* {
		margin: 0px;
		padding: 0px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
}
dl, ol, ul {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
}
ol, ul {
		padding-left: 0 !important;
}
button:focus {
		outline: none !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
}
a, a:link, a:visited, a:hover, a:active {
		text-decoration: none;
		color: #333;
		border: 0 !important;
		outline: none !important;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
}
body {
		padding: 0;
		margin: 0;
		color: #000000;
		font-family: 'Public Sans', 'Noto Sans TC';
		font-size: 1rem;
		font-optical-sizing: auto;
		font-style: normal;
}
.c_red {
		color: #cc0000;
}
.border-bottom.c_red {
		border-color: #cc0000 !important;
		border-bottom-width: 2px;
		opacity: 1;
}
.no {
		font-size: 150%;
}
.tab_title .no {
		font-size: 140%;
}
.tab_title .no small {
		font-size: 80%;
}
.drawer-content a:link, .drawer-content a {
		color: #484848;
}
.sp_block a span {
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
}
.sp_block a:visited span, .sp_block a:hover span, .sp_block a:active span {
		color: #ff2525 !important;
		border-color: #ff2525 !important;
}
.drawer-content a:visited, .drawer-content a:hover, .drawer-content a:active {
		color: #c71622 !important;
}
/************************
List
************************/
.remark-text .point_red.star_mode {
		font-size: .875rem;
		margin-left: 1rem;
}
.point_red.star_mode > li {
		position: relative;
		padding: .125rem 0;
}
.point_red.star_mode > li::before {
		content: '*';
		position: absolute;
		left: -12px;
		top: 0;
		width: 14px;
		height: 14px;
		font-size: 150%;
		border-radius: 0;
		display: block;
		background-color: transparent;
}
/************************
Button
************************/
a.btn-event {
		display: inline-block;
		border-radius: 5rem;
		background-color: #cc0000;
		color: #ffffff;
		padding: 1rem 1.75rem 1rem 1.75rem;
		font-size: 1.125rem;
		font-weight: bold;
		line-height: 1;
		margin-bottom: .5rem;
		min-width: 200px;
		text-align: center;
}
a.btn-event::after {
		content: '';
}
a.btn-event:active, a.btn-event:focus, a.btn-event:hover {
		background-color: #ee1e1e;
		-webkit-box-shadow: 0 0 .25rem RGBA(0, 0, 0, .25);
		box-shadow: 0 0 .25rem RGBA(0, 0, 0, .25)
}
a.btn-event:active, a.btn-event:focus, a.btn-event:hover, a.btn-event {
		-webkit-transition: all .1s ease-in;
		transition: all .1s ease-in;
}
a.btn-event:active, a.btn-event:focus, a.btn-event:hover {
		-webkit-transform: translate(0, .25rem);
		-ms-transform: translate(0, .25rem);
		transform: translate(0, .25rem);
}
/************************
SPACE
************************/
@media screen and (min-width:1200px) {
		.container-xxl {
				max-width: 1199px;
		}
		.container-xxl.full {
				max-width: 2560px;
		}
}
/************************
Toggle Button
************************/
.toggle-button {
		position: relative;
		float: left;
		display: none;
		left: 0;
		width: 46px;
		height: 46px;
		padding: 18px 15px;
		-webkit-transition: .25s;
		transition: .25s;
		z-index: 999;
}
.toggle-button:hover {
		cursor: pointer;
}
.toggle-button .menu-bar {
		position: relative;
		width: 100%;
		-webkit-transition: .2s;
		transition: .2s;
}
.toggle-button .menu-bar-top {
		border: 2px solid #909090;
		border-bottom: none;
		top: 0px;
}
.toggle-button .menu-bar-middle {
		height: 2px;
		margin: 2px 0px;
		top: 0px;
}
.toggle-button .menu-bar-bottom {
		border: 2px solid #909090;
		border-top: none;
		top: 0px;
}
.toggle-button.open .menu-bar-top {
		-webkit-transform: rotate(45deg) translate(3px, 3px);
		-ms-transform: rotate(45deg) translate(3px, 3px);
		transform: rotate(45deg) translate(3px, 3px);
		-webkit-transition: .2s;
		transition: .2s;
}
.toggle-button.open .menu-bar-middle {
		-webkit-transform: translate(0px);
		-ms-transform: translate(0px);
		transform: translate(0px);
		-webkit-transition: .1s ease-in;
		transition: .1s ease-in;
		opacity: 0;
}
.toggle-button.open .menu-bar-bottom {
		-webkit-transform: rotate(-45deg) translate(3px, -3px);
		-ms-transform: rotate(-45deg) translate(3px, -3px);
		transform: rotate(-45deg) translate(3px, -3px);
		-webkit-transition: .2s;
		transition: .2s;
}
@media (max-width: 991px) {
		.toggle-button {
				display: inline-block;
		}
}
/************************
Header
************************/
header {
		position: fixed;
		display: inline-block;
		width: 100%;
		top: 0;
		left: 0;
		font-size: 16px;
		height: 120px;
		z-index: 50;
		border-top: 0;
		background-color: rgba(255, 255, 255, 0.99);
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
}
header.open {
		height: 50px;
		border-top: 4px solid #2e2e2e;
		-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
header.open, header {
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
}
@media screen and (max-width: 991px) {
		header {
				height: 50px;
				border-top: 4px solid #2e2e2e;
		}
}
/************************/
header .h_menu, header .h_logo, header .h_content {
		position: relative;
		display: inline-block;
		float: left;
}
header .h_content {
		width: 100%;
		padding-top: 40px;
}
header .h_menu ul.menu-bottom {
		position: fixed;
		display: inline-block;
		top: 0;
		left: 0;
		width: 100%;
		height: 40px;
		background: #2e2e2e;
		z-index: 50;
}
header .h_menu ul.menu-bottom li {
		position: relative;
		display: inline-block;
		float: right;
		font-size: 14px;
		line-height: 1.5em;
}
header .h_menu ul.menu-bottom a:hover, header .h_menu ul.menu-bottom a {
		display: inline-block;
		color: #ffffff;
		height: 40px;
		padding: 9px 18px;
}
header .h_menu ul.menu-bottom a span {
		font-size: 12px;
		color: #82827c;
		margin: 0 5px;
}
header .h_menu ul.menu-bottom li:hover {
		background: #444444;
}
header .h_menu ul.menu-bottom ul {
		position: absolute;
		display: none;
		top: 100%;
		width: 280px;
		color: #b8b8b8;
		background: #444444;
		text-align: start;
}
header .h_menu ul.menu-bottom li:hover > ul {
		display: block;
		height: auto;
}
header .h_menu ul.menu-bottom ul li {
		float: left;
		width: 100%;
		padding: 5px 20px;
		min-height: 40px;
}
header .h_menu ul.menu-bottom ul li:hover {
		background: #999999;
}
header .h_menu ul.menu-bottom ul li.panel-header:hover {
		background: #444444;
}
header .h_menu ul.menu-bottom ul label, header .h_menu ul.menu-bottom ul a {
		font-weight: 400;
}
header.open ul.menu-bottom {
		display: none;
}
header.open .h_content {
		padding-top: 0px;
}
@media screen and (max-width: 991px) {
		body.open {
				width: 100%;
				height: 100vh;
				overflow: hidden;
		}
		.overlay {
				position: fixed;
				top: 0;
				left: 0;
				z-index: 49;
				width: 100%;
				height: 100%;
				opacity: 0;
				visibility: hidden;
				-webkit-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
				background-color: RGBA(0, 0, 0, 0.8);
				display: block;
		}
		.overlay.open {
				opacity: 0.8;
				visibility: visible;
				z-index: 49;
		}
		header .h_content {
				padding-top: 0px;
		}
		body.open .h_content {
				padding-left: 280px;
		}
		header .h_content, body.open .h_content {
				-webkit-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
		}
		header.open ul.menu-bottom, header .h_menu ul.menu-bottom {
				position: relative;
				display: inline-block;
				background: #ffffff;
		}
		header .h_menu ul.menu-bottom li {
				float: left;
				width: 100%;
				text-align: start;
		}
		header .h_menu ul.menu-bottom li:hover {
				background: #ffffff;
		}
		header .h_menu ul.menu-bottom a:hover, header .h_menu ul.menu-bottom a {
				width: 100%;
				color: #656565;
				padding: 9px 13px;
		}
		header .h_menu ul.menu-bottom a span {
				position: absolute;
				right: 5px;
				color: #ff3333;
		}
		header .h_menu ul.menu-bottom li.pc768 {
				display: none;
		}
		header .h_menu ul.menu-bottom ul {
				position: relative;
				display: inline-block;
				padding: 10px 0px;
				color: #70706f;
				background: #ececec;
		}
		header .h_menu ul.menu-bottom ul li {
				padding: 5px 20px;
				min-height: 30px;
		}
		header .h_menu ul.menu-bottom ul.last-menu li, header .h_menu ul.menu-bottom ul li.panel-header:hover {
				background: #ececec;
		}
		header .h_menu ul.menu-bottom ul li:hover {
				background: #e2e2e2;
		}
		header .h_menu ul.menu-bottom ul a:hover, header .h_menu ul.menu-bottom ul a {
				color: #000000;
		}
		header .h_menu ul.menu-bottom li:hover > ul, header .h_menu ul.menu-bottom ul {
				display: none;
		}
		header .h_menu ul.menu-bottom li:hover > ul.open, header .h_menu ul.menu-bottom ul.open {
				display: inline-block;
		}
		header .h_menu ul.menu-bottom ul {
				width: 100%;
		}
}
@media screen and (max-width: 480px) {
		body .h_bank, body.open .h_bank {
				position: absolute;
				-webkit-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
		}
		body .h_bank {
				right: 0;
		}
		body.open .h_bank {
				right: -100%;
		}
		body.open .h_content {
				padding-left: 220px;
		}
}
@media screen and (max-width: 320px) {
		body.open .h_content {
				padding-left: 180px;
		}
}
@media screen and (max-width: 280px) {
		body.open .h_content {
				padding-left: 160px;
		}
}
/************************/
header .h_logo {
		width: 190px;
		margin-top: 26px;
		margin-right: 10px;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
}
header .h_logo img {
		display: inline-block;
		float: left;
		width: 50%;
}
header .h_menu ul.menu-top li, header .h_menu ul.menu-top, header .h_menu, header .h_bank {
		position: relative;
		display: inline-block;
}
header .h_bank .menu-dark, header .h_menu ul.menu-top li {
		line-height: 1.75em;
		height: 80px;
		padding: 26px 0px;
		color: #2e2e2e;
}
header .h_menu ul.menu-top li {
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
}
/************************/
header .h_bank:hover ul.dark-last {
		display: block;
}
header .h_bank ul.dark-last {
		position: absolute;
		display: none;
		top: 100%;
		right: 0px;
		width: 180px;
		color: #2e2e2e;
		background: #ececec;
		text-align: center;
}
header .h_bank ul.dark-last li {
		display: inline-block;
		width: 100%;
}
header .h_bank ul.dark-last a, header .h_bank ul.dark-last a:hover {
		display: inline-block;
		width: 100%;
		padding: 15px 0px;
		font-size: 14px;
		color: #2e2e2e;
		-webkit-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
}
header .h_bank ul.dark-last a:hover {
		background: #dedede;
}
header .h_bank ul.dark-last.open {
		display: inline-block;
}
/************************/
header .h_menu ul.menu-top a, header .h_menu ul.menu-top a:hover {
		display: inline-block;
		padding: 0px 13px;
		color: #2e2e2e;
		font-weight: 500;
}
header .h_menu ul.menu-top li:last-child a {
		border-left: 1px solid #c0c0c0 !important;
}
header .h_menu ul.menu-top li:hover {
		background: #eeeeee;
}
header.open ul.menu-top li {
		height: 46px;
		padding: 10px 0px;
}
/************************/
header .h_bank {
		float: right;
}
header .h_bank a.menu-dark {
		background: #ff3333;
		padding: 26px 17px;
		display: inline-block;
		color: #ffffff;
}
header .h_bank:hover .menu-dark, header .h_bank .menu-dark {
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
}
header .h_bank:hover a.menu-dark {
		display: inline-block;
		color: #ffffff;
		background: #ee1818;
}
header .h_bank .menu-dark img {
		display: inline-block;
		width: 20px;
		position: relative;
		top: -3px;
		margin-right: 5px;
}
header.open .h_bank .menu-dark {
		height: 46px;
		padding: 10px 17px;
}
header.open .h_logo img.logo_tc {
		display: none;
}
header.open .h_logo {
		width: 80px;
		margin-top: 12px;
		margin-left: 10px;
		margin-right: 10px;
}
header.open .h_logo img {
		width: 100%;
}
@media screen and (max-width: 991px) {
		header .h_content {
				height: 50px;
		}
		header .h_logo img.logo_tc {
				display: none;
		}
		header.open .h_logo, header .h_logo {
				width: 80px;
				margin-top: 12px;
				margin-left: 0px;
				margin-right: 10px;
		}
		header .h_logo img {
				width: 100%;
		}
		header .h_bank a.menu-dark {
				font-size: 14px;
				height: 46px;
				padding: 10px 17px;
		}
		header .h_menu {
				position: absolute;
				width: 280px;
				height: 100vh;
				top: -4px;
				left: -100%;
				z-index: 20;
				padding-bottom: 100px;
				background: #ffffff;
		}
		body.open header .h_menu {
				left: 0;
		}
		body header .h_menu, body.open header .h_menu {
				-webkit-transition: all 0.36s ease-out;
				transition: all 0.36s ease-out;
				overflow-y: auto;
		}
		header .h_menu ul.menu-top {
				border-bottom: 1px solid #ececec;
		}
		header .h_menu ul.menu-top li {
				width: 100%;
				height: auto;
				font-size: 18px;
				padding: 12px 0px;
				text-align: start;
		}
		header .h_menu a, header .h_menu a:hover {
				padding: 0px 20px;
		}
}
@media screen and (max-width: 480px) {
		header .h_menu {
				width: 220px;
		}
		header.open .h_bank a.menu-dark, header .h_bank a.menu-dark {
				font-size: 12px;
				padding: 10px 10px;
		}
		header.open .h_logo, header .h_logo {
				width: 80px;
				margin-top: 12px;
				margin-left: 0px;
				margin-right: 0px;
		}
}
@media screen and (max-width: 320px) {
		header .h_menu {
				width: 180px;
		}
		header.open .h_logo, header .h_logo {
				width: 60px;
		}
}
@media screen and (max-width: 280px) {
		header .h_menu {
				width: 160px;
		}
		header.open .h_logo, header .h_logo {
				width: 60px;
		}
}
/************************
FOOTER
************************/
footer {
		background-color: #484848;
}
/************************/
footer .fiscal {
		color: #191919;
}
footer .fiscal .f_left {
		font-size: 30px;
		color: #ffffff;
}
footer .fiscal .f_right {
		font-size: 14px;
		line-height: 1.4em;
		color: #ffffff;
}
footer .fiscal .f_right a, footer .fiscal .f_right a:hover {
		color: #ffffff;
		line-height: 1em;
}
/************************/
footer .f_link {
		margin-top: 10px;
		font-size: 14px;
		color: #b8b8b8;
}
footer .f_link a, footer .f_link a:hover {
		display: inline-block;
		padding: 0px 10px;
		color: #b8b8b8;
		line-height: 1em;
}
footer .f_link a:first-child {
		padding-left: 0;
}
footer .f_link a + a {
		border-left: 1px solid #b8b8b8 !important;
}
footer .f_copy {
		display: inline-block;
		font-weight: 600;
}
@media screen and (max-width: 991px) {
		footer .fiscal {
				padding: 0 .85rem;
		}
		footer .f_link {
				font-size: 13px;
				margin-top: 20px;
				text-align: center;
		}
}
@media screen and (max-width: 576px) {
		footer .fiscal {
				text-align: justify;
		}
}
@media screen and (max-width: 320px) {
		footer .fiscal .f_left {
				font-size: 26px;
		}
}
@media screen and (max-width:280px) {
		footer .fiscal .f_right {
				font-size: 12px;
		}
		footer .fiscal .f_left {
				font-size: 24px;
		}
}
/***********************
LAYOUT 框架
***********************/
section.main-content {
		position: relative;
		display: inline-block;
		width: 100%;
		padding-top: 120px;
		background: #fbf6f3;
}
body.open section.main-content {
		padding-top: 50px;
}
@media screen and (max-width: 991px) {
		body.open section.main-content, section.main-content {
				padding-top: 50px;
		}
}
/************************
KEY-VISUAL
************************/
.key-visual {
		background-color: #fbf6f3;
		overflow: hidden;
}
.key-visual .topic {
		right: 0;
		left: 50%;
		top: 15%;
		bottom: auto;
		margin: auto 0 auto -350px;
		z-index: 2;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		-webkit-transform: translateX(calc(-50% + 70px));
		-ms-transform: translateX(calc(-50% + 70px));
		transform: translateX(calc(-50% + 70px));
		max-width: 700px;
}
.key-visual .topic .h2 {
		font-size: 1.875rem;
		letter-spacing: 1px;
		font-weight: 600;
}
.key-visual .topic .no {
		font-size: 130%;
}
.key-visual .topic .no.is-large {
		font-size: 150%;
}
.key-visual .topic .no.is-large small {
		font-size: 65%;
}
.key-visual .topic img {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 2;
		max-width: 20vw;
}
@-webkit-keyframes fadeIn {
		0% {
				opacity: 0;
		}
		100% {
				opacity: 1;
		}
}
@keyframes fadeIn {
		0% {
				opacity: 0;
		}
		100% {
				opacity: 1;
		}
}
.key-visual .kv_block {
		max-width: 100%;
		margin: auto;
}
.key-visual .is_light {
		right: 0;
		left: auto;
		top: auto;
		bottom: 15%;
		margin: auto;
		max-width: 14vw;
		opacity: 1;
		z-index: 2;
}
.key-visual.is-time .topic {
		opacity: 1 !important;
}
.key-visual .topic h1 {
		opacity: 0;
}
.key-visual.is-time .topic h1 {
		-webkit-animation: fadeIn .5s ease;
		animation: fadeIn .5s ease;
		opacity: 1;
}
.key-visual.is-time .topic > img {
		-webkit-animation: bounceIn .5s ease both;
		animation: bounceIn .5s ease both;
		-webkit-animation-delay: .35s;
		animation-delay: .35s;
}
@-webkit-keyframes bounceIn {
		0% {
				opacity: 0;
				-webkit-transform: scale(0.3);
				transform: scale(0.3);
		}
		50% {
				opacity: 1;
				-webkit-transform: scale(1.05);
				transform: scale(1.05);
		}
		70% {
				-webkit-transform: scale(0.9);
				transform: scale(0.9);
		}
		100% {
				opacity: 1;
				-webkit-transform: scale(1);
				transform: scale(1);
		}
}
@keyframes bounceIn {
		0% {
				opacity: 0;
				-webkit-transform: scale(0.3);
				transform: scale(0.3);
		}
		50% {
				opacity: 1;
				-webkit-transform: scale(1.05);
				transform: scale(1.05);
		}
		70% {
				-webkit-transform: scale(0.9);
				transform: scale(0.9);
		}
		100% {
				opacity: 1;
				-webkit-transform: scale(1);
				transform: scale(1);
		}
}
@media (min-width: 1600px) {
		.key-visual .topic > img {
				width: 250px;
		}
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 20%;
				margin: auto 0 auto -400px;
				-webkit-transform: translateX(calc(-50% + 100px));
				-ms-transform: translateX(calc(-50% + 100px));
				transform: translateX(calc(-50% + 100px));
				max-width: 800px;
		}
		.key-visual .is_light {
				max-width: 220px;
		}
		.key-visual .topic .h2 {
				font-size: 2rem;
		}
}
@media (min-width: 1920px) {
		.key-visual .topic > img {
				width: 250px;
		}
		.key-visual .topic .h2 {
				font-size: 2.25rem;
		}
		.key-visual .is_light {
				max-width: 300px;
		}
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 23%;
				margin: auto 0 auto -400px;
				-webkit-transform: translateX(calc(-50% + 60px));
				-ms-transform: translateX(calc(-50% + 60px));
				transform: translateX(calc(-50% + 60px));
				max-width: 800px;
		}
}
@media (min-width: 2560px) {
		.key-visual .topic > img {
				width: 250px;
		}
		.key-visual .topic {}
		.key-visual .kv_block, .key-visual .is_bg {
				max-width: 2560px;
		}
}
@media (max-width: 1199px) {
		.key-visual .topic .h2 {
				font-size: 1.35rem;
		}
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 15%;
				margin: auto 0 auto -300px;
				-webkit-transform: translateX(calc(-50% + 70px));
				-ms-transform: translateX(calc(-50% + 70px));
				transform: translateX(calc(-50% + 70px));
				max-width: 600px;
		}
		.key-visual .is_light {
				max-width: 13vw;
		}
}
@media (max-width: 991px) {
		.key-visual .topic .h2 {
				font-size: 1.15rem;
		}
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 15%;
				margin: auto 0 auto -250px;
				-webkit-transform: translateX(calc(-50% + 70px));
				-ms-transform: translateX(calc(-50% + 70px));
				transform: translateX(calc(-50% + 70px));
				max-width: 500px;
		}
		.key-visual .is_light {
				max-width: 13vw;
		}
}
@media (max-width: 991px) and (orientation:landscape) {
		.key-visual .topic .h2 {
				font-size: 1.125rem;
		}
}
@media (max-width: 767px) {
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 15%;
				margin: auto 0 auto -200px;
				-webkit-transform: translateX(calc(-50% + 30px));
				-ms-transform: translateX(calc(-50% + 30px));
				transform: translateX(calc(-50% + 30px));
				max-width: 400px;
		}
}
@media (max-width: 667px) {
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 15%;
				margin: auto 0 auto -175px;
				-webkit-transform: translateX(calc(-50% + 20px));
				-ms-transform: translateX(calc(-50% + 20px));
				transform: translateX(calc(-50% + 20px));
				max-width: 350px;
		}
		.key-visual .topic .h2 {
				font-size: 1rem;
		}
}
@media (max-width:568px) and (orientation: landscape) {
		.key-visual .topic {
				right: 0;
				left: 50%;
				top: 15%;
				margin: auto 0 auto -175px;
				-webkit-transform: translateX(calc(-50% + 60px));
				-ms-transform: translateX(calc(-50% + 60px));
				transform: translateX(calc(-50% + 60px));
				max-width: 350px;
		}
		.key-visual .topic img {
				max-width: 20vw;
		}
		.key-visual .topic .h2 {
				font-size: .875rem;
		}
		.is_light.d-sm-none, .key-visual .d-sm-none {
				display: none !important
		}
		.is_light.d-sm-block, .key-visual .d-sm-block {
				display: block !important
		}
		.key-visual .is_light {
				max-width: 14vw;
				right: 0;
				left: auto;
				bottom: 10%;
		}
}
@media (max-width: 576px) {
		.key-visual .topic img {
				max-width: 40vw;
		}
		.key-visual .topic .h2 {
				font-size: 1rem;
		}
		.key-visual .is_light {
				max-width: 35vw;
		}
		.key-visual .topic {
				right: 0;
				left: 0;
				top: 8%;
				margin: auto;
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
				max-width: 100%;
		}
}
@media (max-width: 320px) {
		.key-visual .is_light {
				bottom: 16%;
				max-width: 32vw;
		}
}
/************************
Content
	************************/
.has-bg {
		background-image: url("../images/kv/kv_bot_bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-color: #fbf6f3;
		position: relative;
		z-index: 3;
}
.info_block .card_block {
		text-align: center;
		padding: 0 0 2rem 0;
}
.info_block .card_block img {
		max-width: 35vw;
		margin: 0 auto 2rem auto;
		position: relative;
		right: -10px;
}
.info_block .card_block .text {
		font-size: 1.5rem;
		display: block;
		padding: 1rem 0;
}
/************************
Act Block
	************************/
.act_block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
}
.act_block .item {
		display: block;
		padding-bottom: 2rem;
		margin-bottom: 2rem;
		border-bottom: 1px dashed #c4c4c4;
		width: 100%;
		max-width: calc(100% - 18rem);
}
.act_block .item.last .info.last, .act_block .item.last {
		margin-bottom: 0;
		border-bottom: 0;
}
.act_block .head {
		font-size: 1.75rem;
}
.act_block .text {
		font-size: 1.25rem;
		font-weight: 500;
}
.act_block .badge {
		font-size: 1.125rem;
		display: inline-block;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		margin-right: 1rem;
		position: relative;
		top: 5px;
}
.act_block .no {
		line-height: 1;
		font-size: 150%;
		font-weight: bold;
}
.act_block .text small {
		font-size: 90%;
		font-weight: bold;
}
.act_block .info {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 280px 80px 150px 80px auto;
		grid-template-columns: 280px 150px auto;
		gap: 80px;
		padding: .5rem 0;
		border-bottom: 1px solid #c4c4c4;
		margin-bottom: 1rem;
		font-weight: 500;
}
.act_block .item.last .text .head .badge, .act_block .text .head .badge {
		padding: .35rem .5rem;
		background-color: #cc0000;
		font-weight: bold;
		margin: auto 0;
		top: 5px;
		left: -90px;
}
.act_block .item.last .text .badge {
		padding: .35rem 1rem;
		background-color: #ef6a5d;
		font-weight: normal;
		margin: auto 0;
		top: 0;
		max-width: 130px;
}
/************************
Sp Block
	************************/
.sp_block {
		border-radius: 1.5rem;
		border: 6px solid #ffffff;
		-webkit-box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		background: linear-gradient(45deg, #fbeada 30%, #fef8f0 80%);
		padding: 2rem;
}

.sp_block2 {
		border-radius: 1.5rem;
		border: 6px solid #ffffff;
		-webkit-box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		background: #f7f7f7;
		padding: 3.4rem 2rem 2rem 2rem;
		margin-top: 80px;
}

.sp_block .info {
		max-width: 80%;
		margin: auto;
		font-weight: 500;
}
.sp_block .info .title {
		font-size: 1.75rem;
		color: #734310;
		position: relative;
		left: -10px;
		margin-bottom: .5rem;
}
.sp_block .info .text {
		font-size: 1.25rem;
		line-height: 1.75;
}
.sp_block .info .remark-text {
		font-size: .875rem;
}
.sp_block .info .title .icon {
		max-width: 35px;
		left: -30px;
		top: -8px;
}
.sp_block .info .no {
		line-height: 1;
		font-size: 150%;
		font-weight: bold;
}
/************************
	SubMenu
	************************/
.content_block .tab-content {
		position: relative;
		text-align: center;
		border-radius: 1.56rem;
		background-color: #ffffff;
		-webkit-box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		box-shadow: 0 .25rem .75rem RGBA(255, 171, 129, .75);
		margin: 2rem auto 0 auto;
}
.content_block .tab-content .tab_content {
		border-top: 2px solid #d3d3d3;
		max-width: 92%;
		margin: auto;
}
.content_block .tab-content > div {
		position: relative;
		z-index: 2;
}
.info_tabs {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
		grid-template-columns: repeat(6, 1fr);
		gap: 15px;
		margin: auto;
		border: 0;
		z-index: 3;
}
.info_tabs .nav-link {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		border-radius: 5rem;
		margin: auto;
		width: 100%;
		background-color: #ffffff;
		border: 1px solid #909090;
		color: #484848;
		padding: .125rem .25rem .125rem 0;
}
.info_tabs .nav-link .icon {
		max-width: 45px;
		margin: auto 5px auto 0;
}
.info_tabs .nav-item:nth-child(2) .nav-link .icon {
		margin: auto 0 auto 0;
}
.info_tabs .nav-link .text {
		font-size: .85rem;
		min-height: 50px;
		text-align: start;
}
.info_tabs .nav-link .icon .is-white {
		left: 0;
		right: 0;
		top: 0;
		margin: auto;
		position: absolute;
		opacity: 0;
}
.info_tabs .nav-link .text {
		font-size: 1rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		min-height: 50px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: #484848;
		font-weight: 500;
}
.info_tabs .nav-link.active .icon img:not(.is-white), .info_tabs .nav-link:hover .icon img:not(.is-white) {
		opacity: 0;
}
.info_tabs .nav-link.active .icon img.is-white, .info_tabs .nav-link:hover .icon img.is-white {
		opacity: 1;
}
.info_tabs .nav-link.active .text, .info_tabs .nav-link:hover .text {
		color: #ffffff;
}
.info_tabs .nav-link.active, .info_tabs .nav-link:hover {
		background-color: #d83434;
		border: 1px solid #d83434;
		-webkit-box-shadow: inset 0 0 .5rem .25rem #c92020;
		box-shadow: inset 0 0 .5rem .25rem #c92020;
}
.info_tabs .nav-link .icon img, .info_tabs .nav-link .text, .info_tabs .nav-link {
		-webkit-transition: all .1s ease;
		transition: all .1s ease;
}
.tab_head {
		text-align: center;
		padding: 1rem .5rem .5rem .5rem;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
}
.tab_head .text {
		color: #cc0000;
		font-size: 1.5rem;
		position: relative;
		z-index: 2;
		font-weight: bold;
}
.tab_head .icon {
		left: 0;
		right: 0;
		top: 0;
		margin: auto 10px auto 0;
		max-width: 60px;
		z-index: 2;
}
.content_block .tab-content .tab-pane:nth-child(2) .tab_head .icon {
		margin: auto 0;
}
.content_list {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
		width: 100%;
		max-width: calc(100% - 4rem);
		margin: auto;
}

.content_list2 {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		width: 100%;
		max-width: calc(100% - 4rem);
		margin: auto;
}

.content_list li {
		text-align: start;
		color: #484848;
}
/************************
Tab Content
************************/
#installment .tab_title {
		display: block !important;
}
.tab_title {
		max-width: calc(100% - 4rem);
		margin: auto;
		font-size: 1.75rem;
		font-weight: bold;
		color: #c71622;
		padding: .5rem 0;
		border-bottom: 1px solid #c71622;
}
#panel-shopping.show .tab_title.topic-mode {
		display: none !important;
}
.tab_title.topic-mode {
		color: #000000;
		border-bottom: 0;
}
.tab_title.topic-mode .info-group .item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-size: 1.125rem;
}
.tab_title.topic-mode .info-group .item.is-top {
		font-size: 1.5rem;
}
.remark-text.is-large {
		font-size: 1rem;
		color: #000000;
		font-weight: normal;
}
@media screen and (min-width:1920px) {
		.info_block .card_block img {
				max-width: 600px;
		}
}
@media screen and (min-width:2560px) {
		.has-bg, .info_block {
				background-size: 2560px auto;
		}
}
@media screen and (max-width:1199px) {
		.info_block .card_block img {
				max-width: 45vw;
				right: -10px;
		}
		.info_block .card_block .text {
				font-size: 1.25rem;
		}
		.content_block .tab-content {
				max-width: calc(100% - 2rem);
		}
		.content_block .tab-content .tab_content {
				max-width: calc(100% - 4rem);
		}
		.content_list {
				gap: 10px;
		}
		.act_block .head {
				font-size: 1.35rem;
		}
		.act_block .text {
				font-size: 1.125rem;
		}
		.act_block .text .head .badge {
				font-size: 1rem;
				left: -70px;
		}
		.act_block .text .badge {
				top: -5px;
				font-size: 1rem;
		}
		.act_block .item.last .text .badge {
				padding: .35rem .75rem;
				max-width: 110px;
		}
		.act_block .item.last .text .head .badge, .act_block .text .head .badge {
				left: -80px;
				top: 0;
		}
		.act_block .info {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 230px 70px 120px 70px auto;
				grid-template-columns: 230px 120px auto;
				gap: 70px;
		}
		.sp_block .info .title {
				font-size: 1.5rem;
		}
		.sp_block .info .text {
				font-size: 1.125rem;
				line-height: 1.75;
		}
		.act_block .item {
				min-width: calc(100% - 15rem);
		}
		.sp_block .info .title .icon {
				max-width: 3vw;
				left: -25px;
				top: -8px;
		}
		.sp_block .info {
				max-width: 86%;
		}
		.remark-text .point_red.star_mode {
				font-size: .8125rem;
		}
		.sp_block .info .remark-text {
				font-size: .8125rem;
		}
		.sp_block {
				max-width: calc(100% - 2rem);
				margin: auto;
		}
		.tab_head {
				padding: 1rem .5rem .5rem .5rem;
		}
		.info_tabs {
				gap: 15px;
				max-width: calc(100% - 1rem);
		}
		.info_tabs .nav-link .icon {
				max-width: 3vw;
		}
		.info_tabs .nav-link .text {
				font-size: .875rem;
				min-height: 35px;
		}
		.info_tabs .nav-link {
				padding: .25rem .25rem;
		}
		.tab_head .text {
				font-size: 1.25rem;
		}
		.tab_head .icon {
				max-width: 6vw;
		}
		.info_block {
				padding-bottom: 0;
		}
		.tab_title {
				max-width: calc(100% - 1rem);
				font-size: 1.5rem;
		}
		.tab_title.topic-mode h2 {
				font-size: 1.5rem;
		}
		.tab_title.topic-mode .info-group .item.is-top {
				font-size: 1rem;
		}
		.tab_title.topic-mode .info-group .item {
				font-size: 1rem;
		}
		.remark-text.is-large {
				font-size: .875rem;
		}
		.info_block .card_block {
				padding: 0;
		}
		.content_list {
				-ms-grid-columns: 1fr 10px 1fr 10px 1fr;
				grid-template-columns: repeat(3, 1fr);
				gap: 10px;
		}

}
@media screen and (max-width:991px) {
		.content_block .tab-content .tab_content {
				max-width: calc(100% - 3rem);
		}
		.tab_title.topic-mode .info-group .item.is-top {
				font-size: 1rem;
		}
		.tab_title.topic-mode h2 {
				font-size: 1.25rem;
		}
		section.main-content {
				padding-top: 50px;
		}
		.info_tabs {
				gap: 10px;
		}
		.info_tabs .nav-link .icon {
				max-width: 4vw;
				margin-top: 5px;
		}
		.info_tabs .nav-link .text {
				font-size: .75rem;
				text-align: center;
		}
		.tab_head .icon {
				max-width: 7vw;
		}
		.tab_title.topic-mode {
				max-width: calc(100% - 1.5rem);
		}
		.content_list {
				font-size: .85rem;
				max-width: calc(100% - 2rem);
		}
		.act_block .item.last .text .head .badge, .act_block .text .head .badge {
				font-size: 1rem;
		}
		.act_block {
				max-width: calc(100% - 6rem);
				margin: auto;
		}
		.act_block .head {
				font-size: 1.25rem;
		}
		.act_block .text {
				font-size: .935rem;
		}
		.act_block .item {
				min-width: calc(100% - 7rem);
		}
		.act_block .item {
				padding-bottom: 1rem;
		}
		.act_block .item.last .text .badge {
				padding: .35rem .5rem;
				max-width: 90px;
		}
		.act_block .info {
				-ms-grid-columns: 190px 10px 100px 10px auto;
				grid-template-columns: 190px 100px auto;
				gap: 10px;
		}
		.act_block .text .badge {
				font-size: .8125rem;
				max-width: 90px;
		}
		.remark-text .point_red.star_mode {
				font-size: .75rem;
				max-width: 100%;
		}
		.remark-text.is-large {
				font-size: .8125rem;
		}
		a.btn-event {
				padding: .75rem 1.25rem .75rem 1.2rem;
				font-size: 1rem;
				min-width: 160px;
		}
		.sp_block .info .title {
				font-size: 1.25rem;
		}
		.sp_block .info .remark-text {
				font-size: .75rem;
		}
		.sp_block .info .text {
				font-size: .935rem;
		}
		.sp_block .info {
				max-width: 90%;
		}
		.sp_block .info .title .icon {
				max-width: 3vw;
				left: -20px;
				top: -3px;
		}
		.sp_block {
				max-width: calc(100% - 2.5rem);
		}
}
@media only screen and (max-width:991px) and (orientation:landscape) {
		.act_block {
				max-width: calc(100% - 5rem);
		}
}
@media screen and (max-width:820px) {

.content_list2 {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		width: 100%;
		max-width: calc(100% - 4rem);
		margin: auto;
}}

@media screen and (max-width:767px) {
		.info_block .card_block img {
				max-width: 50vw;
				right: -5px;
		}
		.act_block .item.last .text .head .badge, .act_block .text .head .badge {
				position: relative !important;
				left: 0;
				margin-right: 10px;
		}
		.act_block .info {
				-ms-grid-columns: 190px 20px 100px 20px auto;
				grid-template-columns: 190px 100px auto;
				gap: 20px;
		}
		.act_block .item {
				min-width: 100%;
		}
		.act_block {
				max-width: calc(100% - 3rem);
		}
		.content_block .tab-content {
				margin: 1.5rem auto 0 auto;
		}
		.info_tabs .nav-link .text {
				font-size: .875rem;
				min-height: 25px;
		}
		.content_list {
				-ms-grid-columns: 1fr 15px 1fr 15px 1fr;
				grid-template-columns: repeat(3, 1fr);
				gap: 10px 15px;
				max-width: calc(100% - 2rem);
				font-size: .85rem;
		}
		.content_list2 {
				-ms-grid-columns: 1fr 15px 1fr 15px 1fr;
				grid-template-columns: repeat(2, 1fr);
				gap: 10px 15px;
				max-width: calc(100% - 2rem);
				font-size: .85rem;
		}
		.info_tabs::-webkit-scrollbar {
				display: none;
		}
		.info_tabs {
				scrollbar-width: none;
				-ms-overflow-style: none;
		}
		.info_tabs .nav-link .icon {
				display: none;
		}
		.tab_head .icon {
				max-width: 8vw;
		}
		.tab_head .text {
				font-size: 1.25rem;
		}
}
@media screen and (max-width:576px) {
		.act_block .head {
				font-size: 1.125rem;
		}
		.sp_block .info .title {
				font-size: 1.125rem;
		}
		.has-bg {
				background-image: none;
		}
		.info_block .card_block img {
				max-width: 80vw;
				right: -5px;
				margin-bottom: 0;
		}
		.info_block .card_block .text {
				font-size: 1rem;
		}
		.info_tabs {
				-ms-grid-columns: 1fr 15px 1fr 15px 1fr;
				grid-template-columns: repeat(3, 1fr);
				gap: 10px 15px;
		}
		.act_block .badge {
				position: relative !important;
				margin-right: .5rem;
				left: 0;
		}
		.act_block .text .head .badge {
				left: 0;
				top: -3px;
				margin-right: .5rem;
		}
		.content_list {
				-ms-grid-columns: 1fr;
				grid-template-columns: repeat(1, 1fr);
				gap: 10px 15px;
				max-width: calc(100% - 2rem);
				font-size: .85rem;
		}
		.act_block .item {
				min-width: inherit;
				max-width: 100%;
		}
		.sp_block .info {
				max-width: 100%;
		}
		.sp_block {
				max-width: calc(100% - 1rem);
				padding: 2rem 2.5rem;
		}
		.sp_block .info .title .icon {
				max-width: 5vw;
				left: -18px;
		}
		.content_block .tab-content {
				max-width: calc(100% - 1rem);
		}
		.act_block {
				max-width: calc(100% - 2rem);
		}
		.act_block .info {
				display: -ms-grid;
				display: grid;
				-ms-grid-columns: 100px 10px auto;
				grid-template-columns: 100px auto;
				gap: 10px;
		}
		.act_block .info > :first-child {
				grid-column: 1 / -1;
		}
		.tab_head .icon {
				max-width: 14vw;
		}
		.tab_title.topic-mode .info-group .item.is-top {
				font-size: 1rem;
		}
		.tab_title.topic-mode .info-group .item {
				font-size: .85rem;
		}
		.info_block .card_block .text {
				font-size: 1rem;
		}
		.content_block .tab-content .tab_content {
				max-width: calc(100% - 4rem);
		}
		.tab_title.topic-mode h2 {
				font-size: 1.125rem;
		}
}
@media only screen and (max-width:568px) and (orientation:landscape) {
		.tab_head .icon {
				max-width: 7vw;
		}
		.info_block .card_block img {
				max-width: 60vw;
		}
		.tab_title.topic-mode .info-group .item.is-top {
				font-size: .875rem;
		}
		.content_list {
				-ms-grid-columns: (1fr)[2];
				grid-template-columns: repeat(2, 1fr);
		}
		.act_block .info {
				-ms-grid-columns: 180px 10px 90px 10px auto;
				grid-template-columns: 180px 90px auto;
				gap: 10px;
		}
		.act_block .info > :first-child {
				-ms-grid-column: 1;
				grid-column: 1;
		}
		.sp_block .info .title .icon {
				max-width: 3.5vw;
				left: -15px;
		}
		.sp_block {
				max-width: calc(100% - 1rem);
				padding: 2rem;
		}
		.has-bg {
				background-image: url("../images/kv/kv_bot_bg.jpg");
		}
}
@media screen and (max-width:375px) {
		.sp_block {
				max-width: calc(100% - 1rem);
				padding: 1.25rem;
		}
		.sp_block .info .title .icon {
				max-width: 5vw;
				left: -12px;
		}
}
@media screen and (max-width:320px) {
		.act_block .item.last .text .badge {
				padding: .35rem .35rem;
				max-width: 80px;
		}
		.act_block .info {
				-ms-grid-columns: 80px 10px auto;
				grid-template-columns: 80px auto;
				gap: 10px;
		}
		.tab_title.topic-mode .info-group .item.is-top {
				font-size: .875rem;
		}
		.tab_title.topic-mode h2, .tab_title {
				font-size: 1.25rem;
		}
		.info_block .card_block .text {
				font-size: .9rem;
		}
		.tab_head .text {
				font-size: 1.125rem;
		}
		.info_tabs {
				-ms-grid-columns: 1fr 8px 1fr 8px 1fr;
				grid-template-columns: repeat(3, 1fr);
				gap: 8px 8px;
		}
		.content_block .tab-content, .act_block {
				max-width: 100%;
		}
		.sp_block .info .title {
				font-size: 1rem;
		}
		.sp_block {
				max-width: 100%;
				padding: 1rem 1rem;
		}
		.sp_block .info .title .icon {
				max-width: 6vw;
				left: auto;
				right: -15px;
		}
}
/************************
Sticky Bar
************************/
.fix-ad {
		bottom: 6.5rem;
		right: 0;
		left: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
}
.fix-ad .full-item {
		text-align: center;
		display: block;
		margin-bottom: .5rem;
		width: 140px;
		position: relative;
}
@media only screen and (max-width:1199px) {
		.fix-ad {
				-webkit-transform: translateZ(0);
				transform: translateZ(0);
				-webkit-backface-visibility: hidden;
				backface-visibility: hidden;
				-webkit-filter: blur(0);
				-webkit-transform-origin: 0% 0;
				-ms-transform-origin: 0% 0;
				transform-origin: 0% 0;
		}
		.fix-ad {
				-webkit-transform: scale(.85);
				-ms-transform: scale(.85);
				transform: scale(.85);
				-webkit-transform-origin: center right;
				-ms-transform-origin: center right;
				transform-origin: center right;
				bottom: 6rem;
		}
}
@media only screen and (max-width:991px) {
		.fix-ad {
				-webkit-transform: scale(.75);
				-ms-transform: scale(.75);
				transform: scale(.75);
				-webkit-transform-origin: center right;
				-ms-transform-origin: center right;
				transform-origin: center right;
				bottom: 2.5rem;
		}
}
@media only screen and (max-width:991px) and (orientation:landscape) {
		.fix-ad {
				bottom: 2.5rem;
		}
}
@media only screen and (max-width:767px) {
		.fix-ad {
				-webkit-transform: scale(.65);
				-ms-transform: scale(.65);
				transform: scale(.65);
				bottom: 1.75rem
		}
}
@media only screen and (max-width:576px) {
		.fix-ad {
				-webkit-transform: scale(.6);
				-ms-transform: scale(.6);
				transform: scale(.6);
				bottom: 1.5rem;
		}
}
@media only screen and (max-width:568px) and (orientation:landscape) {
		.fix-ad {
				bottom: 1.5rem;
		}
}
@media only screen and (max-width:320px) {
		.fix-ad {
				bottom: 1rem;
		}
}
/************************
Sticky Bar
************************/
#go_ban {
		position: fixed;
		display: inline-block;
		z-index: 99;
		width: 200px;
		right: 5px;
		bottom: 6rem;
}
#go_link {
		position: relative;
		display: inline-block;
		width: 100%;
		text-align: center;
}
#go_link_n {
		position: relative;
		display: inline-block;
		width: 100%;
		margin-bottom: .5rem;
		text-align: center;
}
#go_link_n a, #go_link a {
		display: inline-block;
}
#go_link_n img, #go_link img {
		width: 100%;
}
@media only screen and (max-width: 1199px) {
		#go_ban {
				bottom: 12%;
				width: 160px;
		}
}
@media only screen and (max-width: 991px) {
		#go_ban {
				bottom: 8%;
				width: 150px;
		}
}
@media (max-width: 991px) and (orientation:landscape) {
		#go_ban {
				bottom: 15%;
				width: 150px;
		}
		#go_link img {
				width: inherit;
				max-width: 100%;
		}
		#go_link_n img {
				width: inherit;
				max-width: 100%;
		}
}
@media only screen and (max-width: 767px) {
		#go_ban {
				right: 5px;
				width: 120px;
				bottom: 4rem;
		}
		#go_link img {
				width: inherit;
				max-width: 100%;
		}
		#go_link_n img {
				width: inherit;
				max-width: 100%;
		}
}
@media screen and (max-width: 576px) {
		#go_ban {
				max-width: 100px;
		}
		#go_link_n {
				width: 100%;
		}
}
/*------------------------------------------ 
Modal
--------------------------------------------*/
.modal-outlink .modal-content {
		border-radius: 0 !important;
}
.modal-outlink .modal-dialog {
		max-width: 750px !important;
}
.modal-outlink .modal-footer, .modal-outlink .modal-header {
		border: 0 !important;
}
.modal-outlink .modal-header {
		padding: 30px 30px 0 30px;
}
.modal-outlink .modal-header h3 {
		font-weight: lighter;
		font-size: 2rem;
}
.modal-outlink .modal-body {
		padding: 30px 30px 10px 30px;
}
.modal-outlink .modal-footer {
		padding: 0 30px 30px 30px;
		text-align: center !important;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
}
.modal-outlink .modal-footer .btn {
		border-radius: 0;
		height: 38px;
		min-width: 80px;
		margin: 0 10px;
}
/************************
DRAWER-ITEM 
************************/
.line_1 {
		width: 100%;
		display: inline-block;
		height: 1px;
		border-top: 1px solid #000000;
}
.drawer-item {
		width: 100%;
}
.drawer-header {
		margin: 0px;
		display: block;
		color: #212121;
		padding: 6px;
		cursor: pointer;
		min-height: 50px;
		-webkit-transition: 0.25s;
		transition: 0.25s;
		overflow: hidden;
}
.drawer-header .title {
		font-size: 18px;
		line-height: 2em;
		font-weight: 600;
		margin: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
}
.drawer-item-active .drawer-header {
		-webkit-transition: 0.25s;
		transition: 0.25s;
		min-height: 50px;
}
.drawer-header-icon {
		display: inline-block;
		content: "";
		width: 40px;
		height: 40px;
		background: url('../images/btn_to_open.svg') no-repeat scroll center center transparent;
		background-size: 60% 60%;
		text-align: right;
		vertical-align: middle;
		position: relative;
		top: -2px;
		-webkit-transition: all .1s linear;
		transition: all .1s linear;
}
.drawer-item-active .drawer-header .drawer-header-icon {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
}
.drawer-content {
		width: 100%;
		padding: 10px 6px 30px 1.25rem;
		display: block;
		font-size: 16px;
		line-height: 1.8em;
		text-align: justify;
		word-wrap: break-word;
		color: #484848;
}
.drawer-content ol {
		padding-left: 1rem !important;
}
@media screen and (max-width:1199px) {
		.drawer-content {
				font-size: .875rem;
		}
}
@media screen and (max-width:991px) {
		.drawer-header .title {
				font-size: 1rem;
		}
}
@media screen and (max-width:767px) {
		.drawer-content ol {
				padding-left: 1rem;
		}
		.drawer-content {
				font-size: 14px;
		}
}
@media screen and (max-width:280px) {
		.drawer-content {
				font-size: 12px;
		}
}
/************************
GOTOP
************************/
#go_top {
		cursor: pointer;
}
.go_top {
		position: fixed;
		display: inline-block;
		z-index: 99;
		width: 50px;
		height: 50px;
		right: 10px;
		bottom: 30px;
}
.go_top img {
		position: relative;
		display: inline-block;
		width: 100%;
}
@media screen and (max-width: 991px) {
		.go_top {
				width: 40px;
				height: 40px;
				right: 10px;
				bottom: 1em;
		}
}
@media screen and (max-width: 767px) {
		.go_top {
				right: 5px;
		}
}
@media screen and (max-width: 576px) {
		.go_top {
				right: 5px;
		}

}

.icon_tag{
width: 150px;
    position: absolute !important;
    top: -30px;
}


.icon_tag img{
width: 100%;
}


@media screen and (max-width: 992px) {


.icon_tag{
	width: 15%;
	position: absolute !important;
	top:-30px;
}

}

@media screen and (max-width: 576px) {


.icon_tag{
	width: 30%;
	position: absolute !important;
	top:-27px;
}

}



.t_right,.t_left{
	display: inline-block;


}

.t_left{
	width: 36%;
	vertical-align: middle;
}




.t_left img{
	width: 100%;
}

.t_right{
	width: 60%;
	vertical-align: middle;
}

.icon_tag2{
	width: 380px;
	position: absolute; 
	  top:-110px;
	  left: -20px;
	  


}

.icon_tag2 img{
width: 100%;

}

.sp_block .info2 {
    max-width: 100%;
    margin: auto;
    font-weight: 500;

}


.sp_block .info .t_right .title {
    font-size: 1.3rem;
    color: #4a2b33;
    position: relative;
     left: 0px; 
    margin-bottom: .5rem;
}

.sp_block .info .t_right span {
    font-size: 1.3rem;
    color: #cc0000;
  
}


.sp_block .info .t_right span.c_red {
      font-weight: bold;
  
}

.sp_block .info .t_right span big {
    font-size: 140%;
  
}

.sp_block .info .t_right span.no {
    font-size: 150%;
    color: #cc0000;
  
}

    .sp_block .info .t_right .text {
        font-size: 1.0rem;
        line-height: 1.75;
        font-weight: 400;
    }


   .sp_block .info .t_right .text    .font-medium{


   	color: #888;
   }


  .sp_block .info .t_right .text .border-b{

  	border-bottom: 2px dotted #999;
  }

   .sp_block .info .t_right .text .border-t{

  	border-top: 2px dotted #999;
  }



  @media screen and (max-width: 992px) {


.sp_block .info .t_right span {
    font-size: 1rem;
    color: #cc0000;
  
}

.sp_block .info .t_right .font-medium {
    font-size: 0.9rem;
    color: #cc0000;
  
}

  }


  @media screen and (max-width: 768px) {


.t_right{
	width: 100% !important;
	vertical-align: middle;
}

.t_left{
	width: 100%;
	vertical-align: middle;
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	text-align: center;
	float: center;
}
.t_left .phone{
	width: 100%;
	vertical-align: middle;
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
	display: inline-block;
	text-align: center;
	float: center;
}


.sp_block .info .t_right span {
    font-size: 1.1rem;
    color: #cc0000;
  
}}


.mo_480{
	display: none;
}

  @media screen and (max-width: 768px) {
.mo_480{
	display: inline-block;
}


.icon_tag2{
	width: 300px;
	position: relative; 
	  top:0px;

	  margin-left: auto;
	  margin-right: auto;
	   left: 0px;
	  


}


.sp_block .info .t_right .title {
    font-size: 1.3rem;
    color: #4a2b33;
    position: relative;
    left: 0px;
    margin-bottom: .5rem;
    text-align: center;
}

}

.pc_768{
	display: none;
}

  @media screen and (max-width: 768px) {
.pc_768{
	display: inline-block;
}


}

.mo_768{
	display: inline-block;
}

  @media screen and (max-width: 768px) {
.mo_768{


		display: none;
}


}

.position-relative2{

	padding-left: 15px;
}
  @media screen and (max-width:480px) {

.icon_tag2{
		width: 100%;
	max-width: 300px;
	position: relative; 
	  top:0px;

	  margin-left: auto;
	  margin-right: auto;
	   left: 0px;
	  


}

.icon_tag2 img.tag_1{
	width: 100%;



}

}





