@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Blinker:wght@100;200;300;400;600;700;800;900&family=Noto+Sans+KR:wght@100..900&display=swap');

.container {
  width: 1280px;
  margin: 0 auto;
}

.body {
  font-size: 15px;
  font-family: "Noto Sans KR", sans-serif;
}

/* ---------------------------------------------------------------- */
/* header */
header {
  width: 100%;
  height: 90px;
  background: #000;
  position: relative;
  z-index: 10;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

header .container h1 {
  margin-bottom: 10px;
}

.navi {
  display: flex;
}

header .container nav {
  width: 600px;
}

header nav .nav_bg {
  width: 100%;
  height: 300px;
  background: #fff;
  position: absolute;
  left: 0; top: 90px;
  display: none;
}

header nav > ul.gnb {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

header nav > ul.gnb > li {
  width: 20%;
  text-align: center;
  position: relative;
  font-family: "Blinker", sans-serif;
  font-size: 25px;
  font-weight: 600;
}

header nav > ul.gnb > li > a {
  width: 100%;
  height: 30px;
  line-height: 30px;
  display: block;
  background: black;
  color: #fff;
}

header nav>ul.gnb>li:hover>a {
  color: #d60c0c;
}

header nav > ul.gnb > li > ul.sub {
  width: 100%;
  position: absolute;
  left: 0; top: 90px;
  display: none;
}

header nav > ul.gnb > li > ul.sub > li {
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 15px;
  font-weight: 500;
  color: #6F6F6F;
}

header nav>ul.gnb>li>ul.sub>li:hover {
  color: #d60c0c;
  font-weight: 700;
}

header nav>ul.gnb>li>ul.sub>li>a {
  display: block;
}

header .container ul.login_join {
  height: 100%;
  display: flex;
  margin-left: 35px;
}

header .container ul.login_join li {
  color: #fff;
  margin-left: 15px;
}

header .container ul.login_join li a {
  display: flex;
  font-weight: 700;
  font-size: 12px;
  border-radius: 5px;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 10px;
}

header .container ul.login_join li:nth-child(1) a {
  border: 1px solid #d60c0c;
  font-size: 13px;
}

header .container ul.login_join li:nth-child(1):hover a {
  background: #d60c0c;
}

header .container ul.login_join li:nth-child(2):hover a {
  background: #fff;
  color: #d60c0c;
}

header .container ul.login_join li:nth-child(3) a {
  background: #fff;
}

/* ---------------------------------------------------------------- */
/* kt_video */
main figure.kt_video {
  width: 100%;
  height: calc(100vh - 90px);
  background: #000;
  position: relative;
}

main figure.kt_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------------------------------- */

main .scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: scroll 2.5s infinite;
}

main .scroll p {
  font-family: "Blinker", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

@keyframes scroll {
  0% {
    transform: translate(0, 0) scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: translate(0, 50px);
  }
}

/* ---------------------------------------------------------------- */
/* team_schedule */
main .team_schedule {
  width: 100%;
  height: 700px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

main .team_schedule .container {
  position: relative;
  height: 100%;
}

main .team_schedule .container h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  padding-top: 100px;
}

main .team_schedule .container .game_slide_wrap {
  width: 100%;
  overflow: hidden;
  margin-left: 66px;
}

main .team_schedule .container .game_slide_wrap.swiper {
  width: 1148px;
}

main .team_schedule .container .game_slide_wrap ul.game {
  width: 100%;
}

main .team_schedule .container .game_slide_wrap ul.game li.swiper-slide {}

main .team_schedule .container .ltgt button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
}

main .team_schedule .container .ltgt .prev {
  left: 0;
}

main .team_schedule .container .ltgt .next {
  right: 0;
}

main .team_schedule .container ul.game {
  display: flex;
  margin: 70px auto;
  width: 1148px;
  justify-content: space-between;
}

main .team_schedule .container ul.game>li {
  width: 375px;
  height: 290px;
  background: #000;
  box-shadow: 5px 8px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

main .team_schedule .container ul.game>li dl {
  height: 90%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-content: space-between;
}

main .team_schedule .container ul.game>li dl dt {
  width: 100%;
  font-weight: 400;
  font-size: 30px;
  color: #888;
  text-align: center;
  padding-top: 20px;
}

main .team_schedule .container ul.game>li dl dd {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

main .team_schedule .container ul.game>li dl dd span {
  font-weight: 700;
  font-size: 50px;
  display: block;
}

main .team_schedule .container ul.game > li dl dd.home_team span {
  color: #d60c0c;
}

main .team_schedule .container ul.game > li dl dd.away_team span {
  width: 120px;
  color: #eee;
}

main .team_schedule .container .btn {
  width: 120px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  margin-left: 580px;
  line-height: 35px;
}

main .team_schedule .container .btn:hover {
  background: #d60c0c;
}

main .team_schedule .container .btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main .team_schedule .container .btn i {
  margin-left: 8px;
}

/* ---------------------------------------------------------------- */
/* ranking_highlight */
main section.ranking_highlight {
  width: 100%;
  height: 900px;
  position: relative;
}

main section.ranking_highlight .bg_rh {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main section.ranking_highlight ul.container {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 150px;
}

main section.ranking_highlight ul.container li {
  margin-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main section.ranking_highlight ul.container li:last-child {
  margin-right: 0;
}

main section.ranking_highlight ul.container li.ranking {
  width: 500px;
  height: 662px;
}

main section.ranking_highlight ul.container li.ranking h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

main section.ranking_highlight ul.container li .btn {
  width: 120px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 30px;
}

main section.ranking_highlight ul.container li .btn:hover {
  background: #d60c0c;
}

main section.ranking_highlight ul.container li .btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.ranking_highlight ul.container li .btn i {
  margin-left: 8px;
}

main section.ranking_highlight ul.container li.ranking .ranking_section {
  width: 500px;
  height: 500px;
  margin-top: 40px;
  border-radius: 30px;
  background: #000;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.30);
  text-align: center;
}

main section.ranking_highlight ul.container li.ranking .ranking_section h3 {
  font-family: "Black Han Sans";
  font-size: 150px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  padding-top: 80px;
  margin-left: 30px;
}

main section.ranking_highlight ul.container li.ranking .ranking_section b {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

main section.ranking_highlight ul.container li.ranking .ranking_section img {
  width: 89px;
  height: 161px;
}

main section.ranking_highlight ul.container li.ranking .ranking_section span {
  color: #fff;
  font-family: "Black Han Sans";
  font-size: 50px;
  font-weight: 400;
  line-height: 110px;
}

main section.ranking_highlight ul.container li.ranking .ranking_section p {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

/*  */
main section.ranking_highlight ul.container li.highlight {
  width: 700px;
  height: 660px;
}

main section.ranking_highlight ul.container li.highlight h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

main section.ranking_highlight ul.container li.highlight ul.bg_h {
  margin-top: 38px;
}

main section.ranking_highlight ul.container>li.highlight>ul.bg_h>li {
  position: absolute;
  left: 50%; top: 161px;
  transform: translateX(-26%);
  width: 100%;
}

main section.ranking_highlight ul.container li.highlight ul.bg_h li img {
  background: #000;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.30);
  border-radius: 30px;
}

/* ---------------------------------------------------------------- */
/* player */
main section.player {
  position: relative;
  width: 100%;
  height: 1000px; 
}

main section.player .bg_p {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

main section.player .container {
  width: 1605px;
  height: 760px;
  position: absolute;
  left: 160px; top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

main section.player .container .tit_top {
  width: 1440px;
  display: flex;
}

main section.player .container .tit_top h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}

main section.player .container .tit_top .btn {
  width: 120px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 7px;
  margin-left: 50px;
}

main section.player .container .tit_top .btn:hover {
  background: #d60c0c;
}

main section.player .container .tit_top .btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.player .container .tit_top .btn i {
  margin-left: 8px;
}

.player_card_slide.swiper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1440px;
  height: 710px;
  overflow: hidden;
}
  
li.cards.swiper-slide {
  display: flex;
  flex: 0 0 450px; 
}
  
li.cards.swiper-slide .card {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main section.player .container ul.player_card {
  margin-top: 100px;
  perspective: 1300px;
  display: flex;
  justify-content: space-around;
}

main section.player .container ul.player_card li.cards {
  width: 450px;
  height: 600px;
  position: relative;
  border-radius: 20px;
  background: #000;
  overflow: hidden;
}

main section.player .container ul.player_card li.cards .card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

main section.player .container ul.player_card li:hover .card {
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  transition: .6s;
  position: relative;
}

main section.player .container ul.player_card li .front {
  width: 450px;
  height: 600px;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d
}

main section.player .container ul.player_card li .front a img {
 position: absolute;
 left: 213px; top: 25px;
} 

main section.player .container ul.player_card li .front img {
  position: absolute;
  left: 35px; top: 70px;
}

main section.player .container ul.player_card li .front .btn_more_img {
  width: 152px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 7px;
  margin-left: 50px;
  position: absolute;
  right: 30px; top: 10px;
}

main section.player .container ul.player_card li .front .btn_more_img:hover {
  background: #d60c0c;
}

main section.player .container ul.player_card li .front .btn_more_img a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.player .container ul.player_card li .front .btn_more_img i {
  margin-left: 8px;
}

main section.player .container ul.player_card li .card .front ul.player_card_txt {
  width: 380px;
  height: 36px;
  position: absolute;
  left: 35px; bottom: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main section.player .container ul.player_card li .front ul.player_card_txt li h3 {
  font-size: 25px;
}

main section.player .container ul.player_card li.cards .back {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0; top: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

main section.player .container ul.player_card li .back a img {
  margin-left: 213px;
  margin-top: 25px;
}

main section.player .container ul.player_card li .back .btn {
  width: 120px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 30px;
  position: absolute;
  left: 165px; bottom: 20px;
}

main section.player .container ul.player_card li .back .btn:hover {
  background: #d60c0c;
}

main section.player .container ul.player_card li .back .btn a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.player .container ul.player_card li .back .btn i {
  margin-left: 8px;
}

main section.player .container ul.player_card li .back .back_top {
  width: 380px;
  height: 60px;
  background: #fff;
  margin-left: 35px;
  margin-top: 22px;
  position: relative;
}

main section.player .container ul.player_card li .back .back_top img {
  margin-left: 50px;
  margin-top: 3px;
}

main section.player .container ul.player_card li .back .back_top .tit_back {
  font-style: normal;
  line-height: normal;
  color: #333;
  font-weight: 700;
}

main section.player .container ul.player_card li .back .back_top .tit_back h3 {
  font-size: 25px;
  position: absolute;
  left: 155px; top: 12px;
}

main section.player .container ul.player_card li .back .back_top .tit_back p {
  font-size: 20px;
  position: absolute;
  left: 240px; top: 18px;
}

main section.player .container ul.player_card li .back .back_middle {
  width: 380px;
  height: 180px;
  background: #fff;
  margin-left: 35px;
  margin-top: 22px;
  position: relative;
}

main section.player .container ul.player_card li .back .back_middle ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

main section.player .container ul.player_card li .back .back_middle ul li {
  width: 16%;
  height: 60px;
  text-align: center;
  margin-top: 22px;
}

main section.player .container ul.player_card li .back .back_middle ul li span {
  display: block;
  font-weight: 700;
}

main section.player .container ul.player_card li .back .back_middle ul li .tit {
  color: #888;
}

main section.player .container ul.player_card li .back .back_middle ul li .num {
  margin-top: 16px;
  color: #333;
}

main section.player .container ul.player_card li .back .back_bottom {
  width: 380px;
  height: 150px;
  background: #fff;
  margin-left: 35px;
  margin-top: 22px;
  position: relative;
}

main section.player .container ul.player_card li .back .back_bottom p {
  width: 80px;
  height: 30px;
  font-weight: 700;
  border-radius: 5px;
  color: #fff;
  background: #000;
  padding: 5px 5px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  left: 16px; top: 18px;
}

main section.player .container ul.player_card li .back .back_bottom ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

main section.player .container ul.player_card li .back .back_bottom ul li {
  width: 16%;
  height: 60px;
  text-align: center;
  margin-top: 75px;
}

main section.player .container ul.player_card li .back .back_bottom ul li span {
  display: block;
  font-weight: 700;
}

main section.player .container ul.player_card li .back .back_bottom ul li .tit {
  
  color: #888;
}

main section.player .container ul.player_card li .back .back_bottom ul li .num {
  margin-top: 8px;
  color: #333;
}

main section.player .container .player_ltgt button {
  position: absolute;
  top: 435px; transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
}

main section.player .container .player_ltgt .prev {
  left: 0; 
}

main section.player .container .player_ltgt .next {
  right: 0; 
}


/* ---------------------------------------------------------------- */
/* news_store */
main section.news_store {
  width: 100%;
  height: 900px;
  background: #111;
  color: #666;
  position: relative;
}

main section.news_store ul.container {
  display: flex;
}

main section.news_store ul.container li.news {
  width: 520px;
  height: 662px;
  padding-top: 120px;
}

main section.news_store ul.container li h2 {
  text-shadow: 3px 5px 2px rgba(68, 68, 68, 0.25);
}

main section.news_store ul.container li.news h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}

main section.news_store ul.container li.news .btn_more_news {
  width: 158px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 25px;
  margin-left: 182px;
}

main section.news_store ul.container li.news .btn_more_news:hover {
  background: #d60c0c;
}

main section.news_store ul.container li.news .btn_more_news a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.news_store ul.container li.news .btn_more_news i {
  margin-left: 8px;
}

main section.news_store ul.container li.news .wiz_news_press  {
  width: 520px;
  height: 500px;
  background: #333;
  border-radius: 30px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.30);
  margin-top: 30px;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_news {
  width: 420px;
  height: 210px;
  margin-left: 50px;
  padding-top: 30px;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_news li {
 margin-bottom: 7px;
 font-weight: 400;
 color: #ddd;
}

main section.news_store ul.container li.news .wiz_news_press ul>li.tit {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_news li:last-child {
  margin-bottom: 0;
}

main section.news_store ul.container li.news .wiz_news_press ul li.bar {
  height: 3px;
  background: #d60c0c;
  margin-top: 3px;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_news li.bar {
  width: 90px;
  margin-bottom: 24px;
}

main section.news_store ul.container li.news .wiz_news_press ul li strong {
  font-weight: 600;
  margin-right: 20px;
}

main section.news_store ul.container li.news .wiz_news_press ul li span {
  font-size: 10px;
  font-weight: 400;
  color: #888;
  float: right;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_press {
  width: 420px;
  height: 210px;
  margin-left: 50px;
  padding-top: 30px;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_press li {
 margin-bottom: 7px;
 font-weight: 400;
 color: #ddd;
}

main section.news_store ul.container li.news .wiz_news_press ul.wiz_press li.bar {
  width: 120px;
  margin-bottom: 24px;
}

main section.news_store ul.container li.store {
  width: 650px;
  height: 662px;
  padding-top: 120px;
  margin-left: 120px;
}

main section.news_store ul.container li.store h2 {
  font-family: "Blinker", sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}

main section.news_store ul.container li.store .btn_more_mall {
  width: 145px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  line-height: 35px;
  margin-top: 25px;
  margin-left: 250px;
}

main section.news_store ul.container li.store .btn_more_mall:hover {
  background: #d60c0c;
}

main section.news_store ul.container li.store .btn_more_mall a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px 7px 20px;
  align-items: center;
  line-height: 25px;
}

main section.news_store ul.container li.store .btn_more_mall i {
  margin-left: 8px;
}

main section.news_store ul.container li.store ul.banner {
  margin-top: 30px;
  position: relative;
}

main section.news_store ul.container li.store ul.banner li {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
}

main section.news_store ul.container li.store ul.banner li.banner_kbo h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50px; top: 50px;
}

main section.news_store ul.container li.store ul.banner li.banner_kbo p {
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  left: 50px; top: 105px;
  color: #fff;
}

main section.news_store ul.container li.store ul.banner li.banner_kbo p.bar {
  width: 305px;
  height: 3px;
  background: #d60c0c;
  position: absolute;
  left: 50px; top: 90px;
}

main section.news_store ul.container li.store ul.banner li.banner_kbo img {
  width: 650px;
  height: 500px;
  border-radius: 30px;
}

main section.news_store ul.container li.store ul.banner li.banner_kt {
  position: relative;
  
}

main section.news_store ul.container li.store ul.banner li.banner_kt img {
  border-radius: 30px;
}

main section.news_store ul.container li.store ul.banner li.banner_kt .logo_sub img {
  width: 180px;
  height: 62px;
  position: absolute;
  right: 70px; top: 180px;
  border-radius: 0;
}

main section.news_store ul.container li.store ul.banner li.banner_kt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  position: absolute;
  right: 81px; top: 244px;
}

main section.news_store ul.container li.store ul.banner li.banner_kt p {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  text-align: center;
  position: absolute;
  right: 97px; top: 287px;
}

/* ---------------------------------------------------------------- */
/* footer */
footer {
  width: 100%;
  height: 400px;
  background: #000;
  position: relative;
}

footer .container {
  display: flex;
  justify-content: space-between;
}

footer .container .f_right {
  
}

footer .container .f_left img {
  padding-top: 60px;
}

footer .container .f_left p {
  color: #fff;
  margin-top: 20px;
  line-height: 50px;
}

footer .container .f_left .f_bold {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

footer .container .f_left .f_bold span {
  margin-right: 30px;
}

footer .container .f_left .copy {
  margin-top: 50px;
}

footer .container .f_left em {
  color: #ddd;
  font-weight: 400;
}

footer .container .f_right {
  width: 250px;
  height: 200px;
  padding-top: 60px;
}

footer .container .f_right .family {
  width: 250px;
  height: 40px;
  position: relative;
}

footer .container .f_right .family p {
  width: 250px;
  height: 40px;
  background: #fff;
  box-sizing: border-box;
  color: #333;
  padding-left: 20px;
  font-weight: bold;
  cursor: pointer;
  border: 20px;
  line-height: 2.5;
}

footer .container .f_right .family p i {
  display: inline-block;
  margin-left: 10px;
}

footer .container .f_right .family p.none {
  position: absolute;
  left: 0; bottom: 46px;
  background-color: #fdfdfd;
  border-bottom: 0;
  display: none;
} 

/* footer .container .f_right .family p a {
  display: block;
} */

footer .container .f_right .sns {
  margin-top: 140px;
  margin-left: 20px;
}

footer .container .f_right .sns ul {
  width: 210px;
  height: 30px;
  display: flex;
  justify-content: space-evenly;
  height: 50px;
}
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */