:root {
  --muca-color: #ee495a;
}
  
a {
  text-decoration: none;
}

body {
  font-family: "Spoqa Han Sans","Malgun Gothic",Helvetica,sans-serif;
}

ol, ul {
  list-style: none;
}

/* margin */
.m_t_2vh {margin-top: 2vh;}

/* align */
.ft_align_center {text-align: center;}

/* font */
.ft_small {font-size: small;}

/* title */
.title{
    height: 56px;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
  
.title_left{
    position: fixed;
    margin-left: 4vw;
}
  
.title_right{
    position: fixed;
    margin-right: 4vw;
}
  
.logo{
    margin: auto;
}

/* container */

.tab{
    height: 56px;
    background-color: #fff;
    display: flex;
    border-top: 1px solid #eaeaea;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
  }
  
  .tab .menu{
    margin: 0 4vw;
    width: 92vw;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    text-align: center;
    align-self: center;
  }
  
  .tab .menu li{
    width: 18vw;
    height: 56px;
    text-align: center;
    flex-direction: column;
  }
  
  .on {
    color: var(--muca-color);
  }
  
  .center_float_button {
    background-color: #ee495a;
    width: 248px;
    height: 72px;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    text-align: center;
  }
  
  .center_float_button .button_txt {
    color: white;
  }
  
  .popup {
    background-color: #ffffff;
    padding: 20px;
    width: 320px;
    border-radius: 6px;
    text-align: center;
    
  }
  .popup .text {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    padding-bottom: 20px;
    line-height: 30px; 
    word-break: keep-all;
  }
  .popup button {
    border-radius: 6px;
    cursor: pointer;
    padding: 12px 16px;
    line-height: 1.5;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    text-align: center;
    border: none;
    background-color: #ee495a;
    color: #fff;
    width: 100%;

  }
@media screen and (max-width: 904px) {
  .banner{
    width: 90vw;
    height: 8vh;
    background-color: #f4f4f4;
    border-radius: 0.5rem;
  }

  .center_img{
    margin-top: 5vh;
    text-align: center;
  }

  .title_area{
    margin-top: 10vh;
    text-align: center;
  }

  .title_area h2{
    font-size: 26px;
    line-height: 31px
  }

  .bottom_banner{
    width: 100%;
    height: 20vw;
    position: fixed;
    bottom: 40vw;
    text-align: center;
  }

  .bottom_banner .banner_area{
    display: flex;
    justify-content: center;
    padding: 0 5vw;
    text-align: center;
  }

  .bottom_btn{
    width: 100%;
    height: 20vw;
    position: fixed;
    bottom: 20vw;
  }

  .bottom_btn .btn_area{
    height: 6vh;
    display: flex;
    justify-content: center;
    padding: 0 5vw;
    text-align: center;
  }

  .bottom_btn .btn_area .btn_block{
    width: 100%;
    font-size: 1rem;
    border-radius: .375rem;
    padding: calc(3vh - 7px) 0;
    font-weight: 700;
    border: none;
  }

  .bottom_btn .btn_sub_area{
    height: 5vw;
    display: flex;
    justify-content: center;
    margin-top: 2vw;
    font-weight: lighter;
  }

  .btn_red{
    background-color: #ee495a;
    color: #fff;
  }
  .btn_trans{
    background-color: transparent;
    color: #999;
    font-weight: 400;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -24px;
  margin-top: -24px;
  z-index: 100;
  display: none;
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 