/* ------------------ /
/ ### 기본 설정 GLOBAL /
/ ------------------ /
/ ## root */
:root {
    /* Color styles */
    --yellow: #FFDEC2;
    --purple-100: #592C82;
    --purple-80: #784CA6;
    --purple-60: #A886C4;
    --purple-40: #CAB3E1;
    --purple-10: #EFE5F6;
    --byzantium-100: #853275;
    --byzantium-80: #AD4D9B;
    --byzantium-60: #C87AB7;
    --byzantium-40: #E2B1D9;
    --byzantium-10: #FFEFFB;
    --gray-100: #505050;
    --gray-80: #6E6E6E;
    --gray-60: #919191;
    --gray-40: #B8B8B8;
    --gray-10: #F2F2F2;
    --magenta-100: #AC3C72;
    --magenta-80: #C6578D;
    --magenta-60: #D984AE;
    --magenta-40: #DE93B6;
    --magenta-10: #FCEDF4;
    --teal-100: #00A0AF;
    --teal-80: #32B7C2;
    --teal-60: #66CBD2;
    --teal-40: #9CD8E1;
    --teal-10: #E9F5F6;

    --gra3: linear-gradient(90deg, #0DA5B3 0%, #952C68 100%);

    /* Text-size styles */
    --nav: 700 2.2rem 'Paperlogy', sans-serif;
    --main-heading: 900 5.4rem/1.2 'Paperlogy', sans-serif;
    --sub-heading: 900 3.6rem / 1.2 'Paperlogy', sans-serif;
    --img-heading: 900 3.6rem / 1.2 'Paperlogy', sans-serif;
    --img-desc: 700 2.8rem/ 1.3 'Paperlogy', sans-serif;
    --img-desc-small: 500 2rem/ 1.3 'Paperlogy', sans-serif;
    --body: 400 2.8rem / 1.3 'Paperlogy', sans-serif;
    --faq-body: 400 2.6rem / 1.5 'Paperlogy', sans-serif;

    --py: 120px;
    --shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    color: var(--gray-100);
    word-break: keep-all;
    word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

sup,
sub {
    margin-left: 1px;
    font-size: 50%;
    vertical-align: super;
    position: unset;
    font-weight: 400;
}

em {
    font-style: normal;
}

small {
    font-size: 70%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

/* -------------------- */
/* ### 유틸리티 UTILITIES */
/* -------------------- */

.text-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.code {
    position: relative;
}

em.purple {
    color: var(--purple-100);
    font-weight: 700;
}

em.teal {
    color: var(--teal-100);
    font-weight: 700;

}

em.byzantium {
    color: var(--byzantium-80);
}

em.magenta {
    color: var(--magenta-100);
}

mark {
    padding: 0 3px;
}

.mark--teal {
    color: #fff;
    background: var(--teal-100);
}

.mark--lightpurple {
    background-color: var(--purple-10);
    color: var(--purple-100);
}

.mark--purple {
    background-color: var(--purple-80);
    color: #fff;
}

.break-word {
    word-break: break-all;
}

/* ----------------- */
/* ### 레이아웃 LAYOUT */
/* ----------------- */

body {
    font-family: 'Paperlogy', sans-serif;
    font-size: 1.6rem;
    line-height: 1.3;
}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 120px);
}

section {
    flex: 1;
    padding: var(--py) 0;
}

/* section에 배경 */
.bg__lightblue {
    background: center / cover no-repeat url(../images/bg-lightblue.png);
}

.bg__lightpurple {
    background: linear-gradient(180deg, #EFE5F6 0%, #FFF 50%, #EFE5F6 100%);

}

.bg__lightpurple--top {
    background: linear-gradient(180deg, #EFE5F6 0%, #FFF 50%);
}

.bg__lightpurple--bottom {
    background: linear-gradient(180deg, #FFF 79%, #EFE5F6 100%);
}

.container {
    max-width: 1530px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.flex-row__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.grid__3-1 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.grid__1-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.flex__1xn {
    display: flex;
    gap: 6rem;
    align-items: start;
    justify-content: center;
}

.flex__wrap {
    flex-wrap: wrap;
}



/* --------------------- */
/* ### 컴포넌트 COMPONENTS */
/* --------------------- */
.only-mo {
    display: none;
}

/* ## 건너뛰기 */
.btn-skip {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
}

.btn-skip__target {
    display: block;
    width: auto;
    padding: 5px;
    background-color: #000;
    color: #fff;
    font-size: 0;
    position: absolute;
    left: -500px;
    top: 0;
    text-indent: -9999px;
    font-size: 1.6rem;
}

.btn-skip__target:focus {
    left: 0;
    text-indent: 0px;
}

.btn-home {
    text-decoration: underline;
    font: var(--body);
}

/* ## 헤더 */
.header--dsk {
    position: sticky;
    z-index: 100;
    left: 0;
    top: 0;
    padding: 30px 0;
    background-color: var(--purple-100);
    color: #fff;
    text-align: center;
    transition: all 0.3s;
}

.header--dsk .container {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: all 0.3s;
}

.header__logo {
    display: block;
    height: 60px;
    transition: all 0.3s;
}

.header__logo img {
    height: 100%;
}

.nav__items {
    display: flex;
    gap: 10px;
}

.nav__item {
    display: inline-block;
    position: relative;
    min-width: 146px;
    width: 100%;
    height: 48px;
}

.nav__1level {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    font: var(--nav);
    transition: color 0.1s;
}

.nav__is2level {
    position: relative;
    cursor: pointer;
}

.nav__is2level::after {
    content: '';
    position: relative;
    display: inline-block;
    background: url(../images/arrow.svg) no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: filter 0.1s;
}

.nav__items--2level {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0 30px;
    background-color: #ffffff;
    color: var(--purple-100);
    font: var(--nav);
    transition: color 0.1s;
    border: 1px solid var(--purple-80);
}

.nav__items--2level li+li {
    border-top: 1px solid var(--gray-40);
}

.nav__2level {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    white-space: nowrap;
    transition: color 0.1s;
}

/* 모바일 헤더 */
.header--mob {
    position: sticky;
    z-index: 100;
    left: 0;
    top: 0;
    height: 85px;
    padding: 16px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--GRAY-40, #B8B8B8);
    text-align: center;
    transition: all 0.3s;
    display: none;
}

.header--mob .container {
    display: flex;
    padding: 0 22px
}

.header__logo--mob {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-menu--mob {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-menu__text {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 1.6rem;
    font-family: 'Paperlogy', sans-serif;
    font-weight: 500;
    color: var(--purple-100);
}

.nav--mob {
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    display: none;
}

.nav--mob .nav__items {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background-color: var(--purple-100);
    border-top: none;
}

.nav--mob .nav__item {
    height: auto;
}

.nav--mob .nav__item+.nav__item .nav__1level {
    border-top: 1px solid #fff;
}

.nav--mob .nav__1level {
    display: flex;
    justify-content: space-between;
    width: auto;
    padding: 18px 0;
    margin: 0 22px;
    color: #fff;
}

.nav--mob .nav__items--2level {
    position: unset;
    transform: unset;
    padding: 0 44px;
    font: var(--nav);
    background-color: var(--purple-80);
}

.nav--mob .nav__2level {
    justify-content: flex-start;
    padding: 18px 0;
    color: #fff;
}



/* header, nav 활성 관련 */
.header--dsk.expand {
    padding: 0;
}

.header--dsk.expand .container {
    justify-content: center;
}

.header--dsk.expand .header__logo {
    height: 26px;
    position: absolute;
    left: 32px;
}

.header--dsk .nav__item:is(:hover, :focus) .nav__is2level::after,
.header--dsk .nav__is2level.active::after {
    transform: scaleY(-1);
    filter: invert(39%) sepia(50%) saturate(388%) hue-rotate(135deg) brightness(98%) contrast(80%);
}

.nav__is2level.active+.nav__items--2level {
    display: block;
}

.header--dsk .nav__2level:is(:hover, :active) {
    color: var(--purple-60);
}

.btn-menu--close {
    display: none;
}

.btn-menu--mob.active .btn-menu--open {
    display: none;
}

.btn-menu--mob.active .btn-menu--close {
    display: block;
}

.nav--mob.active {
    display: block;
}



/* ## 예약하러 가기 */
.btn-appointment {
    position: absolute;
    top: calc(100% + 24px);
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: auto;
    padding: 16px;
    border-radius: 8px;
    background: var(--gra2, linear-gradient(180deg, #FFF 50%, #EFE5F6 100%));
    box-shadow: var(--shadow);
}

.btn-appointment__crown {
    width: 45px;
    height: 45px;
}

.btn-appointment__text {
    text-align: center;
    font-family: 'Paperlogy';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple-100);
}

.btn-appointment__arrow {
    width: 31px;
}

.btn-appointment--mob {
    position: fixed;
    bottom: 80px;
    right: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: auto;
    padding: 12px 14px;
    border-radius: 50px 0 0 50px;
    background: var(--gra2, linear-gradient(180deg, #FFF 50%, #EFE5F6 100%));
    box-shadow: var(--shadow);
    border: 1px solid var(--PURPLE-100, #592C82);
}

.btn-appointment__crown--mob {
    width: 2.5rem;
    height: 2.5rem;
}

.btn-appointment__text--mob {
    font-size: 1.6rem;
    font-family: 'Paperlogy';
    font-weight: 700;
    color: var(--purple-100);
    text-align: start;
}

.btn-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    rotate: 180deg;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--purple-100);
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: none;
}

.btn-top.active {
    display: flex;
}

.btn-top img {
    width: 23px;
    margin-bottom: -3px;
}

/* ## footnote */
.footnote {
    padding: 0 0 6rem;
}

.footnote__items+.footnote__items {
    margin-top: 2rem;
}

.footnote__item {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
}

.footnote__marker {
    padding-top: 2px;
    line-height: 1;
    font-size: 80%;
}

/* ## references */
.references {
    padding: calc(var(--py) / 2) 0;
    background: var(--GRAY-10, #F2F2F2);
}

.references__title {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
    font-weight: 900;
}

.references__items {
    counter-reset: ref-num;
}

.references__item {
    display: flex;
    gap: 0.7rem;
    font: 400 1.4rem / 1.3 'Paperlogy', sans-serif;

    word-break: break-all !important;
}

.references__num {
    counter-increment: ref-num;
    position: relative;
    flex-shrink: 0;
}

.references__num:before {
    content: counter(ref-num)'.'
}

/* ## footer */
.footer-arexvy {
    padding: calc(var(--py)/2) 0;
    background: var(--GRAY-100, #505050);
    color: #fff;
}

.footer-arexvy__text+.footer-arexvy__text {
    margin-top: 1.4rem;
}

.footer-arexvy__link {
    color: var(--TEAL-100, #00A0AF);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.footer-arexvy__gsk {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.gsk__logo {
    width: 13.887rem;
}

.gsk__name {
    font-weight: 700;
}

.gsk__address {
    font-size: 1.4rem;
}

.gsk-code {
    font-size: 1.4rem;
}

.footer-gsk {
    padding: 2rem 0;
}

.gsk-links {
    display: flex;
    gap: 2rem 5.8rem;
    flex-wrap: wrap;
}



/* ## home */
/* # hero */
section.hero {
    padding: 0;
    padding-top: 50px;
    background: center / cover no-repeat url(../images/bg-hero.png);
}

section.hero .flex {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 64px;
}

.hero__text {
    flex-shrink: 0;
    color: var(--purple-100);
    padding: 162px 0;
}

.hero__text-deco {
    font-size: 3.1rem;
    font-weight: 500;
}

.hero__text-title {
    margin: 0 0 40px;
    font-size: 7.6rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero__text-title span {
    font-size: 13rem;
    line-height: 0.9;
    font-weight: 900;
}

.hero__text-title sup {
    position: relative;
    top: -5.5rem;
    font-size: 3.1rem;
}

.hero__text-desc {
    margin-bottom: 40px;
    font-size: 2.4rem;
    font-weight: 500;
}

.hero__footnote {
    color: var(--gray-100);
}

.model {
    position: relative;
}

.model__img {
    display: block;
    max-width: 475px;
    width: calc((475 / 1440) * 100 * 1vw);
}

.main-heading {
    font: var(--main-heading);
    color: var(--purple-100);
    word-wrap: normal;
}

.main-heading em {
    font-weight: 900;
}

.main-heading .is-img {
    display: inline-flex;
    align-items: center;
}

.main-heading__img {
    display: block;
    width: 6.6rem;
    height: 6.6rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.sub-heading {
    font: var(--sub-heading);
    color: var(--purple-100);
}

.sub-heading em {
    font-weight: 900;
}

.desc {
    font: var(--body);
}


/* ## img 관련 */
.img-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.img__heading {
    width: 100%;
    padding: 2.8rem 1rem 0rem 1rem;
    font: var(--img-heading);
    color: var(--purple-100);
    text-align: center;
    border-radius: 0.4rem 0rem 0rem 0rem;
    border-top: 1px solid var(--PURPLE-80, #784CA6);
    border-left: 1px solid var(--PURPLE-80, #784CA6);
}

.img__heading em {
    font-weight: 900;
}

.img__heading small {
    font-weight: 400;
    display: inline-block;
}

.img__desc {
    font: var(--img-desc);
    color: var(--purple-100);
    text-align: center;
}

.img__desc small {
    display: block;
    font: var(--img-desc-small);
    color: var(--gray-60);
}

.img__lung {
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
}

.img__upper,
.img__lower,
.img__transmit-paths {
    max-width: 130rem;
    width: 100%;
    margin: 0 auto;
}

.img__old,
.img__chronic {
    max-width: 26.9rem;
    width: 100%;
}

/* ## 리스트 */
.check-list {
    --w: 4.1rem;
    position: relative;
    padding-left: var(--w);
}

.check-list+.check-list {
    margin-top: 26px;
}

.check-list::before {
    content: '';
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 0.5rem;
    left: 0;
    background: center /cover no-repeat url(../images/check.png);
}

.check-list__title {
    font: var(--sub-heading);
    color: var(--purple-100);
}

.check-list__desc {
    margin-top: 10px;
    font: var(--body);
}

/* ## 5세 미만 65세 이상 관련 */
.age-data-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: fit-content;
    margin: 0 auto;
}

.age-data-wrap--purple {
    --c: var(--purple-100)
}

.age-data-wrap--teal {
    --c: var(--teal-100)
}

.age-data__heading {
    display: flex;
    padding: 1rem 2.6rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font: var(--img-desc);
    color: var(--purple-100);
    border-bottom: 1px solid var(--purple-100);
}

.age-data__heading img {
    width: 4.7rem;
    height: 4.7rem;
    object-fit: contain;
}

.age-data__body {
    display: flex;
    justify-content: center;
    gap: 6rem;
    width: fit-content;
}

.age-data-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.age-data__img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
}

.age-data__desc {
    font: var(--body);
    position: relative;
    color: var(--purple-100);
}

.age-data__desc em {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--teal-100);
}

.age-data__desc mark {
    font-weight: 700;
}

.age-data__desc small {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    font-size: 1.2rem;
}

/* ## rsv 위험성 관련 */
.per-data-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    min-width: 54.6rem;
}

.per-data__heading {
    padding: 2rem 2.6rem;
    font: var(--img-desc);
    color: var(--purple-100);
    text-align: center;
    border-bottom: 1px solid var(--purple-100);
}

.per-data__body .flex__1xn {
    gap: 4rem;
}

.per-data-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.per-data__img {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
    margin-top: 0.5rem;
}

.per-data__desc {
    width: 100%;
    color: var(--purple-100);
    font-size: 2.6rem;
    position: relative;
}

.per-data__desc em {
    display: block;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--teal-100);
}

.per-data__desc mark {
    padding: 0 5px;
    font: var(--sub-heading);
    font-weight: 700;
}

.per-data__desc small {
    display: block;
    margin-top: 2px;
    font-size: 1.2rem;
    color: var(--gray-100);
}

.per-data__body+.footnote__items {
    margin-top: 2rem;
}

/* .per-data-wrap:first-child .per-data__body+.footnote__items {
    margin-top: 3.47rem;
} */

/* ## 작용기전 관련 */
.action-group {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
}

.action__img {
    max-width: 22rem;
    width: 100%;
    object-fit: contain;
}

.action__desc {
    padding-top: 2rem;
    font: var(--body);
    color: var(--purple-100);
}

/* ## 투여방법 */
.how-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.how__desc {
    text-align: center;
    font: var(--body);
}

.how__check {
    width: 4.5rem;
}


/* ## 아렉스비 효과 */
.img-group.effect-wrap {
    gap: 0;
}

.effect__heading {
    font-size: 2.6rem;
    padding-top: 1.4rem;
}

.effect-group {
    position: relative;
}

.effect__desc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    color: var(--purple-100);
    font-size: 1.4rem;
    text-align: center;
}

.effect__per {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.effect__per-num {
    font-size: 9rem;
    font-weight: 900;
    text-shadow: 5px 5px 8px rgba(160, 132, 190, 0.51);
}

.effect__bar {
    width: 3rem;
    height: 0.4rem;
    background-color: var(--purple-60);
    border-radius: 0.4rem;
}

.effect__step {
    font-size: 2.4rem;
    font-weight: 700;
}


/* ## FAQs */
.faqs-group {
    position: relative;
}

.faq-btn-group {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0 5rem 3rem;
    position: absolute;
    right: 0;
    bottom: 100%;
}

.faq-btn {
    color: var(--purple-100);
}

.faq {
    border-top: 2px solid var(--PURPLE-40, #CAB3E1);
}

.faq-btn {}

.faq__que {
    padding: 2.3rem 5rem 2.3rem 0;
    font: var(--body);
    font-weight: 700;
    color: var(--purple-100);
    cursor: pointer;
    position: relative;
    display: grid;
    place-content: start;
}

.faq__que::-webkit-details-marker {
    display: none;
    font-size: 0;
}

.faq__que::after {
    content: "";
    display: block;
    margin: 0 1.7rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: no-repeat url(../images/plus.svg);
    width: 1.6rem;
    height: 1.6rem;
}

.faq[open] .faq__que::after {
    background: no-repeat url(../images/minus.svg);

}

.faq__ans {
    margin-bottom: 2.3rem;
    color: var(--gray-100);
    font: var(--faq-body);
}

.faq__ans+.faq__ans {
    margin-top: -1.2rem;
}

.faq__ans+.footnote__items {
    margin-bottom: 2.3rem;
}


/* ## 배너 */
section.banner {
    padding-top: 0;
}

.solid-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    padding: 5rem 3.2rem;
    background-color: var(--teal-100);
}

.solid-banner .flex-row__center {
    gap: 1.2rem;
}

.solid-banner__crown {
    width: 4rem;
    height: 4.3rem;
    flex-shrink: 0;
}

.solid-banner__text {
    font: var(--sub-heading);
    font-weight: 700;
    color: #fff;
}

.solid-banner__arrow {
    width: 6.0834rem;
    height: 3.0403rem;
    flex-shrink: 0;
}

.line-banner {
    padding: 3.6rem 3.2rem;
    position: relative;
}

.line-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--gra3, linear-gradient(90deg, #0DA5B3 0%, #952C68 100%));
}

.line-banner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #952C68 0%, #0DA5B3 100%);
}

.line-banner__text {
    font: var(--sub-heading);
    font-weight: 700;
    color: var(--purple-100);
    text-align: center;
}

.line-banner__crown {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 5rem;
}

.cell-banner {
    display: flex;
    padding: 2rem 3rem;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: var(--purple-80);
    border-radius: 50px;
}

.cell-banner img:first-child {
    width: 4.7rem;
    height: 4.7rem;
    object-fit: contain;
}

.cell-banner img:last-child {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.cell-banner__desc {
    font: var(--img-heading);
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.cell-banner u {
    color: var(--yellow);
    text-decoration: none;
    box-shadow: inset 0 -1px 0 var(--yellow);
}

/* ## hr */
hr {
    width: clamp(290px, 60vw, 500px);
    /* max-width: 50rem;
    width: 100%; */
    height: 0.4rem;
    margin: 0 auto;
    border: none;
    border-radius: 0.4rem;
}

.hr--teal {
    background-color: var(--teal-40);
}

.hr--purple {
    background-color: var(--purple-40);
}


dialog {
    width: fit-content;
    min-width: 300px;
    height: fit-content;
    padding: 32px 32px 16px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    border: none;
    border-radius: 8px;
    font-size: 2.4rem;
    text-align: center;
    color: var(--gray-100);
}

dialog button {
    display: block;
    padding: 8px 16px;
    margin: 16px auto 0;
    background-color: var(--purple-100);
    color: #fff;
    border-radius: 8px;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

/* ---------- */
/* ### @media */
/* ---------- */
@media (pointer: fine) {
    .nav__item:is(:hover, :focus) .nav__items--2level {
        display: block;
    }

    .header--mob .nav__item:is(:hover, :focus) .nav__is2level::after,
    .header--mob .nav__is2level.active::after {
        transform: scaleY(-1);
        filter: none;
    }

    .header--dsk .nav__item:is(:hover, :focus),
    .header--dsk .nav__is2level.active {
        color: var(--teal-60);
    }

    .nav__1level.on {
        color: var(--teal-60);
    }

}

@media (pointer: coarse) {
    .nav__is2level.active::after {
        transform: scaleY(-1);
        filter: none;
    }
}

@media (max-width: 1280px) {
    .hero__text {
        padding-top: 70px;
    }
}

@media (max-width: 1080px) {

    /* ## home */
    /* # hero */
    section.hero {
        padding-top: 40px;
    }

    section.hero .flex {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    *[class^="hero__text-"],
    *[class^="hero__text-"] span {
        font-size: calc((var(--fs) / 414) * 100 * 1vw);
    }

    .hero__text {
        padding: 0;
    }

    .hero__text-deco,
    *[class^="hero__text"] sup {
        --fs: 16;
    }

    .hero__text-title {
        --fs: 39;
        margin: 0;
    }

    .hero__text-title span {
        --fs: 72;
    }

    .hero__text-title sup {
        font-size: 1.6rem;
        bottom: 8vw;
        top: auto;
    }

    .hero__text-group {
        width: 50%;
        position: absolute;
        margin-top: 10px;
    }

    .hero__text-desc {
        --fs: 20;

    }

    .hero__footnote {
        width: 80%;
    }

    .model {
        width: 100%;
        display: inline-flex;
        justify-content: flex-end;
    }

    .model__img {
        max-width: calc((258 / 414) * 100 * 1vw);
        width: 100%;
        min-width: auto;
    }
}

@media all and (max-width: 991px) {
    :root {
        --main-heading: 900 4rem/1.2 'Paperlogy', sans-serif;
        --sub-heading: 900 2.8rem / 1.2 'Paperlogy', sans-serif;
        --img-heading: 900 2.4rem / 1.2 'Paperlogy', sans-serif;
        --img-desc: 700 2.2rem/ 1.3 'Paperlogy', sans-serif;
        --img-desc-small: 500 1.8rem/ 1.3 'Paperlogy', sans-serif;
        --body: 400 2.2rem / 1.3 'Paperlogy', sans-serif;
        --faq-body: 400 2rem / 1.5 'Paperlogy', sans-serif;
        --py: 6rem;
    }


    .grid__3-1 {
        grid-template-columns: 1fr;
    }

    .flex__1xn {
        /* gap: 2rem; */
        flex-wrap: wrap;
    }

    .flex-column {
        gap: 3rem;
    }

    .container {
        padding: 0 16px;
    }

    section {
        scroll-margin-top: var(--py);
    }

    .only-dsk {
        display: none;
    }

    .only-mo {
        display: block;
    }


    .header--dsk {
        display: none;
    }

    .header--mob {
        display: block;
    }

    /* ## references */
    .references {
        padding: calc(var(--py)) 0;
    }

    /* ## footer */
    .footer-arexvy__gsk {
        flex-direction: column;
    }

    .footer-gsk {
        padding: 2rem 0 16rem;
    }

    .gsk-links {
        justify-content: center;
        gap: 2rem;
    }

    /* ## footnote */


    .main-heading__img {
        width: 4rem;
        height: 4rem;
        margin-left: 0.4rem;
    }


    .check-list {
        --w: 3rem;
    }

    .check-list::before {
        top: 0.3rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    /* ## data 관련 */
    .age-data__heading img {
        width: 3rem;
        height: 3rem;
    }

    .age-data__body {
        gap: 1rem;
        flex-direction: column;
    }

    .age-data-group {
        gap: 2rem;
    }

    .age-data__img {
        width: 5rem;
        height: 5rem;
    }

    .age-data__desc small {
        position: relative;
        display: block;
    }

    .per-data__heading {
        padding: 2rem 1rem;
    }

    .per-data-wrap {
        min-width: auto;
        width: min(100%, 500px);
    }

    .per-data__body .flex__1xn {
        flex-wrap: nowrap;
    }

    .per-data-group {
        flex-direction: column;
        align-items: center;
        justify-self: center;
    }

    .per-data__img {
        margin-top: 0;
    }

    .per-data__desc {
        text-align: center;
    }

    .per-data__body+.footnote__items,
    .per-data-wrap:first-child .per-data__body+.footnote__items {
        margin-top: 0;
    }

    /* ## 작용기전 관련 */
    .action-group {
        flex-direction: column;
        align-items: center;
    }

    /* ## 투여방법 */
    .how-group {
        width: 100%;
        flex: auto;
    }

    .how__img {
        width: min(100%, 35rem);
    }

    /* ## 아렉스비 효과 */
    .effect__heading {
        font-size: 2.4rem;
    }

    .effect__per-num {
        font-size: 7rem;
    }

    .effect__img {
        width: min(100%, 500px);
        margin: 0 auto;
    }

    /* ## FAQs */
    .faq-btn-group {
        position: unset;
        padding: 0 0 2.3rem;
        justify-content: flex-end;
    }

    /* ## img 관련*/
    .img-group {
        gap: 3rem;
    }

    .img__coughing-figure {
        width: min(90%, 400px);
        margin: 0 auto;
    }

    .img__heading {
        padding: 1.4rem 1rem 0rem 1rem;
    }

    .img__desc {
        margin-top: -2.5rem;
    }

    .img__old,
    .img__chronic {
        max-width: none;
        width: 100%;
    }

    /* ## 배너 */
    .solid-banner {
        justify-content: space-between;
        padding: 2.4rem;
        background-color: var(--teal-100);
    }

    .solid-banner__crown {
        width: 3.7rem;
        height: 4rem;
    }

    .solid-banner__text {
        font-size: 2.4rem;
    }

    .solid-banner__text span {
        white-space: nowrap;
    }

    .solid-banner__arrow {
        width: 2.7991rem;
        height: 1.4547rem;
    }

    .cell-banner {
        padding: 1.6rem 2.2rem;
    }

    .cell-banner img:first-child {
        width: 2.5rem;
        height: 2.5rem;
    }

    .cell-banner img:last-child {
        width: 2rem;
        height: 2rem;
    }

    .cell-banner__desc {
        font-size: 2rem;
    }
}