:root {
  --color-orange: #faa74a;
  --color-mint: #00b6ad;

  --headerH: 100px;
}

.font25 {
  --fontsize: 2.5rem;
  font-size: var(--fontsize);
}

.font28 {
  --fontsize: 2.8rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

input,
input:focus,
textarea,
textarea:focus,
button,
button:focus,
select {
  border: none;
  outline: none;
  resize: none;
}

input.border,
input:focus.border,
textarea.border,
textarea:focus.border,
button.border,
button:focus.border,
select.border {
  border: 1px solid #e0e0e0;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: auto;
  background-image: none;
  margin: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-lock {
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  width: auto;
  left: auto;
  bottom: auto;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
}

.swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  margin: 0 !important;
  opacity: 1;
  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;
}

.swiper-pagination-progressbar {
  background: #dddddd;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--color-orange);
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}

* {
  line-height: 1;
  letter-spacing: -0.020em;
  font-family: 'Pretendard', sans-serif;
}

/* *.cursorOff {
  cursor: none !important;
} */

html,
body {
  width: 100%;
  max-width: 100%;
}

html.scrollX,
body.scrollX {
  overflow: hidden;
}

.animation {
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.animation.down {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

.animation.up {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.animation.left {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.animation.right {
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

.animation.opacity {
  opacity: 0;
}

.animation.on.down, .animation.on.up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation.on.left, .animation.on.right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animation.on.opacity {
  opacity: 1;
}

sup {
  font-size: 2px;
}

.dimmed,
.allMenuBackground,
.popupBackground{
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.68);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  display: none;
}

.popupBackground{
	z-index: 1000;
}

.allMenuBackground{
	z-index: 200;
}

#wrap,
footer {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  overflow-x: clip;
}

.w1800 {
  width: 100%;
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.w1400 {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.flexBox.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tabContents > div {
  position: absolute;
  top: -222222px;
  left: -222222px;
}

.tabContents > div.on {
  position: relative;
  top: auto;
  left: auto;
}

.pBox,
.dlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.colorM {
  color: var(--color-orange) !important;
}

.fontN {
  font-family: 'Noto Sans KR',
 sans-serif;
}

.radius {
  border-radius: 10px;
  overflow: hidden;
}

.radius.big {
  border-radius: 15px;
}

.radius.small {
  border-radius: 8px;
}

.border {
  border: 1px solid #e0e0e0;
}

.simpleButton {
  height: 45px;
  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;
  gap: 0 15px;
  background: var(--color-orange);
  border-radius: 22.5px;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0 40px;
}

.simpleButton.off {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #999999;
}

.date {
  color: #666666;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: 'Prompt',
 sans-serif;
}

.depth3 {
  display: none;
}

.topButton {
  width: 60px;
  height: 60px;
  background: var(--color-orange);
  border-radius: 50%;
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.topButton i {
  color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.topButton.color {
  background: #ffffff;
}

.topButton.color i {
  color: var(--color-orange);
}

sup {
  font-size: 2px;
}

header{
	width: 100%; 
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: background 0.4s, opacity 0.4s;
	-webkit-backface-visibility:hidden;
	-webkit-transform:translateZ(0);
	-webkit-transform:translate3d(0, 0, 0);
}

header::before{ 
	content: "";
	width: 100%;
	height: 1px;
	background: #EEE;
	position: absolute;
	bottom: 0; 
	left: 0;
	opacity: 0;
	transition: opacity 0.4s;
	pointer-events: none;
}

header .navBg{
	width: 100%;
	background: #FFF;
	height: 0;
	position: absolute;
	top: 0; 
	left: 0;
	z-index: -1;
	transition: height 0.5s 0.1s;
}

header .flex-box{ 
	height: var(--headerH);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo{ 
	display: inline-block;
	width: 248px;
}

header .logo .logoTextCls{
	transition: fill 0.4s;
}

header .right{ 
	display: flex; 
	align-items: center; 
}

header nav{
	--before: 180px;
	--after: 210px;
	text-align: center;
	margin-right: calc(var(--after) - var(--before));
}

header .arrow > a::after{ 
	content: "";
	display: inline-block;
	width: 10px;
	height: 7px;
	background: url("/img/svg/header_arrow.svg") no-repeat center center / contain;
	vertical-align: middle;
	margin-left: 10px;
	transform: translateY(-2px);
	transition: transform 0.4s;
}

header nav a{
	display: block;
	line-height: 1.3;
}

header .depth1{ 
	display: flex;
}

header .depth1 > li{
	position: relative;
}

header .depth1 > li > a{
	width: var(--before);
	height: var(--headerH);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #FFF;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 100;
	transition: width 0.4s, color 0.4s;
}

header .depth1 > li > a::after{
	content: "";
	width: 100%;
	height: 5px;
	background: var(--color-orange);
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transition: transform 0.4s;
}

header nav .cover{
	width: 100%;
	height: var(--navH);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	transition: height 0.5s, opacity 0.5s;
	pointer-events: none;
}

header nav .cover::before{
	content: "";
	width: 100%;
	height: calc(100% - var(--headerH));
	background: rgba(250, 167, 74, 0.1);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s;
}

header .depth2{
	padding-top: calc(var(--headerH) + 15px);
	padding-bottom: 15px;
}

header .depth2::before,
header .depth2::after{
	content: "";
	width: 1px;
	height: calc(100% - var(--headerH));
	background: #EEE;
	position: absolute;
	bottom: 0;
	z-index: 100;
}

header .depth2::before{
	left: 0;
}

header .depth1 > li:not(:first-child) .depth2::before{
	display: none;
}

header .depth2::after{ 
	right: 0;
}

header .depth2 > li > a{
	font-size: 17px;
	font-weight: 400;
	color: #444;
	letter-spacing: -0.02em;
	padding: 15px 5px;
	transition: color 0.5s;
}

header .depth3 > li > a{
	font-size: 16px;
	font-weight: 400;
	color: #888; 
	letter-spacing: -0.02em;
	padding: 5px 0;
}

header .sns{ 
	display: flex;
	align-items: center;
	margin-left: 40px;
}

header .sns ul{ 
	display: flex; 
}

header .sns ul li:not(:last-of-type){ 
	margin-right: 10px;
}

header .sns ul li a{ 
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F9F8FC; 
	border-radius: 10px;
	font-family: 'xeicon';
	font-size: 22px;
	font-style: normal;
	color: #A2A1AB;
	padding: 7px 9px;
}

header .popupButton{
	background: var(--color-orange);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #FFF;
	letter-spacing: -0.02em;
	line-height: 1;
	padding: 10px 14px;
	margin: 0 20px 0 10px;
}

header .menuButton{
	width: 52px;
	height: 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url("/img/svg/circle.svg") no-repeat center center / contain;
	position: relative;
	z-index: 300;
}

header .menuButton span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header .menuButton span:not(:last-of-type){
	margin-bottom: 4px;
}

/* header - scroll */
header.scroll .logo .logoTextCls{
	fill: #594A41;
}

header.scroll .depth1 > li > a{
	color: #222;
}

/* header - hover */
header.hover::before{
	opacity: 1;
}

header.hover .logo .logoTextCls{
	fill: #594A41;
}

header.hover .navBg{
	height: var(--navH);
	transition-delay: unset;
}

header.hover .depth1 > li > a{
	width: var(--after);
	color: #222;
}

header.hover .cover{ 
	transition: height 0.5s, opacity 0.4s 0.3s;
	opacity: 1;
	pointer-events: auto;
}

header .depth1 > li:hover > a{
	color: var(--color-orange);
}

header .depth1 > li:hover > a::after{
	transform: scaleX(1);
}

header .depth1 > li:hover .cover::before{
	opacity: 1;
}

/* header - active */
header.active .navBg{ 
	height: var(--activeH);
}

header.active .cover{
	height: var(--activeH);
}


/* header - on */
header .menuButton.on span:not(:last-of-type){
	margin-bottom: 0;
}

header .menuButton.on span:first-child {
  -webkit-transform: translate(0, 1px) rotate(-45deg);
          transform: translate(0, 1px) rotate(-45deg);
}

header .menuButton.on span:last-child {
  -webkit-transform: translate(0, -1px) rotate(45deg);
          transform: translate(0, -1px) rotate(45deg);
}

/* header - opacity */
header.opacity{
	opacity: 0;
	pointer-events: none;
}


.allMenu {
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
  pointer-events: none;
}

.allMenu :root {
  --vh: 100%;
}

@supports (-webkit-touch-callout: none) {
  .allMenu {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
}

.allMenu :root {
  --vh: 100%;
}

@supports (-webkit-touch-callout: none) {
  .allMenu {
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
  }
}

.allMenu .flexBox {
  width: 100%;
  height: calc(100% - 140px);
  padding: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: auto;
}

.allMenu .flexBox::before {
  content: "";
  display: block;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  border-radius: 10px;
  background: #ffffff;
  z-index: -2;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.allMenu #snb .mobile{
	display: none;
}

.allMenu #snb > ul{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.allMenu #snb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}

.allMenu #snb > ul > li {
  position: relative;
}

.allMenu #snb > ul > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #ebebeb;
  position: absolute;
  top: 0;
  right: 0;
}

.allMenu #snb > ul > li > a {
  color: #222222;
  font-size: 2.5rem;
  font-weight: 600;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.allMenu #snb .depth2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0 0;
}

.allMenu #snb .depth2 > li{
	-webkit-transform: translateY(40px);
    transform: translateY(40px);
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.allMenu #snb .depth2 li a {
  color: #333333;
  font-size: 1.7rem;
  font-weight: 300;
  padding: 15px 0;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.allMenu #snb .depth2 li:hover > a {
  color: var(--color-orange);
  font-weight: 500;
}

.allMenu #snb .depth2.on li{
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.allMenu #snb .arrow .depth3{
	display: block;
}

.allMenu #snb .depth3 li a{ 
	font-size: 16px;
	font-weight: 400;
	color: #999;
	letter-spacing: -0.02em;
	line-height: 1.3;
	padding: 5px 0;
}

.allMenu #snb .depth3 br{ 
	display: none;
}

.allMenu .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: auto 0 0;
}
.allMenu .bottom::before{ 
	content: "";
	width: 45%;
	height: 45%;
	background: #FFF;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.allMenu .point {
  width: 58.5%;
  opacity: 0.4;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  pointer-events: none;
}

.allMenu .point .svg {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.allMenu .point .smile {
  width: 35.80%;
}

.allMenu .point .simple {
  width: 54.65%;
  margin: 0 0 0 0.395%;
}

.allMenu .point .simple .simpleCls-1 {
  fill: var(--color-mint);
}

.allMenu .point .simple .simpleCls-2 {
  fill: var(--color-orange);
}

.allMenu .point .plus {
  width: 8.25%;
  -webkit-transform: translateY(-140%);
          transform: translateY(-140%);
}

.allMenu .social {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

.allMenu .social li {
  width: 210px;
  height: 100%;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.allMenu .social li a {
  gap: 0 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.allMenu .social li a i, .allMenu .social li a span {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.allMenu .social li a i {
  color: var(--color-orange);
}

.allMenu .social li a span {
  color: #333333;
}

.allMenu .social li:hover {
  background: var(--color-orange);
}

.allMenu .social li:hover a i, .allMenu .social li:hover a span {
  color: #ffffff;
}

.allMenu.on .flexBox::before {
  width: 100%;
  height: 100%;
}

.allMenu.on #snb > ul > li > a {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.allMenu.on .point,
.allMenu.on .social {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.allMenu.on .point {
  opacity: 0.1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.allMenu.on .social {
  opacity: 1;
}

footer {
  background: #333333;
  color: #ffffff;
  padding: 100px 0;
}

footer a, footer button {
  color: #ffffff;
}

footer .footerBox  > div{
	display: flex;
}

footer .infoBox{
	align-items: center;
}

footer .infoBox .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

footer .infoBox .line li{
	padding: 5px 12px;
	position: relative;
}

footer .infoBox .line li.none{  
	padding: 0;
}

footer .infoBox .line li.none + li:not(.none)::before{
	display: none;
}

footer .infoBox .line a{ 
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #FFF;
	letter-spacing: -0.02em;
	padding: 5px 12px;
}

footer .infoBox .line li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 0; 
  transform: translateY(-50%);
}

footer .infoBox .line li:first-of-type::before{
	display: none;	
}

footer .logo {
  width: 210px;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .logo .simple {
  width: 61.91%;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

footer .logo .smile {
  width: 27.62%;
  margin: 0 -6px 0 6px;
}

footer .logo .plus {
  width: 9.53%;
}

footer .contactBox {
	flex: 1 0 auto;
	margin-left: 30px;
}

footer .contact {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 300;
}

footer .policy {
  display: flex;
  opacity: 0.9;
  margin: -5px -12px;
}

footer .policy li{
	position: relative;
}

footer .policy li::after{ 
	content: "";
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

footer .policy li:last-child::after{
	display: none;
}

footer .policy li a {
  display: inline-block;
  font-weight: 300;
  padding: 5px 12px;
}

footer .policy li:first-child a {
  font-weight: 500;
}

footer .copy {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 15px 0 0;
  opacity: 0.3;
}

footer .copy br {
  display: none;
}

footer .buttonBox{
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 140px;
}

footer .buttonBox .link ul,
footer .buttonBox .family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 10px;
}

footer .buttonBox .link a,
footer .buttonBox .family button {
  width: 210px;
  background: #3f3f3f;
  border-radius: 6px;
  font-size: 1.5rem;
}

footer .buttonBox .link a {
  height: 60px;
  gap: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .buttonBox .link a i {
  font-size: 1.8rem;
}

footer .buttonBox .family > div {
  position: relative;
  z-index: 2;
}

footer .buttonBox .family button {
  height: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 22px 0 25px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

footer .buttonBox .family button.on {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

footer .buttonBox .family button.on i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

footer .buttonBox .family ul {
  width: 100%;
  padding: 15px 25px;
  background: #484848;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  position: absolute;
  left: 0;
  bottom: 100%;
  display: none;
}

footer .buttonBox .family ul li a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 8px 0;
}


/* floating */
.floating{
	position: fixed;
	bottom: 40px;
	right: 50px;
	z-index: 900;
	opacity: 1;
	transition: opacity 0.6s;
}

.floating.opacity{
	opacity: 0;
	pointer-events: none;
}

.floating ul li{
	position: relative;
}

.floating ul li:not(:last-of-type){
	margin-bottom: 15px;
}

.floating ul li > div{
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s;
	position: absolute;
	right: 0;
}

.floating button{
	width: 54px;
	height: 54px;
	border: none;
	border-radius: 24px;
	padding: 0;
	position: relative;
	z-index: 10;
}

.floating img{
	width: auto;
	height: auto;
}

.floating .link button{
	background: var(--color-orange);
} 

.floating .link > div{
	padding-bottom: 75px;
	bottom: 0;
}

.floating .link div a:not(:last-of-type){
	margin-bottom: 15px;
}

.floating .link a{
	display: inline-block;
	background: #FFF;
	border-radius: 999px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #999;
	letter-spacing: -0.02em;
	white-space: nowrap;
	padding: 15px 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.01);
}

.floating .link a::after{
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url("/img/svg/target_icon.svg") no-repeat center center / contain;
	vertical-align: middle;
	margin-left: 10px;
}

.floating .link a.orange{
	background: var(--color-orange);
	color: #FFF;
	box-shadow: unset;
}

.floating .link a.orange::after{
	filter: grayscale(1) brightness(2);
	-webkit-filter: grayscale(1) brightness(2);
}

.floating .call button{
	background: var(--color-mint);
} 

.floating .call > div{
	width: 150px;
	bottom: 0;
	z-index: 15;
	transition: opacity 0.6s 0.2s;
}

.floating .call .box{
	background: var(--color-mint);
	border-radius: 24px;
	padding: 4px;
	padding-top: 0;
	text-align: center;
	transform: scale(0);
	transform-origin: bottom right;
	transition: transform 0.6s 0.3s;
}

.floating .call .icon{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
}

.floating .call .number{
	background: #FFF;
	padding: 20px 3px 3px;
	border-radius: 22px;
	opacity: 0;
	transition: opacity 0.6s;
}

.floating .call dl {
	margin-bottom: 10px;
}

.floating .call dl *{
	line-height: 1.3;
}

.floating .call dl dt{
	font-size: 14px;
	font-weight: 500;
	color: #555;
	letter-spacing: -0.02em;
	margin-bottom: 3px;
}

.floating .call dl dd{
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--color-mint);
}

.floating .call p{
	background: var(--color-orange);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
	letter-spacing: -0.02em;
	padding: 11px 0;
}

.floating ul li.on  > div{
	opacity: 1;
	pointer-events: auto;
}

.floating .call.on > div{
	transition-delay: unset;
}

.floating .call.on .box{
	transform: scale(1);
	transition-delay: unset;
}

.floating .call.on .number{
	opacity: 1;
	transition-delay: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
	.floating ul li.on  > div{
		opacity: 0;
		pointer-events: none;
	}

	.floating .call.on > div{
		transition-delay: 0.3s;
	}

	.floating .call.on .box{
		transform: scale(0);
		transition-delay: 0.3s;
	}

	.floating .call.on .number{
		opacity: 0;
		transition-delay: unset;
	}

	.floating ul li:hover > div{ 
		opacity: 1;
		pointer-events: auto;
	}

	.floating .call:hover > div{
		transition-delay: unset;
	}

	.floating .call:hover .box{
		transform: scale(1);
		transition-delay: unset;
	}

	.floating .call:hover .number{
		opacity: 1;
		transition-delay: 0.3s;
	}
}


/* popup */
.popup, 
.popup *{ max-height:676px; }
.popup { display: none; position:fixed; left: 50%; top: 50%; width: calc(100% - 60px); max-width:600px; transform:translate(-50%, -50%); z-index: 1000; }
.popup__inner { height: 100%; }
.popup-swiper { background-color: #fff;	z-index: 5; }
.popup-swiper .swiper-wrapper{ align-items: center; }
.popup-swiper .swiper-slide{ text-align: center; }
.popup-swiper .swiper-slide a { display: block; height: 100%; }
.popup-swiper .swiper-button-prev, .popup-swiper .swiper-button-next { position: absolute; top: 50%; width: 50px; height: 50px; transform:translateY(-50%); z-index: 10; }
.popup__bottom { display:flex; height: 56px; }
.popup-swiper .swiper-button-prev { left: 0; background: url('/img/common/popup_swiper_prev.svg') no-repeat center center/auto #151515; }
.popup-swiper .swiper-button-next { right: 0; background: url('/img/common/popup_swiper_next.svg') no-repeat center center/auto #151515; }
.popup-swiper .swiper-pagination { position: absolute; width:calc(100% - 40px); max-width:415px; left: 50%; bottom: 15px; display: flex; column-gap:5px; height: 5px; transform:translateX(-50%); }
.popup-swiper .swiper-pagination .swiper-pagination-bullet { flex:1; height: 100%; background-color: rgba(21,21,21,0.3); border-radius:0; }
.popup-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: #FAA74A; }
.popup__bottom .btn{ display:flex; justify-content:center; align-items:center; width: 50%; font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; color: #fff; }
.popup__bottom .btn-yellow { background-color: #EC932F; }
.popup__bottom .btn-black { background-color: #151515; }

@media screen and (max-width:768px) {
	.popup__bottom .btn { font-size: 16px; }
	.popup-swiper .swiper-button-prev, .popup-swiper .swiper-button-next { width:40px; height: 40px; background-size: 80%; }
	.popup-swiper .swiper-pagination { bottom:10px; }
	.popup__bottom { height: 40px; }
}