/* header

====================================================*/

header {
    display: flex;
    align-items: center;
    padding: 8px 32px;
    height: 72px;
    background-color: #fff;
}

#logo {
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
}

header .nav {
    display: flex;
    align-items: center;
    border-radius: 50px;
}

header .nav li {
    border-right: 1px solid #DEDEDF;
    padding: 0 32px;
}

header .nav li:first-child {
    padding-left: 0;
}

header .nav li:last-child {
    border-right: none;
}

#overlay {
    display: none;
}

header .sns-link a {
    margin-left: 32px;
}
header .nav-wrap{
    margin: 0 auto;
}


@media screen and (max-width:786px) {
    header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 2;
        padding: 8px 16px;
        justify-content: space-between;
    }

    header .sns-link,
    .nav-wrap {
        display: none;
    }

    #overlay {
        opacity: 0;
        z-index: -5;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    #overlay ul {
        display: none;
    }

    #mainVisual {
        position: relative;
    }

    #overlay.open {
        opacity: 1;
        background-color: #F0F4F6;
        z-index: 5;
        position: fixed;
        top: 72px;
        bottom: 0;
        left: 0;
        right: 0;
        display: block;
        overflow: scroll;
    }

    #overlay.open ul {
        display: block;
    }

    #overlay ul {
        padding: 40px 32px;
    }

    #overlay ul li {
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    #overlay ul li:last-child {
        margin-bottom: 0;
    }

    #overlay ul li::before {
        content: '';
        width: 10px;
        height: 2px;
        background-color: #111;
        margin-right: 8px;
    }

    #overlay ul li a {
        font-size: 20px;
        font-weight: 700;
        line-height: 29px;
        letter-spacing: 0em;
        text-align: left;
    }

    #overlay .sns-link {
        padding: 40px 32px;
    }

    #overlay .sns-link a:first-child {
        margin-right: 64px;
    }
}


/* スマホ : メニューボタン */
.menu_btn-wrap {
    display: none;
    /* position: relative;
    right: 0;
    top: 0; */
    z-index: 50;
}

#overlay-button {
    /* position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(-50%);
    padding: 26px 11px;*/
    background-color: #111;
    z-index: 5;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: relative;
}

#overlay-button span {
    height: 2px;
    width: 22px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    display: block;
    transition: all .2s ease-in-out;

}

#overlay-button span::before {
    top: -8px;
    visibility: visible;
}

#overlay-button span::after {
    top: 8px;
}

#overlay-button span::before,
#overlay-button span::after {
    height: 2px;
    width: 22px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
}

#overlay-button:hover span,
#overlay-button:hover span::before,
#overlay-button:hover span::after {
    background: #fff;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked~#overlay {
    visibility: visible;
}

input[type=checkbox]:checked~#overlay-button:hover span,
input[type=checkbox]:checked~#overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked~#overlay-button span::before {
    transform: rotate(45deg) translate(6px, 6px);
}

input[type=checkbox]:checked~#overlay-button span::after {
    transform: rotate(-45deg) translate(6px, -6px);
}


.menu_btn-wrap.open #overlay-button span::before,
.menu_btn-wrap.open #overlay-button span::after {
    background-color: #fff;
}

body.open {
    overflow: hidden;
}

@media screen and (max-width:786px) {
    .menu_btn-wrap {
        display: block;
    }

}







#footer {
    background-color: #00244B;
    padding: 16px;
    color: #fff;
    text-align: center;
}

#footer .sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

#footer .sns-link a {
    display: block;
    color: #fff;
    margin-right: 19px;
}

#footer .sns-link a:last-child {
    margin-right: 0;
}

#footer .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

#footer .nav li {
    margin-right: 19px;
}

#footer .nav li:last-child {
    margin-right: 0;
}

#footer .nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

#footer small {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

/* 共通 : パンくずリスト

====================================================*/
.breadcrumbs {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto 64px;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-top {
    display: none !important;
}

.breadcrumbs li,
.breadcrumbs a {
    margin-right: 16px;
}

.breadcrumbs li::after {
    content: ">";
}

.breadcrumbs li:last-child {
    margin-right: 0;
}

.breadcrumbs li:last-child::after {
    content: "";
}

.breadcrumbs li,
.breadcrumbs a {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #111;
}


/* section

====================================================*/
.flex {
    display: flex;
}

main {
    /* padding-top: 114px; */
    padding: 24px 16px 80px;
}

body.single-columns {
    background-color: #F6F6F9 !important;
}

section {
    background: #F6F6F9;
    margin: 0 16px;
    padding: 64px 16px;
    border-radius: 40px;
}

section.terms_section {
    margin-top: 112px;
    background: #F0F4F6;
}

.section-wrap {
    max-width: 1166px;
    width: 100%;
    margin: 0 auto;
}

body.single-columns .section-wrap,
body.archive .section-wrap,
body.search .section-wrap {
    display: flex;
    justify-content: space-between;
}

.section-wrap .single-content {
    width: 747px;
}

section.terms_section .section-wrap {
    border-bottom: 1px solid #111;
    padding-bottom: 64px;
    margin-bottom: 64px;
}

section.terms_section .section-wrap:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

a.more {
    display: flex;
    background-color: #111;
    border-radius: 50px;
    height: 74px;
    justify-content: center;
    align-items: center;
    width: 262px;
    margin: 64px auto;
    color: #fff;
}

a.more i {
    border-radius: 50px;
    border: 1px solid #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}


.section-wrap .side {
    width: 316px;
    margin-left: 32px;
    margin-top: 160px;
}

body.single-columns .section-wrap .side {
    margin-top: 0;
}

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

    body.archive .section-wrap,
    body.search .section-wrap {
        flex-direction: column-reverse;
    }

    body.single-columns .section-wrap {
        flex-direction: column;
    }

    .section-wrap .single-content {
        width: 100%;
    }

    .section-wrap .side {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
}


.section_ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    max-width: 1160px;
    width: 100%;
    margin: 0 auto 80px;
}

.section_ttl-en {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 16px;
}

.section_ttl-ja {
    font-size: 36px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
}


.postCard-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.related-list {
    display: flex;
    flex-wrap: wrap;
}

.ranking {
    position: sticky;
    top: 0;
    z-index: 2;
}
body.single-columns .ranking {
padding-top: 40px;
}
.ranking .postCard {
    display: flex;
    margin-bottom: 24px;
}

.ranking .postCard:last-child {
    margin-bottom: 16px;
}

.related-list .postCard {
    display: flex;
    margin-bottom: 32px;
    margin-right: 32px;
    width: 280px;
}



.postCard-flex .postCard {
    width: calc(50% - 16px);
    display: flex;
    border-radius: 20px;
    padding: 16px;
    background-color: #fff;
    margin-bottom: 24px;
}

.newPost .postCard {
    position: relative;
    border-radius: 20px;
    padding: 16px;
    background-color: #fff;
    display: block;
}

.newPost .postCard::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 58px 58px 0 0;
    border-color: #FFF600 transparent transparent transparent;
}

.newPost .postCard::after {
    position: absolute;
    content: "New";
    transform: rotate(315deg);
    display: block;
    font-size: 12px;
    font-weight: 700;
    white-space: pre;
    color: #111;
    top: 16px;
    left: 10px;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.postCard .thumbnail {
    max-width: 184px;
    width: 100%;
    margin-right: 16px;
}

.single-content .thumbnail {
    margin-bottom: 32px;
}

.side .newPost .thumbnail {
    max-width: 100%;
    margin-bottom: 16px;
}

.side .ranking .thumbnail,
.related-list .thumbnail,
.other-list .thumbnail {
    max-width: 109px;
    width: 100%;
    height: 109px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 24px;
    margin-bottom: 0;
}

.side .ranking .thumbnail img,
.related-list .thumbnail img,
.other-list .thumbnail img {
    height: 109px;
    object-fit: cover;
}

.postCard .content {
    width: 100%;
}

.postCard .post-ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    margin-bottom: 8px;
}

.single-content .post-ttl {
    font-size: 32px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 16px;
}

.related-list .post-ttl,
.other-list .post-ttl {
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
}



.postCard .post-txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.post-tag {
    display: flex;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-tag li {
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    padding: 4px 8px;
    background-color: #111111;
    color: #fff;
    margin-right: 4px;
    white-space: nowrap;
    margin-bottom: 8px;
}

.post-tag li:last-child {
    margin-right: 0;
}

.postCard>.content>.flex {
    align-items: center;
    justify-content: space-between;
}

.post-date {
    color: #C8C9CA;
    font-size: 12px;
}

.related-list .post-date,
.related-list .post-date {
    color: #111;
}

.post-link {
    display: flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px solid #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
}

.post-link i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    font-size: 7px;
    border: 1px solid #111;
    margin-right: 4px;
}


/* .newPost {
    margin-bottom: 40px;
} */

.newPost-ttl {
    margin: 16px 0 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
}


.ranking-ttl {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
}

.side .ranking .crown {
    display: inline-flex;
    align-items: center;
    margin-bottom: 4px;
}

.side .ranking .crown img {
    height: 15px;
}

.side .ranking .crown::after {
    font-size: 16px;
    font-weight: 700;
    margin-left: 4px;
}

.side .ranking .crown:nth-of-type(1) img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(7%) saturate(2005%) hue-rotate(7deg) brightness(94%) contrast(87%);
}

.side .ranking .crown:nth-of-type(1)::after {
    content: "1";
}

.side .ranking .crown:nth-of-type(2) img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(12%) saturate(172%) hue-rotate(177deg) brightness(90%) contrast(85%);
}

.side .ranking .crown:nth-of-type(2)::after {
    content: "2";
}

.side .ranking .crown:nth-of-type(3) img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(8%) saturate(1722%) hue-rotate(333deg) brightness(93%) contrast(95%);
}

.side .ranking .crown:nth-of-type(3)::after {
    content: "3";
}

.side .ranking .crown:nth-of-type(4) img,
.side .ranking .crown:nth-of-type(5) img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(3%) saturate(1934%) hue-rotate(62deg) brightness(104%) contrast(88%);
}

.side .ranking .crown:nth-of-type(4)::after {
    content: "4";
}

.side .ranking .crown:nth-of-type(5)::after {
    content: "5";
}





.wp_content {
    padding: 32px 0;
    border-bottom: 2px solid #DEDEDF;
    margin-bottom: 24px;
}
.wp_content a{
    color:var(--blue-900);
    text-decoration:underline;
}
.wp_content h2,
.wp_content h2.wp-block-heading {
    margin: 32px 0 24px;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
}

.wp_content h3,
.wp_content h3.wp-block-heading {
    margin: 24px 0 16px;
    font-size: 18px;
    font-weight: 700;
}

.wp_content h4,
.wp_content h4.wp-block-heading {
    margin: 16px 0 8px;
    font-size: 16px;
    font-weight: 700;
}
.wp_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 8px;
}
.wp_content ul.wp-block-list{
	list-style: disc inside;
	margin-bottom:16px;
}
.wp_content ol.wp-block-list{
	list-style: decimal inside;
	margin-bottom:16px;
}

.related-ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    margin-bottom: 24px;
}



/* ---  投稿詳細 : 目次  --- */
.mokuji-ttl {
    margin-bottom: 24px;

    font-size: 24px;
    font-weight: 700;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;

}

#mokuji {
    margin-bottom: 64px;
}

#mokuji:empty {
    display: none;
}

#mokuji>ol.mokuji-list>li {
    padding: 16px 0;
    border-bottom: 2px solid #DEDEDF;
}

#mokuji>ol.mokuji-list>li:first-child {
    border-top: 2px solid #DEDEDF;
}

#mokuji>ol.mokuji-list>li>a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
	text-decoration:none;
	color:var(--black);
}

#mokuji>ol.mokuji-list>li>a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid var(--black);
    border-right: 2px solid var(--black);
    transform: rotate(135deg);
    margin-right: 22px;
    margin-left: 2px;
}


@media screen and (max-width:786px) {
    #mokuji {
        padding: 16px;
        margin-bottom: 48px;
    }
}

.other-section {
    background-color: #fff;
    padding: 24px 16px !important;
}

.other-list-wrap {
    max-width: 1166px;
    width: 100%;
    margin: 0 auto;
}

/* 
.swiper-single .swiper-slide  {
    max-width: 288px;
    min-width: 288px;
    width: 100%;
    padding: 16px;
}

.swiper-single .postCard .thumbnail {
    max-width: inherit;
    margin-bottom: 16px;
} */

.swiper-side {
    /* max-width: 166px;
    width: 100%;
    margin-right: 10%; */
    /* margin-right: 148px; */
    /* margin-right: 10%; */
    /* min-width: 340px;
    width: 100%;
    padding-left: 10%;
    background-color: #fff;
    position: relative;
    z-index: 3;
    padding-right: 16px; */
}

/* .swiper-single .swiper-wrapper{
    width: calc(100% - 300px);
} */
.other-list-wrap .ttl {
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid #DEDEDF;
    padding-bottom: 19px;
    margin-bottom: 15px;
}

.other-list-wrap .ttl span {
    font-weight: 400;
    display: block;
}

.other-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 747px;
}

.other-list .postCard {
    display: flex;
    margin-bottom: 32px;
    margin-right: 32px;
    width: 280px;
}


.footer-nav {
    padding: 64px 16px 80px;
}

.footer-nav-ttl {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 24px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.footer-nav ul li {
    max-width: 135px;
    width: 100%;
    margin-left: 14px;
    margin-bottom: 16px;
}

.footer-nav ul li:first-child {
    margin-left: 0;
}

.footer-nav ul a {
    display: block;
    background-color: #111;
    color: #fff;
    border-radius: 50px;
    padding: 7px;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
}

.side .search {
    background-color: #F5F3EB;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 112px;
}

/* .sidePost-list {
    background-color: #F6F6F9;
    padding: 16px;
    border-radius: 20px;
} */
.sidePost-list .newPost{
    background-color: #F6F6F9;
    padding: 16px 16px 20px;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}
.sidePost-list .ranking{
    background-color: #F6F6F9;
    padding: 20px 16px 16px;
    border-radius: 0 0 20px 20px;
}
.postCard-list .postCard {
    display: flex;
    border-bottom: 2px solid #DEDEDF;
    padding: 16px;
}

.postCard-list .postCard:first-child {
    border-top: 2px solid #DEDEDF;
}

.postCard-list .postCard .post-ttl {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
}




.search input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background-color: #D9D9D9;
    font-size: 16px;
}

select {
    width: 223px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background-color: #D9D9D9;
    font-size: 16px;
}

.form-wrap {
    position: relative;
    margin-bottom: 40px;
}

.form-wrap button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 34px;
    border: 1px solid #111;
    background-color: #fff;
    font-size: 15px;
}

.search .menu-ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 40px;
}

.search .menu-ttl span {
    color: #898989;
}

.search .cat-all {
    display: flex;
    justify-content: center;
    margin: 0 auto 16px;
    width: 135px;
    background-color: #fff;
    border: 3px solid #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
    padding: 7px;
    border-radius: 34px;
}

.search .cat-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search .cat-menu li {
    width: calc(50% - 8px);
    margin-bottom: 16px;
}

.search .cat-menu li:nth-child(3),
.search .cat-menu li:nth-child(4) {
    margin-bottom: 0;
}

.search .cat-menu li a {
    color: #fff;
    background-color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
    padding: 7px;
    border-radius: 34px;
    display: block;
}



.sort-box {
    max-width: 1166px;
    width: 100%;
    margin: 40px auto 64px;
    justify-content: end;
    align-items: center;
    display: flex;
}

.sort-box .form-wrap {
    margin-bottom: 0;
}

.sort-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    margin-right: 22px;
}

.scroll_top{
    display: none;
}

.scroll_top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 60px;
    width: 60px;
    background: #111;
    bottom: 16px;
    right: 16px;
    border-radius: 60px;
    opacity:.8;
    z-index: 5;
}

.scroll_top::before {
    font-size: 23px;
    content:'△';
    color:#fff;
}

@media screen and (max-width:786px) {
    main {
        padding: 72px 0 0;
    }

    section {
        margin: 0;
        border-radius: 0;
    }

    .breadcrumbs {
        padding: 24px 16px 16px;
        margin: 0 auto 16px;
    }

    .section_ttl {
        margin-bottom: 24px;
    }

    .swiper-wrap {
        padding-top: calc(72px + 16px);
    }

    .postCard-flex .postCard {
        width: 100%;
    }

    .postCard-flex .postCard:last-child {
        margin-bottom: 0;
    }

    a.more {
        margin: 40px auto 0;
    }

    section.terms_section {
        margin-top: 0;
    }

    .side .search {
        margin: 0 16px;
    }

    .sidePost-list {
        display: none;
    }

    .sort-box {
        justify-content: center;
    }

    body.single-columns article>.thumbnail {
        margin: 0 -16px 80px;
    }

    .section-wrap .single-content {
        padding: 0 16px;
    }

    .other-list,
    .related-list {
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow: scroll;
    }

    .related-list .postCard,
    .other-list .postCard {
        flex-direction: column;
        min-width: 148px;
        width: 100%;
        margin-right: 24px;
    }

    .related-list .thumbnail,
    .other-list .thumbnail {
        margin-right: 0;
        max-width: 148px;
        /* height: 148px; */
        margin-bottom: 8px;
    }

    .related-list .thumbnail img,
    .other-list .thumbnai img {
        height: auto;
        object-fit: initial;
        width: 100%;
    }

    body.single-columns .side {
        display: none;
    }

    .footer-nav ul {
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
    }

    .footer-nav ul li:first-child {
        margin: 0 auto 16px;
        flex: 0 0 100%;
        max-width: initial;
        text-align: center;
    }

    .footer-nav ul li:first-child a {
        max-width: 135px;
        width: 100%;
        margin: 0 auto;
    }

    #footer .nav {
        margin: 56px auto;
    }

    #footer .nav li {
        margin-bottom: 19px;
    }
    .postCard .thumbnail {
        height: auto;
        max-width: 110px;
    }

}

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

    .footer-nav ul {
        width: 100% !important;
    }
}

.swiper-pagination-bullet {
    position: relative;
}

.swiper-pagination-bullet-active .circle-animation {
    animation: dash 4s ease-in-out forwards;
}

.circle-animation {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    fill: rgba(0, 0, 0, 0);
}

.circle-wrapper-sp {
    width: 70px;
    height: 70px;
    display: block;
    position: absolute;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}