@charset "utf-8";

.red {
    color: red;
}

.blue {
    color: blue;
}

.green {
    color: #008149;
}

h2 {
    margin: 3% 1%;
    font-size: 25px;
}

h2 p {
    font-size: 40px;
}

h2 em {
    font-style: normal;
    font-weight: normal
}

.subtxt {
    margin: 0 2% 3%;
    color: #505050;
    font-size: 19px;
}

.subtxt2 {
    margin: 0 2% 3%;
    color: #505050;
    font-size: 19px;
    text-align: center;
}

.date {
    margin: 0 1% 3%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.date:after {
    content: '';
    display: block;
    clear: both;
}

.date em {
    display: block;
    float: left;
    font-style: normal;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.date .abc {
    float: right;
    display: block;
    width: 69px;
}

.cont {
    display: block;
    margin: 1em 2.5% 1.5em;
    text-align: justify;
    word-break: break-all;
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

.mgt {
    position: relative;
    z-index: -1;
    margin-top: -100px;
}

.cont2 {
    font-size: 25px;
}

.ac {
    text-align: center;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.form-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: #3c3c3c;
    padding: 30px;
    height: 150px;
}

.form-rows {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lbl {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 36px;
    text-align: right;
    margin-right: 2px;
}

[type="text"],
input[type="tel"] {
    height: 32px;
    border: 1px solid #888;
    background: #fff;
    padding: 0 8px;
    font-size: 13px;
    outline: none;
    border-radius: 2px;
}

input[name="username"] {
    width: 140px;
}

input[name="age"] {
    width: 80px;
}

.tel-group {
    display: flex;
    align-items: center;
    gap: 3px;
}

.tel-group select {
    height: 32px;
    border: 1px solid #888;
    background: #fff;
    padding: 0 4px;
    font-size: 13px;
    border-radius: 2px;
    width: 64px;
}

.tel-group input[type="tel"] {
    width: 72px;
}

.tel-sep {
    color: #ccc;
    font-size: 14px;
}

.gender-group {
    display: flex;
    gap: 3px;
}

.gender-group input[type="radio"] {
    display: none;
}

.gender-group label {
    display: inline-block;
    padding: 5px 18px;
    height: 32px;
    line-height: 22px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #888;
    background: #666;
    color: #fff;
    border-radius: 2px;
    transition: background 0.15s;
}

.gender-group input[type="radio"]:checked+label {
    background: #2e7d62;
    border-color: #2e7d62;
    color: #fff;
}

.divider {
    width: 1px;
    height: 24px;
    background: #888;
    margin: 0 4px;
}

.btn-submit {
    background: #2e7d62;
    color: #fff;
    border: none;
    padding: 0 28px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: background 0.2s;
    align-self: stretch;
    min-width: 120px;
    animation: bgChange 1s infinite;
}

 @keyframes bgChange {
    0% {
        background-color: #003d2d;
    }

    100% {
        background-color: #32826d;
    }
  }

 @keyframes bgChange2 {
  0% {
    background-color: #f59313;
  }

  100% {
    background-color: #a8250e;
  }
}

.btn-submit:hover {
    background: #246350;
}

.agree-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.agree-row label {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ccc;
    font-size: 11px;
    cursor: pointer;
    white-space: nowrap;
}

.agree-row input[type="checkbox"] {
    accent-color: #2e7d62;
    width: 13px;
    height: 13px;
}

.agree-row a {
    color: #aaa;
    font-size: 10px;
    text-decoration: none;
}

.agree-row a:hover {
    text-decoration: underline;
}



#view-app {
    width: 100%;
}

.section {
    padding: 100px 75px;
}

.sectionTitle {
    text-align: center;
    display: block;
    letter-spacing: -2px;
    margin-bottom: 75px;
}

.sectionTitle h3 {
    color: #32826d;
    font-size: 2.91rem;
    font-family: 'gMarket3';
}

.sectionTitle h3 strong {
    text-decoration: underline;
    color: #01469c;
}

.sectionTitle h6 {
    font-size: 2.14rem;
    font-family: 'gMarket3';
}

.sectionTitle h6 strong {
    color: #ff0000;
}

.sectionTitle p {
    font-size: 1.4rem;
    margin-top: 20px;
    letter-spacing: -1px;
}

.sectionTitle img {
    margin-bottom: 50px;
}


/* 섹션 1 */
.grid_s_01 {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.grid_s_01>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    font-size: 1.773rem;
    letter-spacing: -1px;
}

.grid_s_01>div img {
    display: block;
    width: 300px;
    height: auto;
}

/* 섹션 2 */
#section2 span{
    display: block;
    text-align: center;
    font-size: 1.74rem;
}

#section2 img{
    display: block;
    margin: 0 auto;
    margin-bottom: 75px;
}

.solo_adds_02 {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
    justify-content: center;
}

#section2 span {
  display: block;
  text-align: center;
  font-size: 1.74rem;
}

#section2 span p {
  display: inline-block;
  color: #24c59b;
}

#section2 span strong {
  font-weight: bold;
}

.grid_s_03{
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
    justify-content: center;
}


.margin100 {margin-top: 100px !important;}


.solo_s_04{
    display: flex; 
    justify-content: center;
    margin: 0 auto;
}

.grid_s_07{
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.grid_s_07>div{
   display: flex;
    flex-direction: row;
    gap: 25px; 
}

.grid_s_07>div>div>span{
    display: block;
    background-color: #333;
    color: #fff;
    text-align:center;
    font-size: 1.16rem;
    padding: 20px 5px;
    width: 250px;
}



#add_section01 {
    background-image: url("../img/cont_03_bg.jpg");
}


#section2 {
    background-image: url("../img/section2_bg.jpg");
}


#add_section02{
      background-image: url("../img/add_section02_bg.jpg");
}


#section4{
      background-image: url("../img/section4_bg.jpg");

}

#section5{
     background-color: #eff2f1;
}

#section6{
      background-image: url("../img/section6_bg.png");

}


.solo_adds_04 {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
    justify-content: center;
}




footer {
    width: 100%;
    background-color: #1e1e1e;
    color: #fff;
    padding: 35px 150px;
}

footer p {
    text-align: center;
    opacity: 0.6;
    line-height: 1.5;
    font-family: 'gMarket1';
}


.arLayer {
    position: fixed;
    top: 50px;
    right: 10px;
    z-index: 10;
}

.contLayer {
    position: relative;
}

.contLayer .layerTxt {
    position: absolute;
    top: 69%;
    left: 2%;
    width: 96%;
    text-align: center;
}

.contLayer .layerTxt .btnL {
    display: inline-block;
    width: 40%;
}

.contLayer .layerTxt .contL {
    display: none;
    text-align: left;
    position: absolute;
    top: 90px;
    right: 0px;
    padding: 20px 160px 20px 20px;
    background: #fff url(../img/layer_bg.png) right bottom no-repeat;
}

.contLayer .layerTxt .contL em {
    display: inline-block;
    font-style: normal;
    background: #fffd7f;
}

.storyPC{display: block;}
.storyMO{display: none;}

.slickwormPC{display: block;}
.slickwormMO{display: none;}

.howtousePC{display: block;}
.howtouseMO{display: none;}


/* 모바일 */

.fixedBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #333;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 999;
}
.fixedBtn button{
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-size: 1.423rem;
 background-color: #a8250e;
  font-family: "gMarket2";
  animation: bgChange2 1s infinite;
}


@media screen and (max-width:700px) {

    img{width: 100%;}

    .section {
        padding: 50px 15px;
    }

    .sectionTitle {
        margin-bottom: 25px;
    }

    .sectionTitle h3 {
      font-size: 1.5rem;
    }

     .sectionTitle h6 {
        font-size: 1.1rem;
    }

    .sectionTitle p {
        font-size: 1.1rem;
        margin-top: 12px;
    }

    .sectionTitle img{
        width: 100px;
        margin-bottom: 35px;
    }

    #section2 span {
        font-size: .72rem;
    }
    
    #section2 span p {
        display: inline-block;
        color: #24c59b;
    }

    .solo_adds_04 img {
        width: 80%;
    }

    footer{
        padding: 15px 50px;
    }

     #add_section01 {
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .storyPC{display: none;}
    .storyMO{display: block;}
    
    .slickwormPC{display: none;}
    .slickwormMO{display: block;}

    .howtousePC{display: none;}
    .howtouseMO{display: block;}



    /* 기존 PC 폼 모바일에서 숨김 */
    .form-wrap { display: none; }
}