@charset "utf-8";

.wrap {
	width: 100%;
}

/* header */
.header {
	width: 100%;
	min-width: 1920px;
	background: rgba(255, 255, 255, .95);
	position: -webkit-sticky;
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.header .header-inner {
	width: 1400px;
	margin: 0 auto;
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
}

.header h1 a {
	display: block;
	background: url(../img/tbk_logo.png) no-repeat;
	background-size: cover;
	width: 137px;
	height: 31px;
}

.header ul {
	display: flex;
	justify-content: space-between;
	width: 425px;
	line-height: 31px;
}

.header ul a {
	font-size: 16px;
	color: #111;
	position:relative;

}
.header ul a:after{
position:absolute;
content:"";
width:0;
height:2px;
background-color:darkred;
bottom:0;
transition:all 0.3s;
right:0;
}
.header ul a:active:after {
	opacity:0.7;
}
.header ul a:hover:after {
	width:100%;
	left:0
}

.header ul a:hover,
.header ul a:focus,
.header ul a:active {
	color: darkred;
}

.menu_btn {
	display: none;
	position: absolute;
	right: 90px;
	top: 25px
}

.menu_btn span {
	position: absolute;
	width: 35px;
	height: 4px;
	background-color: #000;
	border-radius: 2px;
	cursor: pointer;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
}

.menu_btn:hover span {
	background-color: #C30013;
}

.menu_btn span:nth-child(2) {
	top: 10px;
}

.menu_btn span:nth-child(3) {
	top: 20px;
}

.menu_btn.On span:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
}

.menu_btn.On span:nth-child(2) {
	transform: translateX(50px);
	opacity: 0;
}

.menu_btn.On span:nth-child(3) {
	transform: rotate(-45deg);
	top: 10px;
}


.content {
	width: 100%;
	margin: 0 auto;
}

/* visual */
.visual {
	position: relative;
	min-width: 1920px;
	height: 1080px;
	padding-top: 450px;
	background: url(../img/visual_bg.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.visual h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 60px;
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-thickness: 1px;
}

.visual p {
	margin-top: 25px;
	font-size: 18px;
}

.visual div {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 80px;
}

.visual div span {
	position: relative;
	display: inline-block;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	animation: upDown 1s infinite;
}

.visual div span::after {
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	border-width: 0 1px 1px 0;
	left: 50%;
	margin-left: -10px;
	transform: rotate(45deg);
}





@keyframes upDown {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(0px);
	}
}

br.hidden {
	display: none;
}

br.hidden2 {
	display: none;
}

.main_visual h1 br {
	display: none;
}

.visual h2 {
	opacity: 0;
}

.visual p {
	opacity: 0;
}

/* section */
.section {
	min-width: 1920px;
}

.content .section h3 {
	text-align: center;
	padding: 140px 0 30px;
}

.content .section h3 span {
	display: block;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin-bottom: 10px;
	color: #a4a4a4;
}

.content .section h3 b {
	display: inline-block;
	font-size: 40px;
	font-weight: 600;
}

.content .section h3 b::after {
	content: '';
	display: block;
	width: 28px;
	height: 3px;
	background: #707070;
	margin-top: 30px;
	margin-left: 50%;
	transform: translateX(-50%);
}


/* con-01 */
/* con-01 company */
.con-01 .company {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 603px;
	background: url(../img/tbk_bg.jpg) no-repeat center center;
	background-size: cover;
}

.con-01 .company::after {
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	height: 85px;
	background: #fff;
	bottom: 0;
}

.con-01 .company .box {
	opacity: 0;
	transform: translateY(50px);
	display: flex;
	width: 1320px;
	height: 270px;
	background: rgba(255, 255, 255, .8);
}

.content .con-01 .company .box>div {
	width: 50%;
	display: flex;
	align-items: center;
}

.content .con-01 .company .box>div:first-child {
	justify-content: center;
}

.con-01 .company .box dl>div {
	margin-top: 25px;
}

.con-01 .company .box dl>div:first-child {
	margin-top: 0;
}

.con-01 .company dl dt {
	display: inline-block;
	color: #6a6a6a;
	font-size: 16px;
	margin-right: 10px;
}

.con-01 .company dl dt::before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 7px;
	height: 7px;
	margin-left: -15px;
	margin-top: 6px;
	background: #c30015;
	border-radius: 50%;
}

.con-01 .company dl dd {
	display: inline-block;
	font-size: 18px;
}

/* con-01 intro */
.con-01 .intro {
	width: 1920px;
	margin: 0 auto;
}

.con-01 .intro>li {
	display: flex;
	align-items: center;
	position: relative;
}

.con-01 .intro>li::before {
	content: '';
	display: block;
	width: 960px;
	height: 503px;
	background: url(../img/tbk_img_01.jpg) no-repeat;
	box-sizing: border-box;
}

.con-01 .intro>li:nth-child(2)::before {
	background: url(../img/tbk_img_02.jpg) no-repeat;
}

.con-01 .intro>li:nth-child(3)::before {
	background: url(../img/tbk_img_03.jpg) no-repeat;
}

.con-01 .intro>li>dl {
	width: 960px;
	padding: 0 180px;
}

.con-01 .intro>li>dl dt {
	font-size: 30px;
	font-weight: 600;
}

.con-01 .intro>li>dl dt span {
	display: block;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin-bottom: 7px;
	color: #a4a4a4;
}

.con-01 .intro>li>dl dt::after {
	content: '';
	display: block;
	width: 28px;
	height: 3px;
	background: #707070;
	margin: 20px 0 20px 2px;
}

.con-01 .intro>li>dl dd {
	color: #6a6a6a;
	font-size: 16px;
	line-height: 25px;
	word-break: keep-all;
}

.con-01 .intro>li>dl::before {
	content: '';
	display: block;
	position: absolute;
	width: 158px;
	height: 158px;
	background: url(../img/tbk_icon_01.png) no-repeat;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.con-01 .intro>li:nth-child(2)>dl::before {
	background: url(../img/tbk_icon_02.png) no-repeat;
}

.con-01 .intro>li:nth-child(3)>dl::before {
	background: url(../img/tbk_icon_03.png) no-repeat;
}

.con-01 .intro>li:nth-child(2n) {
	flex-direction: row-reverse;
	text-align: right;
}

.con-01 .intro>li:nth-child(2n)>dl dt::after {
	margin-left: 570px;
}

.con-01 .intro>li:nth-child(2) dd ul {
	background: #f5f5f5;
	display: inline-block;
	padding: 20px;
	font-size: 14px;
	margin-top: 20px;
}

.con-01 .intro>li:first-child {
	transform: translateX(-5%);
	opacity: 0;
}

.con-01 .intro>li:nth-child(2) {
	transform: translateX(5%);
	opacity: 0;
}

.con-01 .intro>li:nth-child(3) {
	transform: translateX(-5%);
	opacity: 0;
}



/* con-02 */
.con-02 {
	background: #eee;
	padding-bottom: 150px;
}

.con-02 .j-container {
	width: 1218px;
	margin: 0 auto;
}

.con-02 .j-container .j-item {
	opacity: 0;
	display: table;
	float: left;
	margin: 0 0 20px 20px;
	cursor: pointer;
}

.con-02 .j-container .j-item:nth-child(1) {
	width: 386px;
	height: 535px;
	background: url(../img/tbj_img_01.jpg) no-repeat;
	margin-left: 0;
}

.con-02 .j-container .j-item:nth-child(2) {
	width: 396px;
	height: 258px;
	background: url(../img/tbj_img_02.jpg) no-repeat;
}

.con-02 .j-container .j-item:nth-child(3) {
	width: 396px;
	height: 258px;
	background: url(../img/tbj_img_03.jpg) no-repeat;
}

.con-02 .j-container .j-item:nth-child(4) {
	width: 545px;
	height: 258px;
	background: url(../img/tbj_img_04.jpg) no-repeat;
}

.con-02 .j-container .j-item:nth-child(5) {
	width: 247px;
	height: 258px;
	background: #cbcbcb;
}

.con-02 .j-container .j-item dl {
	display: table-cell;
	vertical-align: middle;
	padding: 0 20px;
	background: rgba(255, 255, 255, .8);
	opacity: 0;
	transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
}

.con-02 .j-container .j-item:hover dl,
.con-02 .j-container .j-item:active dl,
.con-02 .j-container .j-item:focus dl {
	opacity: 1;
	transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-webkit-transition: opacity .5s ease-in-out;
}

.con-02 .j-container .j-item:nth-child(5):hover dl,
.con-02 .j-container .j-item:nth-child(5):active dl,
.con-02 .j-container .j-item:nth-child(5):focus dl {
	background: #fff;
}

.con-02 .j-container .j-item dl dt {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-thickness: 1px;
	text-decoration-color: #666;
	line-height: 35px;
	text-align: center;
	margin-bottom: 10px;
}

.con-02 .j-container .j-item dl dt::first-letter {
	color: #c30015;
}

.con-02 .j-container .j-item dl dd {
	text-align: center;
	font-size: 16px;
	color: #1a1a1a;
	line-height: 25px;
}

/* con-03 */
.con-03 {
	background: url(../img/wsl_bg.jpg) no-repeat center center;
	background-size: cover;
	height: 444px;
	display: flex;
	align-items: center;
}

.con-03 .wsl {
	width: 1920px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.con-03 .wsl>div {
	margin-left: 80px;
}

.con-03 .wsl>div p {
	color: #fff;
	font-size: 16px;
	line-height: 25px;
}

.con-03 .wsl>div p::before {
	content: '';
	display: block;
	width: 28px;
	height: 3px;
	background: #fff;
	margin-bottom: 20px;
}

.con-03 .wsl>div a {
	transition: all .3s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	display: inline-block;
	margin-top: 40px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	padding: 20px 45px;
	border: 1px solid #fff;
	border-radius: 50px;
}

.con-03 .wsl>div a::after {
	content: '+';
	display: inline-block;
	margin-left: 5px;
	transition: all .3s;
}

.con-03 .wsl>div a:hover,
.con-03 .wsl>div a:active,
.con-03 .wsl>div a:focus {
	background: #C30013;
	color: #fff;
	font-weight: 500;
	border: 1px solid #C30013;
	padding: 20px 55px;
}

/* con-04 */
.con-04 .tit-txt {
	text-align: center;
	color: #6a6a6a;
	font-size: 16px;
	line-height: 25px;
}

.con-04 .tit-txt::after {
	content: '';
	display: block;
	width: 100%;
	height: 195px;
	background: #eaeaea;
	margin: 200px 0 0;
}

.con-04>div {
	position: relative;
	background: #f6f6f6 url(../img/playpot_b_bg.jpg) no-repeat bottom center;
	padding: 200px 0 150px;
}

.con-04>div::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../img/playpot_bg.png) no-repeat;
	width: 800px;
	height: 458px;
	top: -310px;
	left: 50%;
	transform: translateX(-50%);
}

.con-04>div ul {
	display: flex;
	justify-content: space-between;
	width: 1265px;
	margin: 0 auto;
}

.con-04>div ul li {
	transform: translateY(50px);
	opacity: 0;
	border: 1px solid #dbdbdb;
	width: 384px;
	background: #fff;
}

.con-04>div ul li>dl {
	text-align: center;
	padding: 40px 20px;
}

.con-04>div ul li>dl dt {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

.con-04>div ul li>dl dt span {
	display: block;
	margin-bottom: 5px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #a4a4a4;
}

.con-04>div ul li>dl dd {
	padding-top: 15px;
	border-top: 1px solid #cbcbcb;
	color: #6a6a6a;
	line-height: 25px;
}

.con-04>div ul li::before {
	content: '';
	display: block;
	height: 222px;
	background: url(../img/playpot_img_01.png) no-repeat top;
}

.con-04>div ul li:nth-child(2):before {
	background: url(../img/playpot_img_02.png) no-repeat top;
}

.con-04>div ul li:nth-child(3):before {
	background: url(../img/playpot_img_03.png) no-repeat top;
}

.footer {
	width: 100%;
	background: #2c2c2c;
	padding: 80px 0;
	text-align: center;
}

.footer p {
	min-width: 100%;
	color: #a7a7a7;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}


/*wsl*/

.main_visual {
	background: url(../img/img_WSL_top.png)no-repeat;
	height: 508px;
	width: 100%;
	min-width: 1920px;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main_visual h1 {
	font-size: 60px;
	font-weight: bold;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	opacity: 0;
	transform: translateY(50px);
}

/* wsl_sec1 */

.wsl_sec1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 1920px;
	opacity: 0;
	transform: translateY(50px)
}

.wsl_logo {
	background: url(../img/wsl_logo_black.png)no-repeat center;
	width: 100%;
	height: 159px;
	margin-top: 126px;
}

.wsl_sec1 p {
	text-align: center;
	margin-top: 44px;
	line-height: 1.6;
}

/* wsl_sec2 */

.wsl_sec2 {
	background: url(../img/global_bg.png)no-repeat;
	width: 100%;
	min-width: 1920px;
	height: 892px;
	margin-top: 140px;
	background-size: cover;
}

.sec2_cont {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sec2_cont h2 {
	font-size: 36px;
	font-weight: bold;
	margin-top: 130px;
	font-family: 'Montserrat', sans-serif;
}

.sec2_cont p {
	margin-top: 20px;
	line-height: 1.4;
	text-align: center;
}

.sec2_cont_2 {
	background: url(../img/img_global.png)no-repeat center;
	width: 100%;
	height: 311px;
	margin-top: 110px;
}

.wsl_sec2 .sub_txt {
	display: flex;
	list-style-type: disc;
	color: #fff;
	justify-content: right;
	opacity: 0.7;
}

.wsl_sec2 .sub_txt .list_fl {
	display: flex;
	justify-content: space-between;
}

.wsl_sec2 .sub_txt li {
	text-align: left;
	width: 450px;
	margin-top: 100px;
	margin-right: 100px;
}

.wsl_sec2 .sub_txt li h3 {
	color: #fff;
}

.wsl_sec2 .sub_txt li h3 span {
	color: #C83379;
}

.wsl_sec2 .sub_txt li p {
	margin-top: 15px;
	color: #c9c9c9;
}

/* wsl_sec3 */

.wsl_sec3 {
	text-align: center;
	min-width: 1920px;
}

.wsl_sec3 .sec3_title {
	margin-top: 140px;
}

.wsl_sec3 .sec3_title span {
	color: #A4A4A4;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}

.wsl_sec3 .sec3_title h2 {
	font-size: 40px;
	font-weight: bold;
	margin-top: 10px;
}

.wsl_sec3 p {
	margin-top: 40px;
	line-height: 1.4;
}

.sec3_cont {
	display: block;
}

.sec3_cont ul {
	font-size: 0;
	color: #fff;
	margin-top: 50px;
}

.sec3_cont ul li {
	display: inline-block;
	font-size: 1rem;
	text-align: left;
}

.sec3_cont ul li span {
	color: #B4B4B4;
	font-size: 0.875rem;
	font-family: 'Montserrat', sans-serif;
}

.sec3_cont ul li h3 {
	font-size: 26px;
	font-weight: bold;
}

.sec3_cont ul li>p {
	margin-top: 10px;
}

.sec3_cont ul li:nth-child(1) {
	background: url(../img/to_cont_bg_1.png)no-repeat;
	width: 640px;
	height: 262px;
	padding: 70px 0px 72px 60px;
	box-sizing: border-box;
	line-height: 1.4;
}

.sec3_cont ul li:nth-child(2) {
	background: url(../img/to_cont_bg_2.png)no-repeat;
	width: 640px;
	height: 262px;
	padding: 70px 0px 72px 60px;
	box-sizing: border-box;
	line-height: 1.4;
}

/*wsl_sec4*/

.wsl_sec4 {
	background: url(../img/bg_wsl_home.png)no-repeat;
	height: 628px;
	margin-top: 110px;
	background-size: cover;
	min-width: 1920px;
}

.sec4_cont {
	padding-top: 180px;
	text-align: center;
}

.sec4_wsl_logo {
	background: url(../img/wsl_logo_변경.png)no-repeat;
	width: 396px;
	height: 188px;
	margin: 0 auto;
}

.wsl_sec4 a {
	cursor: pointer;
	display: block;
	margin-top: 50px;
}

.sec4_btn {
	display: inline-block;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 20px 34px;
	box-sizing: border-box;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
}

.sec4_btn:hover {
	background-color: #C30013;
	color: #fff;
	padding: 20px 44px;
	border: 1px solid #C30013;
	;
}

.sec4_btn p {
	margin-top: 0;
}