/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6em;
    background: #fff;
    color: #444;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

input, textarea, select {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #444;
    text-decoration: none;
    transition: opacity .4s ease;
}
a:hover {
    opacity: .7;
}

a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

.is-tab {
    display: none;
}

.is-sp {
    display: none;
}

.wrapper {
    padding-top: 110px;
}

@media only screen and (max-width: 1024px) {
    .is-tab {
        display: block;
    }
    .wrapper {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    a:hover {
        opacity: 1;
    }
    a[href^="tel:"] {
        pointer-events: auto;
        cursor: pointer;
    }
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-inner {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
}

@media only screen and (max-width: 767px) {
    .l-inner {
        padding: 0 clamp(10px, 4.54545vw, 20px);
    }
}

.l-w760 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.l-w720 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.l-w700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.l-grid {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== ttl ========== */
.c-ttl01 .en, .c-ttl01 .ja {
    display: block;
}

.c-ttl01 .en {
    font-family: "arboria", sans-serif;
    font-size: 4.8rem;
    color: #49c5b1;
    letter-spacing: .2em;
    line-height: 1.1;
}

.c-ttl01 .ja {
    margin-top: 1.5em;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .c-ttl01 .en {
        font-size: clamp(2.1rem, 9.54545vw, 4.2rem);
    }
    .c-ttl01 .ja {
        margin-top: 1em;
    }
}

.c-ttl02 {
    color: #49c5b1;
    font-weight: 700;
    text-align: center;
    font-size: 3.6rem;
    letter-spacing: .1em;
}

@media only screen and (max-width: 767px) {
    .c-ttl02 {
        font-size: 2.8rem;
    }
}

/* ========== btn ========== */
.c-btn01 {
    display: inline-block;
    width: 400px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #49c5b1;
    border-radius: 40px;
    color: #49c5b1;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .1em;
    transition: .3s;
    position: relative;
}
.c-btn01 > span {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
}
.c-btn01.tel:after {
    content: "";
    width: 21px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url(../images/common/ico-tel-bl.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: .3s;
}
.c-btn01.tel span {
    padding-left: 20px;
}
.c-btn01.mail:after {
    content: "";
    width: 21px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url(../images/common/ico-mail-bl.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: .3s;
}
.c-btn01.mail span {
    padding-left: 20px;
}
.c-btn01.line:after {
    content: "";
    width: 21px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url(../images/common/ico-line.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: .3s;
}
.c-btn01.line span {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .c-btn01 {
        font-size: clamp(1rem, 3.40909vw, 1.5rem);
    }
}

.c-btn02 {
    display: inline-block;
    width: 320px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #49c5b1;
    border-radius: 40px;
    color: #49c5b1;
    font-weight: 500;
    letter-spacing: .1em;
    position: relative;
    transition: .3s;
}
.c-btn02 > span {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.c-btn02.pdf:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    top: 55%;
    right: 22px;
    transform: translateY(-50%);
    background-image: url(../images/common/ico-pdf-bl.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: .3s;
}

@media only screen and (max-width: 767px) {
    .c-btn02 {
        width: 340px;
    }
    .c-btn02 > span {
        height: 60px;
    }
}

.c-btn03 {
    display: inline-block;
    width: 400px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #49c5b1;
    border-radius: 40px;
    color: #49c5b1;
    font-weight: 500;
    letter-spacing: .1em;
    transition: .3s;
    position: relative;
}
.c-btn03 > span {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.c-btn04 {
    display: inline-block;
    width: 400px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #49c5b1;
    border-radius: 40px;
    letter-spacing: 0;
    position: relative;
}
.c-btn04 > span {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
}

/* ========== list ========== */
.c-list01 {
    border-top: 1px solid #49c5b1;
}
.c-list01__item {
    border-bottom: 1px solid #49c5b1;
}
.c-list01 a {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: .2em;
    padding: 1em 1em 1em 0;
    position: relative;
}
.c-list01 a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 18px;
    background: url(../images/common/arrow-r01.svg) no-repeat center center;
    background-size: 100%;
}

@media only screen and (max-width: 767px) {
    .c-list01 a {
        letter-spacing: .1em;
        font-size: clamp(1.2rem, 5.45455vw, 2.4rem);
    }
}

.c-list02 {
    gap: 30px 2%;
}
.c-list02__item {
    width: 32%;
}
.c-list02__item img {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .c-list02 {
        gap: 30px 4%;
    }
    .c-list02__item {
        width: 48%;
    }
}

@media only screen and (max-width: 767px) {
    .c-list02 {
        gap: 20px 0;
    }
    .c-list02__item {
        width: 100%;
    }
}

.c-list03 {
    gap: 0 4%;
}
.c-list03__item {
    width: 48%;
}
.c-list03__item:nth-child(1), .c-list03__item:nth-child(2) {
    border-top: 1px solid #49c5b1;
}
.c-list03__item a {
    display: flex;
    align-items: center;
    height: 72px;
    border-bottom: 1px solid #49c5b1;
    position: relative;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 0 1em 0 .5em;
}
.c-list03__item a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url(../images/common/arrow-r01.svg) no-repeat center center;
    background-size: 100%;
}

@media only screen and (max-width: 767px) {
    .c-list03__item a {
        font-size: 1.6rem;
        padding-left: 0;
    }
    .c-list03__item.sp-l {
        width: 100%;
    }
    .c-list03__item.sp-l:nth-child(2) {
        border-top: none;
    }
}

/* ========== btnlist ========== */
.c-btnlist {
    justify-content: center;
}
.c-btnlist.col-2 {
    gap: 25px 40px;
}
.c-btnlist.col-3 {
    gap: 20px 30px;
}
.c-btnlist.col-3 .c-btnlist__item {
    max-width: 300px;
}

@media only screen and (max-width: 767px) {
    .c-btnlist.col-2 {
        gap: 20px 0;
    }
    .c-btnlist.col-2 .c-btnlist__item {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .c-btnlist.col-3 {
        gap: 20px 0;
    }
    .c-btnlist.col-3 .c-btnlist__item {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
}

/* ========== nav ========== */
.c-nav01 {
    justify-content: space-between;
}
.c-nav01__item {
    cursor: pointer;
    width: 47.5%;
    text-align: center;
    color: #828282;
    border: 1px solid #828282;
    font-size: 1.8rem;
    padding: 1.2em 0;
    font-weight: 700;
    letter-spacing: .1em;
    border-radius: 13px;
}
.c-nav01__item.is-active {
    background: #49c5b1;
    color: #fff;
    border-color: #49c5b1;
}

.c-nav02 {
    gap: 20px 4%;
}
.c-nav02__item {
    cursor: pointer;
    width: 22%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #828282;
    border: 1px solid #828282;
    font-weight: 500;
    border-radius: 13px;
}
.c-nav02__item.is-active, .c-nav02__item.current, .c-nav02__item.ui-tabs-active {
    background: #49c5b1;
    color: #fff;
    border-color: #49c5b1;
}
.c-nav02__item.is-active a, .c-nav02__item.current a, .c-nav02__item.ui-tabs-active a {
    color: #fff;
}
.c-nav02__item a {
    color: #828282;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .c-nav02 {
        gap: 15px 5%;
    }
    .c-nav02__item {
        width: 47.5%;
        height: 52px;
    }
}

/* ========== hoge ========== */
/* ========== doctorlist ========== */
.c-doctorlist {
    gap: 30px 9.5%;
}
.c-doctorlist__item {
    width: 27%;
    text-align: center;
    -ms-order: 2;
        order: 2;
}
.c-doctorlist__item .item-img {
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.c-doctorlist__item .item-img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.c-doctorlist__item .item-name {
    font-weight: 500;
    letter-spacing: .1em;
    color: #222;
    padding: 1em 0;
}
.c-doctorlist__item .item-sns {
    gap: 10px 16px;
    justify-content: center;
}
.c-doctorlist__item .item-sns a {
    display: block;
    width: 26px;
}
.c-doctorlist__item .item-sns i {
    display: block;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.c-doctorlist__item .item-sns .instagram {
    background-image: url(../images/common/ico-instagram-gr.svg);
}
.c-doctorlist__item .item-sns .facebook {
    background-image: url(../images/common/ico-facebook-gr.svg);
}
.c-doctorlist__item .item-sns .x {
    background-image: url(../images/common/ico-x-gr.svg);
}
.c-doctorlist__item .item-sns .youtube {
    background-image: url(../images/common/ico-youtube-gr.svg);
}
.c-doctorlist__item .item-sns .tiktok {
    background-image: url(../images/common/ico-tiktok-gr.svg);
}
.c-doctorlist__item .item-sns .blog {
    background-image: url(../images/common/ico-blog-gr.svg);
}
.c-doctorlist__item .item-sns .line {
    background-image: url(../images/common/ico-line-gr.svg);
}
.c-doctorlist__item .item-category {
    margin-top: 20px;
    gap: 10px 10px;
}
.c-doctorlist__item .item-category span {
    border: 1px solid #49c5b1;
    color: #49c5b1;
    font-size: 1.3rem;
    font-weight: 500;
    padding: .3em 1.2em;
    border-radius: 30px;
    letter-spacing: 0;
    display: none;
}
.c-doctorlist__item .item-category span:nth-child(1), .c-doctorlist__item .item-category span:nth-child(2), .c-doctorlist__item .item-category span:nth-child(3), .c-doctorlist__item .item-category span:nth-child(4) {
    display: block;
}
.c-doctorlist__item--top {
    width: 100%;
    margin-bottom: 30px;
    background: #49c5b1;
    color: #fff;
    padding: 40px;
    border-radius: 13px;
    -ms-order: 1;
        order: 1;
}
.c-doctorlist__item--top:last-child {
    margin-bottom: 0;
}
.c-doctorlist__item--top .item-head {
    align-items: flex-end;
}
.c-doctorlist__item--top .item-head__profile {
    width: calc(100% - 160px);
    padding-bottom: 15px;
}
.c-doctorlist__item--top .item-head__img {
    margin-left: auto;
    width: 160px;
    height: 160px;
}
.c-doctorlist__item--top .item-head__img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.c-doctorlist__item--top .item-head .area {
    font-size: 1.3rem;
    margin-bottom: 1em;
}
.c-doctorlist__item--top .item-head .name {
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: .1em;
}
.c-doctorlist__item--top .item-head .sns {
    gap: 10px 16px;
}
.c-doctorlist__item--top .item-head .sns a {
    display: block;
    width: 26px;
}
.c-doctorlist__item--top .item-head .sns i {
    display: block;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.c-doctorlist__item--top .item-head .sns .instagram {
    background-image: url(../images/common/ico-instagram-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .facebook {
    background-image: url(../images/common/ico-facebook-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .x {
    background-image: url(../images/common/ico-x-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .youtube {
    background-image: url(../images/common/ico-youtube-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .tiktok {
    background-image: url(../images/common/ico-tiktok-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .blog {
    background-image: url(../images/common/ico-blog-wh.svg);
}
.c-doctorlist__item--top .item-head .sns .line {
    background-image: url(../images/common/ico-line-wh.svg);
}
.c-doctorlist__item--top .item-txt {
    margin-top: 35px;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 30px 20px;
    font-size: 1.3rem;
    line-height: 1.6;
}
.c-doctorlist__item--top .item-txt:empty {
    border: none;
    margin: 0;
    padding: 0;
}
.c-doctorlist__item--top .item-category {
    margin-top: 45px;
    gap: 12px 12px;
}
.c-doctorlist__item--top .item-category span {
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    padding: .3em 1.2em;
    border-radius: 30px;
    letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
    .c-doctorlist {
        gap: 50px 5%;
    }
    .c-doctorlist__item {
        width: 47.5%;
    }
    .c-doctorlist__item .item-sns a {
        width: 24px;
    }
    .c-doctorlist__item--top {
        margin-bottom: 0;
        padding: 40px 20px;
    }
    .c-doctorlist__item--top .item-head .area {
        font-size: clamp(1rem, 2.95455vw, 1.3rem);
    }
    .c-doctorlist__item--top .item-head .name {
        margin-bottom: 25px;
        font-size: clamp(1.2rem, 5.45455vw, 2.4rem);
    }
    .c-doctorlist__item--top .item-head .sns a {
        width: 24px;
    }
    .c-doctorlist__item--top .item-txt {
        margin-top: 20px;
    }
    .c-doctorlist__item--top .item-category {
        margin-top: 40px;
    }
}

/* ========== search ========== */
.c-search__nav .nav-list {
    gap: 20px clamp(12px, 1.66667vw, 24px);
    justify-content: center;
}
.c-search__nav .nav-list__item {
    width: clamp(100px, 9.72222vw, 140px);
}
.c-search__nav .nav-list__item a {
    display: block;
    text-align: center;
    color: #222;
}
.c-search__nav .nav-list .item-icon span {
    border: 1px solid #49c5b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: auto;
}
.c-search__nav .nav-list .item-icon img {
    width: auto;
    height: 30px;
}
.c-search__nav .nav-list .item-label {
    margin-top: 1em;
    font-weight: 500;
    font-size: clamp(1.3rem, 1.25vw, 1.8rem);
}

.c-search__keywords {
    margin-top: 55px;
    text-align: center;
}
.c-search__keywords .keywords-form {
    display: inline-block;
    width: 480px;
    position: relative;
    text-align: left;
}
.c-search__keywords .keywords-form input[type="text"] {
    height: 50px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #49c5b1;
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}
.c-search__keywords .keywords-form ::-moz-placeholder {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}
.c-search__keywords .keywords-form :-ms-input-placeholder {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}
.c-search__keywords .keywords-form ::-ms-input-placeholder {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}
.c-search__keywords .keywords-form ::placeholder {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
}
.c-search__keywords .keywords-form input[type="submit"] {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -11px;
    width: 22px;
    height: 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: url(../images/common/ico-search-bl.svg) no-repeat center;
    background-size: 100%;
}

@media only screen and (max-width: 767px) {
    .c-search__nav .nav-list {
        gap: 20px 2%;
    }
    .c-search__nav .nav-list__item {
        width: 32%;
        padding: 20px 0 10px;
    }
    .c-search__nav .nav-list .item-icon span {
        width: 12.27273vw;
        height: 12.27273vw;
    }
    .c-search__nav .nav-list .item-icon img {
        height: 5.45455vw;
    }
    .c-search__nav .nav-list .item-label {
        font-size: clamp(1rem, 3.63636vw, 1.6rem);
    }
    .c-search__keywords {
        margin-top: 40px;
    }
    .c-search__keywords .keywords-form {
        width: 90%;
    }
    .c-search__keywords .keywords-form input[type="text"] {
        font-size: 1.6rem;
    }
    .c-search__keywords .keywords-form ::-moz-placeholder {
        font-size: 1.6rem;
    }
    .c-search__keywords .keywords-form :-ms-input-placeholder {
        font-size: 1.6rem;
    }
    .c-search__keywords .keywords-form ::-ms-input-placeholder {
        font-size: 1.6rem;
    }
    .c-search__keywords .keywords-form ::placeholder {
        font-size: 1.6rem;
    }
}

.js-tabNav li {
    cursor: pointer;
}

.js-acTrigger {
    cursor: pointer;
}

.js-acHide {
    display: none;
}

.js-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 10000;
}
.js-modalOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.js-modalOuter {
    display: table;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}
.js-modalIn {
    display: table-cell;
    vertical-align: middle;
    padding: 40px 20px;
}
.js-modalContent {
    position: relative;
    max-width: 720px;
    margin: auto;
    box-sizing: border-box;
    z-index: 1;
}
.js-modalOpen {
    cursor: pointer;
}
.js-modalClose {
    cursor: pointer;
    position: absolute;
    top: -40px;
    right: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 28px;
    height: 28px;
    background: url(../images/common/ico-close.svg) no-repeat;
    background-size: 100%;
}

/*------------------------------------------
  header
------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.header-inner {
    height: 110px;
    padding: 0 clamp(20px, 2.77778vw, 40px);
    align-items: center;
    position: relative;
    z-index: 10;
    background: #fff;
}
.header-logo {
    width: clamp(130px, 18.05556vw, 218px);
}
.header-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8fcfb;
    position: relative;
    cursor: pointer;
    margin-left: clamp(25px, 3.47222vw, 80px);
    box-shadow: 0px 0px 2px 0px rgba(73, 197, 177, .5);
}
.header-trigger__icon {
    width: 26px;
    height: 13px;
    position: relative;
    margin: 13px auto 0;
}
.header-trigger__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #49c5b1;
    transition: .3s;
}
.header-trigger__icon span:nth-child(1) {
    left: 0;
}
.header-trigger__icon span:nth-child(2) {
    bottom: 0;
}
.header-trigger__label {
    text-align: center;
    line-height: 1;
    color: #333;
    font-size: 8px;
    font-family: "arboria", sans-serif;
    margin: .6em 0 0;
}
.header-trigger__label:after {
    content: "MENU";
}
.header-trigger.is-active .header-trigger__icon span:nth-child(1) {
    transform: translateY(5.5px) rotate(-25deg);
}
.header-trigger.is-active .header-trigger__icon span:nth-child(2) {
    transform: translateY(-5.5px) rotate(25deg);
}
.header-trigger.is-active .header-trigger__label:after {
    content: "CLOSE";
}
.header-contents {
    display: none;
    width: 100%;
    height: 100vh;
    -ms-overflow-y: auto;
        overflow-y: auto;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 140px 0 70px;
}
.header-menu {
    max-width: 890px;
}
.header-menu__top {
    text-align: center;
    margin-bottom: 50px;
}
.header-menu__top a {
    display: inline-block;
    width: 270px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #49c5b1;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: .1em;
    transition: .3s;
    position: relative;
}
.header-menu__top a:after {
    content: "";
    width: 21px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url(../images/common/ico-home-bl.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    transition: .3s;
}
.header-menu__top a > span {
    display: flex;
    width: 100%;
    height: 54px;
    align-items: center;
    justify-content: center;
}
.header-menu__search .c-search__nav .nav-list__item {
    width: clamp(100px, 8.33333vw, 120px);
}
.header-menu__search .c-search__nav .nav-list .item-icon span {
    width: 54px;
    height: 54px;
}
.header-menu__search .c-search__nav .nav-list .item-icon img {
    height: 22px;
}
.header-menu__search .c-search__nav .nav-list .item-label {
    font-size: clamp(1.3rem, 1.11111vw, 1.6rem);
}
.header-menu__search .c-search__keywords .keywords-form {
    width: 400px;
}
.header-menu__search .c-search__keywords .keywords-form input[type="text"] {
    font-size: 1.6rem;
}
.header-menu__search .c-search__keywords .keywords-form ::-moz-placeholder {
    font-size: 1.6rem;
}
.header-menu__search .c-search__keywords .keywords-form :-ms-input-placeholder {
    font-size: 1.6rem;
}
.header-menu__search .c-search__keywords .keywords-form ::-ms-input-placeholder {
    font-size: 1.6rem;
}
.header-menu__search .c-search__keywords .keywords-form ::placeholder {
    font-size: 1.6rem;
}
.header-menu__contact {
    margin: 60px 0 0;
}
.header-menu__contact .contact-list {
    gap: 0 2%;
}
.header-menu__contact .contact-list li {
    width: 32%;
}
.header-menu__contact .contact-list .c-btn01 {
    font-size: clamp(1rem, 1.52778vw, 1.3rem);
    letter-spacing: 0;
}
.header-menu__contact .contact-list .c-btn01 span {
    height: 54px;
}
.header-menu__nav {
    margin: 55px 0 0;
}
.header-menu__nav .nav-list {
    gap: 0 5%;
}
.header-menu__nav .nav-list li {
    width: 30%;
    font-size: 1.4rem;
    border-bottom: 1px solid #49c5b1;
}
.header-menu__nav .nav-list li:nth-child(1), .header-menu__nav .nav-list li:nth-child(2), .header-menu__nav .nav-list li:nth-child(3) {
    border-top: 1px solid #49c5b1;
}
.header-menu__nav .nav-list a {
    display: flex;
    height: 56px;
    width: 100%;
    padding-right: 1em;
    position: relative;
    align-items: center;
}
.header-menu__nav .nav-list a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url(../images/common/arrow-r01.svg) no-repeat center center;
    background-size: 100%;
}
.header-menu__sns {
    margin: 40px 0 0;
}
.header-menu__sns .sns-list {
    gap: 0 50px;
    justify-content: center;
}
.header-menu__sns .sns-list li {
    width: 26px;
}

@media only screen and (max-width: 1024px) {
    .header-inner {
        padding: 0 20px 0 7px;
        height: 90px;
    }
    .header-logo {
        width: 218px;
    }
    .header-trigger {
        margin-left: auto;
    }
    .header-contents {
        padding: 120px 0;
    }
}

@media only screen and (max-width: 767px) {
    .header-menu__top {
        margin-bottom: 20px;
    }
    .header-menu__top a {
        width: 85%;
    }
    .header-menu__search .c-search__nav .nav-list {
        gap: 15px 2%;
    }
    .header-menu__search .c-search__nav .nav-list__item {
        width: 32%;
    }
    .header-menu__search .c-search__nav .nav-list .item-icon span {
        width: 12.27273vw;
        height: 12.27273vw;
    }
    .header-menu__search .c-search__nav .nav-list .item-icon img {
        height: 5vw;
    }
    .header-menu__search .c-search__nav .nav-list .item-label {
        font-size: clamp(1rem, 3.63636vw, 1.6rem);
    }
    .header-menu__search .c-search__keywords {
        margin-top: 30px;
    }
    .header-menu__search .c-search__keywords .keywords-form {
        width: 85%;
    }
    .header-menu__contact {
        margin: 45px 0 0;
    }
    .header-menu__contact .contact-list {
        width: 85%;
        margin: auto;
        gap: 20px 0;
    }
    .header-menu__contact .contact-list li {
        width: 100%;
    }
    .header-menu__contact .contact-list .c-btn01 {
        width: 100%;
        font-size: 1.5rem;
    }
    .header-menu__nav .nav-list {
        width: 90%;
        margin: auto;
        gap: 0 4%;
    }
    .header-menu__nav .nav-list li {
        width: 48%;
        font-size: 1.3rem;
    }
    .header-menu__nav .nav-list li:nth-child(3) {
        border-top: none;
    }
}

.gnav {
    margin-left: auto;
}
.gnav-list {
    gap: 0 clamp(15px, 2.08333vw, 40px);
}
.gnav-list__item a {
    display: block;
    text-align: center;
    font-size: clamp(1rem, 1.18056vw, 1.5rem);
    font-weight: 500;
    letter-spacing: .1em;
}
.gnav-list__item span {
    display: block;
    color: #828282;
    font-size: clamp(1rem, .97222vw, 1.3rem);
    font-family: "arboria", sans-serif;
    letter-spacing: .2em;
}

@media only screen and (max-width: 1024px) {
    .gnav {
        display: none;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.footer {
    padding: 60px 0 140px;
}
.footer-logo img {
    width: 360px;
    transform: translateX(-19px);
}
.footer-nav {
    padding: 20px 0;
}
.footer-nav__list {
    gap: 0 1.25%;
}
.footer-nav__list li {
    width: 19%;
    font-size: 1.3rem;
    border-top: 1px solid #49c5b1;
}
.footer-nav__list .nav-item--top {
    font-size: 1.4rem;
}
.footer-nav__list a {
    display: flex;
    height: 60px;
    width: 100%;
    padding-right: 1em;
    position: relative;
    align-items: center;
}
.footer-nav__list a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url(../images/common/arrow-r01.svg) no-repeat center center;
    background-size: 100%;
}
.footer-sns {
    padding: 30px 0;
}
.footer-sns__list {
    gap: 0 50px;
    justify-content: center;
}
.footer-sns__list li {
    width: 26px;
}
.footer-copy {
    margin: 30px 0 0;
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 0;
}

@media only screen and (max-width: 1024px) {
    .footer-nav__list {
        gap: 0 2%;
    }
    .footer-nav__list li {
        width: 32%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 60px 0 120px;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-logo img {
        width: 400px;
        transform: translateX(0);
    }
    .footer-nav {
        padding: 20px 0;
    }
    .footer-nav__list {
        gap: 0 5%;
    }
    .footer-nav__list li {
        font-weight: 500;
        width: 47.5%;
        font-size: 1.5rem;
    }
    .footer-nav__list .nav-item--top {
        width: 100%;
        font-size: 1.5rem;
    }
    .footer-nav__list a {
        height: 56px;
    }
    .footer-nav__list a:after {
        width: 5px;
        height: 10px;
    }
    .footer-sns {
        padding: 30px 0;
    }
    .footer-sns__list {
        gap: 0 clamp(25px, 11.36364vw, 50px);
    }
    .footer-sns__list img {
        width: clamp(13px, 5.90909vw, 26px);
    }
    .footer-copy {
        margin: 30px 0 0;
        font-size: 1.3rem;
    }
}

.fixed-nav {
    display: flex;
    gap: 0 34px;
    align-items: center;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}
.fixed-nav__menu {
    width: 262px;
    height: 50px;
    background: #49c5b1;
    border: 1px solid #fff;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
}
.fixed-nav__menu .menu-label {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
}
.fixed-nav__menu .menu-list {
    display: flex;
    gap: 0 20px;
}
.fixed-nav__menu .menu-list a {
    display: block;
}
.fixed-nav__pagetop {
    width: 50px;
}
.fixed-nav__pagetop a {
    display: none;
}

@media only screen and (max-width: 767px) {
    .fixed-nav {
        gap: 0 14px;
        bottom: 25px;
        right: 25px;
    }
}

.sp-pagetop a {
    display: block;
    color: #fff;
    background: #49c5b1;
    text-align: center;
    position: relative;
    font-size: 1.3rem;
    padding: 20px;
}

.sp-pagetop span {
    display: inline-block;
    padding: 30px 0 0;
    background: url(../images/common/btn-pagetop-sp.svg) no-repeat center top;
    background-size: 24px;
}

/*------------------------------------------
  contents
------------------------------------------*/
/* ========== section ========== */
.sec {
    padding: 120px 0;
    position: relative;
    background-color: #fff;
}
.sec:nth-child(2n) {
    background-color: rgba(73, 197, 177, .1);
}
.sec.bg-type01 {
    background-color: #49c5b1;
}
.sec.bg-type02 {
    background-color: rgba(73, 197, 177, .1);
}
.sec.bg-type03 {
    background-color: #fff;
}
.sec-inner {
    position: relative;
}
.sec-ttl {
    margin-bottom: 60px;
}
.sec-more {
    text-align: center;
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .sec {
        padding: 60px 0;
    }
    .sec-ttl {
        margin-bottom: 60px;
    }
    .sec-more {
        margin-top: 40px;
    }
}

/* ========== SELECTION ========== */
.sec--selection ::-webkit-scrollbar {
    display: none;
}

.sec--selection .selection-bnr {
    cursor: move;
}
.sec--selection .selection-bnr__inner {
    padding-right: 25px;
    padding-left: calc((100vw - 1390px) / 2);
}
.sec--selection .selection-bnr__list {
    display: flex;
    gap: 0 clamp(15px, 2.08333vw, 30px);
}
.sec--selection .selection-bnr__list li {
    flex-shrink: 0;
    width: clamp(216px, 30vw, 432px);
}

@media only screen and (max-width: 1440px) {
    .sec--selection .selection-bnr__inner {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 1024px) {
    .sec--selection .selection-bnr__list {
        gap: 0 30px;
    }
    .sec--selection .selection-bnr__list li {
        width: 432px;
    }
}

@media only screen and (max-width: 767px) {
    .sec--selection .selection-bnr__inner {
        padding: 0 20px;
    }
    .sec--selection .selection-bnr__list {
        gap: 0 clamp(10px, 1.38889vw, 20px);
    }
    .sec--selection .selection-bnr__list li {
        width: clamp(170px, 77.27273vw, 340px);
    }
}

/* ========== COMMITMENT ========== */
.sec--commitment .sec-ttl {
    margin-bottom: 120px;
}
.sec--commitment .sec-ttl .en, .sec--commitment .sec-ttl .ja {
    color: #fff;
}

.sec--commitment .commitment-lead {
    text-align: center;
    font-size: 4.8rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 110px;
}

.sec--commitment .commitment-img {
    position: relative;
    text-align: center;
}
.sec--commitment .commitment-img__inner {
    position: relative;
}
.sec--commitment .commitment-img img {
    width: 1280px;
}

.sec--commitment .commitment-btn {
    margin-top: 80px;
    text-align: center;
}
.sec--commitment .commitment-btn a {
    width: 360px;
}

.sec--commitment .commitment-point {
    position: relative;
}
.sec--commitment .commitment-point__item {
    padding: 120px 0;
    position: relative;
}
.sec--commitment .commitment-point__item .item-inner {
    position: relative;
    max-width: 1440px;
    margin: auto;
}
.sec--commitment .commitment-point__item .item-img {
    position: relative;
    width: 50%;
}
.sec--commitment .commitment-point__item .item-txt {
    position: relative;
    width: 50%;
    padding: clamp(35px, 4.86111vw, 70px);
}
.sec--commitment .commitment-point__item .item-txt__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}
.sec--commitment .commitment-point__item .item-txt__head .head-ttl {
    font-size: clamp(1.7rem, 2.36111vw, 3.4rem);
    font-weight: 700;
    color: #333;
    letter-spacing: .1em;
}
.sec--commitment .commitment-point__item .item-txt__head .head-num img {
    width: auto;
    max-width: none;
    height: clamp(68px, 9.44444vw, 136px);
}
.sec--commitment .commitment-point__item .item-txt__txt p {
    font-weight: 500;
    font-size: clamp(1rem, 1.38889vw, 2rem);
    line-height: 2;
    color: #666;
}
.sec--commitment .commitment-point__item:nth-child(odd) {
    background: #fff;
}
.sec--commitment .commitment-point__item:nth-child(even) .item-txt__head .head-ttl {
    color: #fff;
}
.sec--commitment .commitment-point__item:nth-child(even) .item-txt__txt p {
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .sec--commitment .commitment-point__item .item-txt {
        padding: 30px;
    }
    .sec--commitment .commitment-point__item .item-txt__head {
        margin-bottom: 20px;
    }
    .sec--commitment .commitment-point__item .item-txt__head .head-ttl {
        font-size: 2.4rem;
    }
    .sec--commitment .commitment-point__item .item-txt__txt p {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 767px) {
    .sec--commitment {
        padding-bottom: 70px;
    }
    .sec--commitment .sec-ttl {
        margin-bottom: 60px;
    }
    .sec--commitment .commitment-lead {
        font-size: 3.8rem;
        text-align: left;
        margin-bottom: 70px;
        padding: 0 20px;
    }
    .sec--commitment .commitment-img__inner {
        padding: 0;
    }
    .sec--commitment .commitment-btn {
        margin-top: 60px;
    }
    .sec--commitment .commitment-btn a {
        width: 400px;
    }
    .sec--commitment .commitment-point__item {
        padding: 60px 0 0;
    }
    .sec--commitment .commitment-point__item .item-img {
        width: 100%;
        -ms-order: 2;
            order: 2;
        padding: 0 20px;
        position: relative;
    }
    .sec--commitment .commitment-point__item .item-img:before {
        content: "";
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: -1px;
        left: 0;
        background: #49c5b1;
    }
    .sec--commitment .commitment-point__item .item-img img {
        position: relative;
    }
    .sec--commitment .commitment-point__item .item-txt {
        width: 100%;
        -ms-order: 1;
            order: 1;
        padding: 0 20px 60px;
    }
    .sec--commitment .commitment-point__item .item-txt__head {
        margin-bottom: 40px;
    }
    .sec--commitment .commitment-point__item .item-txt__head .head-ttl {
        font-size: clamp(1.3rem, 5.90909vw, 2.6rem);
        letter-spacing: 0;
        font-weight: 500;
    }
    .sec--commitment .commitment-point__item .item-txt__head .head-num img {
        height: clamp(55px, 25vw, 110px);
    }
    .sec--commitment .commitment-point__item .item-txt__txt p {
        font-size: 1.6rem;
    }
    .sec--commitment .commitment-point__item:first-child {
        padding-top: 84px;
    }
    .sec--commitment .commitment-point__item:nth-child(even) .item-img:before {
        background: #fff;
    }
}

/* ========== DOCTOR ========== */
.sec--doctor .doctor-primary__head {
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
}
.sec--doctor .doctor-primary__head .head-name {
    width: calc(100% - 240px);
}
.sec--doctor .doctor-primary__head .head-name span {
    display: block;
    color: #222;
    font-weight: 700;
    font-size: 3.6rem;
    letter-spacing: .2em;
    margin-top: .3em;
}
.sec--doctor .doctor-primary__head .head-img {
    width: 220px;
}
.sec--doctor .doctor-primary__head .head-img img {
    border-radius: 50%;
}

.sec--doctor .doctor-primary__txt p {
    font-weight: 500;
    line-height: 2;
    letter-spacing: .09em;
}

.sec--doctor .doctor-primary .sec-more {
    margin-top: 75px;
}

.sec--doctor .doctor-secondary {
    margin-top: 100px;
}
.sec--doctor .doctor-secondary__list {
    gap: 100px 110px;
}
.sec--doctor .doctor-secondary__list .list-item {
    width: 160px;
    text-align: center;
}
.sec--doctor .doctor-secondary__list .item-img {
    margin-bottom: 1.5em;
}
.sec--doctor .doctor-secondary__list .item-img img {
    border-radius: 50%;
}
.sec--doctor .doctor-secondary__list .item-txt {
    font-size: 1.4rem;
}
.sec--doctor .doctor-secondary__list .item-txt span {
    display: block;
    color: #222;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .2em;
    margin-top: .3em;
}
.sec--doctor .doctor-secondary .sec-more {
    margin-top: 100px;
}

@media only screen and (max-width: 767px) {
    .sec--doctor .doctor-primary__head .head-name {
        font-size: 1.3rem;
        width: auto;
    }
    .sec--doctor .doctor-primary__head .head-name span {
        font-size: 3rem;
    }
    .sec--doctor .doctor-primary__head .head-img {
        width: 36.36364vw;
    }
    .sec--doctor .doctor-primary__txt {
        position: relative;
        height: 246px;
        overflow: hidden;
        transition: .6s;
    }
    .sec--doctor .doctor-primary__txt p {
        font-size: 1.8rem;
        letter-spacing: .06em;
    }
    .sec--doctor .doctor-primary__txt.is-open {
        height: auto;
    }
    .sec--doctor .doctor-primary__txt.is-open .sp-more {
        display: none;
    }
    .sec--doctor .doctor-primary .sec-more {
        margin-top: 40px;
    }
    .sec--doctor .doctor-primary .sp-more {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .8) 0%, white 50%, white 100%);
    }
    .sec--doctor .doctor-primary .sp-more__btn {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        color: #49c5b1;
        border: 1px solid #49c5b1;
        background: #fff;
        font-size: 1.5rem;
        font-weight: 500;
        width: 200px;
        text-align: center;
        padding: .4em 0;
        border-radius: 40px;
        cursor: pointer;
    }
    .sec--doctor .doctor-secondary {
        margin-top: 75px;
        padding: 0 10px;
    }
    .sec--doctor .doctor-secondary__list {
        gap: 55px 0;
        justify-content: space-between;
    }
    .sec--doctor .doctor-secondary__list .list-item {
        width: 42%;
    }
    .sec--doctor .doctor-secondary__list .item-img {
        margin-bottom: 1em;
    }
    .sec--doctor .doctor-secondary__list .item-txt span {
        margin-top: .2em;
    }
    .sec--doctor .doctor-secondary .sec-more {
        margin-top: 60px;
    }
}

/* ========== CLINIC ========== */
.sec--clinic .area-list {
    max-width: 950px;
    margin: auto;
    gap: 40px 5%;
}
.sec--clinic .area-list li {
    width: 30%;
}

@media only screen and (max-width: 767px) {
    .sec--clinic .area-list {
        gap: 20px 5%;
    }
    .sec--clinic .area-list li {
        width: 47.5%;
    }
}

/* ========== CONTACT ========== */
@media only screen and (max-width: 767px) {
    .sec--contact {
        padding: 80px 0;
    }
}

/* ========== RECOMMEND ========== */
.sec--recommend ::-webkit-scrollbar {
    display: none;
}

.sec--recommend .recommend-bnr {
    cursor: move;
}
.sec--recommend .recommend-bnr__inner {
    padding-right: 25px;
    padding-left: calc((100vw - 1390px) / 2);
}
.sec--recommend .recommend-bnr__list {
    display: flex;
    gap: 0 clamp(15px, 2.08333vw, 30px);
}
.sec--recommend .recommend-bnr__list li {
    flex-shrink: 0;
    width: clamp(190px, 26.38889vw, 380px);
}

@media only screen and (max-width: 1440px) {
    .sec--recommend .recommend-bnr__inner {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 1024px) {
    .sec--recommend .recommend-bnr__list {
        gap: 0 30px;
    }
    .sec--recommend .recommend-bnr__list li {
        width: 380px;
    }
}

@media only screen and (max-width: 767px) {
    .sec--recommend .recommend-bnr__inner {
        padding: 0 20px;
    }
    .sec--recommend .recommend-bnr__list {
        gap: 0 clamp(10px, 1.38889vw, 20px);
    }
    .sec--recommend .recommend-bnr__list li {
        width: clamp(170px, 77.27273vw, 340px);
    }
}

/* ========== POLICY ========== */
.sec--policy .policy-txt__lead {
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 2;
    letter-spacing: .1em;
    margin-bottom: 2em;
}

.sec--policy .policy-txt__txt {
    line-height: 2;
}

.sec--policy .sec-more {
    margin-top: 60px;
}

/* ========== GUIDELINE ========== */
.sec--guideline .guideline-caution {
    max-width: 480px;
    padding: 30px;
    border-radius: 30px;
    margin: 80px auto 0;
    border: 1px solid #49c5b1;
    text-align: center;
    color: #222;
}
.sec--guideline .guideline-caution__icon {
    margin-bottom: 25px;
}
.sec--guideline .guideline-caution__ttl {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: .2em;
    margin-bottom: 1em;
}
.sec--guideline .guideline-caution__txt {
    line-height: 1.75;
    letter-spacing: 0;
    width: 338px;
    text-align: left;
    margin: auto;
}
.sec--guideline .guideline-caution__btn {
    margin-top: 25px;
}

@media only screen and (max-width: 767px) {
    .sec--guideline .guideline-caution {
        max-width: 400px;
        border-radius: 14px;
        margin: 40px auto 0;
    }
    .sec--guideline .guideline-caution__icon {
        margin-bottom: 25px;
    }
    .sec--guideline .guideline-caution__ttl {
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: .2em;
        margin-bottom: 1em;
    }
    .sec--guideline .guideline-caution__txt {
        max-width: 340px;
        width: 100%;
        font-size: 1.5rem;
    }
    .sec--guideline .guideline-caution__btn {
        margin-top: 25px;
    }
}

/* ========== TOPICS ========== */
.sec--topics .topics-article__ttl {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 50px;
}

.sec--topics .topics-article__txt {
    line-height: 2;
    letter-spacing: 0;
}
.sec--topics .topics-article__txt a {
    color: #49c5b1;
    font-weight: 500;
    text-decoration: underline;
}

.sec--topics .topics-article__btn {
    text-align: center;
    margin-top: 60px;
}

/* ========== SNS ========== */
.sec--sns .sns-line {
    text-align: center;
}
.sec--sns .sns-line a {
    display: inline-block;
    width: 410px;
}

.sec--sns .sns-list {
    margin-top: 40px;
    gap: 0 40px;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .sec--sns .sns-line a {
        width: 264px;
    }
    .sec--sns .sns-list li {
        width: 30px;
    }
}

/* ========== FAQ ========== */
.sec--faq .faq-list__item {
    border-top: 1px solid #49c5b1;
    letter-spacing: 0;
}

.sec--faq .faq-list .question, .sec--faq .faq-list .answer {
    position: relative;
    padding-left: 48px;
}
.sec--faq .faq-list .question:before, .sec--faq .faq-list .answer:before {
    position: absolute;
    left: 0;
    color: #49c5b1;
    font-family: "arboria", sans-serif;
    font-size: 3.2rem;
    line-height: 1.1;
}

.sec--faq .faq-list .question {
    padding-top: 1.8em;
    padding-bottom: 1.8em;
}
.sec--faq .faq-list .question:before {
    content: "Q";
    top: .75em;
}

.sec--faq .faq-list .answer {
    padding-top: .3em;
    padding-bottom: 30px;
    line-height: 1.75;
}
.sec--faq .faq-list .answer:before {
    content: "A";
    top: 0;
}

@media only screen and (max-width: 767px) {
    .sec--faq {
        padding: 80px 0;
    }
    .sec--faq .faq-list {
        border-bottom: 1px solid #49c5b1;
    }
    .sec--faq .faq-list .question, .sec--faq .faq-list .answer {
        padding-right: 20px;
    }
    .sec--faq .faq-list .question:before, .sec--faq .faq-list .answer:before {
        left: .3em;
    }
    .sec--faq .faq-list .question {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    .sec--faq .faq-list .question:before {
        top: .5em;
    }
    .sec--faq .faq-list .answer {
        padding-top: 0;
    }
}

/* ========== GLOBAL ========== */
.sec--global .global-btn {
    text-align: center;
}
.sec--global .global-btn img {
    width: 400px;
}