@charset "UTF-8";

/* CSS Document */

:root {
    --yellow-bk-color: #FFFFDF;
    --yellow-color: #D9D308;
    --blue-bk-color: #D7EDF1;
    --blue-color: #60C6D5;
    --orange-bk-color: #FFF2DA;
    --orange-color: #FF7F32;
    --text-color: #454A45;
    --text-sub-color: #727272;
    --font-zenmaru: "Zen Maru Gothic", serif;
    --font-poppins: "Poppins", sans-serif;
}

@media screen and (max-width:767px) {
    body {
        font-size: 14px;
        font-family: "Noto Sans JP", sans-serif;
    }
}

#mv {
    background: var(--orange-bk-color);
    padding: 30px 0;
    position: relative;
}

#mv::after {
    content: "";
    width: 100%;
    height: 35px;
    background: url(../../images/kodomop/line_wave.svg) no-repeat center bottom/cover;
    position: absolute;
    display: block;
    bottom: -35px;
    left: 0;
}

#mv .slide_mv .slick-slide>a {
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width:1600px) {
    #mv::after {
        height: 45px;
        bottom: -45px;
    }
}

@media screen and (max-width:767px) {
    #mv {
        padding-bottom: 0;
    }
    #mv::after {
        background-size: 150%;
        height: 20px;
        bottom: -20px;
    }
}

.slide-img {
    margin-bottom: 10px;
}

.article_list .title {
    font-weight: bold;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

#mv .article_list .title {
    font-size: 18px;
}

.article_list .sub-data {
    padding-bottom: 10px;
}

.article_list .date {
    font-size: 14px;
    font-family: var(--font-poppins);
    color: var(--text-sub-color);
    display: inline-block;
    font-weight: 200;
}

.whatsnew.article_list .date {
    display: block;
    padding-top: 10px;
}

.article_list .category {
    font-size: 12px;
    color: var(--orange-color);
    padding: 5px 10px;
    background: white;
    border-radius: 5px;
    margin-right: 1em;
    display: inline-block;
}

@media screen and (max-width:767px) {
    .article_list .category {
        padding: 3px 5px;
        line-height: 1.2em;
    }
}

.news-area {
    padding: 60px 0 0 0;
}

@media screen and (max-width:767px) {
    .news-area {
        padding: 40px 0 0 0;
    }
}

.news-area .news>a {
    display: flex;
    font-size: 14px;
    border-left: 4px solid var(--orange-bk-color);
    padding-left: .5em;
}

.news-area .news>a span.date {
    font-family: var(--font-poppins);
    font-style: italic;
    display: inline-block;
    margin-right: 1em;
}

.sp_only {
    display: none!important;
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/*h2*/

section {
    padding: 40px 0;
    position: relative;
}

section h2 {
    font-size: 42px;
    font-weight: bold;
    font-family: var(--font-zenmaru);
    color: white;
    text-shadow: rgb(69, 74, 69) 1px 0px 0px, rgb(69, 74, 69) 0.540302px 0.841471px 0px, rgb(69, 74, 69) -0.416147px 0.909297px 0px, rgb(69, 74, 69) -0.989992px 0.14112px 0px, rgb(69, 74, 69) -0.653644px -0.756802px 0px, rgb(69, 74, 69) 0.283662px -0.958924px 0px, rgb(69, 74, 69) 0.96017px -0.279415px 0px;
    line-height: 1em;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

@media screen and (max-width:767px) {
    section {
        padding: 20px 0;
    }
    section h2 {
        font-size: 30px;
    }
}

section h2 span.sub-title {
    text-shadow: none;
    font-size: 14px;
    color: var(--text-color);
    display: block;
    line-height: 1em;
    letter-spacing: 0;
    padding-left: 2.4em;
}

section h2:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}

section h2.circle:before {
    width: 86px;
    height: 86px;
    background: url(../../images/kodomop/shape_cir.svg) no-repeat center center/100%;
    top: -10px;
    left: -50px;
}

section h2.tri:before {
    width: 71px;
    height: 79px;
    background: url(../../images/kodomop/shape_tri.svg) no-repeat center center/100%;
    top: -10px;
    left: -45px;
}

section h2.sq:before {
    width: 100px;
    height: 100px;
    background: url(../../images/kodomop/shape_sq.svg) no-repeat center center/100%;
    top: -10px;
    left: -45px;
}

.button-area {
    text-align: center;
    padding: 20px 0 0 0;
}

@media screen and (max-width:767px) {
    .button-area {
        padding: 0px 0 20px 0;
    }
    section h2.circle:before {
        top: -20px;
        left: -55px;
    }
    section h2.sq:before {
        left: -55px;
        top: -20px;
    }
}

a.button {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 60px;
    background: white;
    position: relative;
    transition-duration: .5s;
}

a.button.orange {
    background: var(--orange-bk-color);
}

a.button.orange:hover,
a.button.white:hover {
    background: var(--orange-color);
    color: white;
    transition-duration: .5s;
}

a.button.right-arrow:after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: 38%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(45deg);
    box-sizing: border-box;
    transition-duration: .5s;
}

a.button.under-arrow:after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: 34%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(135deg);
    box-sizing: border-box;
    transition-duration: .5s;
}

a.button.under-arrow:hover:after,
a.button.right-arrow:hover:after {
    border-top: 1px solid white;
    border-right: 1px solid white;
    transition-duration: .5s;
}

.special-area {
    padding-top: 120px;
}

.special-area .container {
    position: relative;
    padding: 0px 0;
}

.special-area h2 {
    position: absolute;
    top: -10px;
}

.special-area .container:before {
    content: "";
    display: block;
    background: var(--yellow-bk-color);
    position: absolute;
    top: -40px;
    width: 70%;
    height: 366px;
    border-radius: 30px;
}

ul.slide_special li {
    display: flex!important;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
}

ul.slide_special li .special-cont {
    width: 45%;
    padding-left: 40px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

ul.slide_special li .special-cont .title {
    padding-bottom: 20px;
    line-height: 1.6em;
    font-size: 18px;
}

ul.slide_special li .special-img {
    width: 50%;
    aspect-ratio: 4/3;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: -40px;
}

ul.slide_special li .special-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.arrow-sp {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

@media screen and (max-width:767px) {
    .special-area {
        padding-top: 80px;
    }
    .special-area {
        padding-bottom: 60px;
    }
    .special-area .container {
        margin-right: 0;
    }
    ul.slide_special li {
        flex-direction: column;
        align-items: flex-end;
    }
    ul.slide_special li .special-cont {
        width: 90%;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 30px;
    }
    ul.slide_special li .special-img {
        width: 90%;
        margin-top: 20px;
        border-radius: 5px;
    }
    .special-area .container:before {
        width: 100%;
        left: -20px;
        border-radius: 10px;
    }
    .arrow-sp {
        bottom: -40px;
        right: 20px;
        left: auto;
    }
}

.pickup-area {
    background: var(--blue-bk-color);
    margin: 60px 0 40px 0;
}

.pickup-area::before,
.pickup-area::after {
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    display: block;
}

.pickup-area::before {
    background: url(../../images/kodomop/line_moku1.svg) no-repeat center top/cover;
    top: -30px;
    left: 0;
}

.pickup-area::after {
    background: url(../../images/kodomop/line_moku2.svg) no-repeat center bottom/cover;
    bottom: -30px;
    left: 0;
}

@media screen and (max-width:767px) {
    .pickup-area {
        margin-top: 40px;
    }
    .pickup-area::before,
    .pickup-area::after {
        background-size: 150%;
    }
}

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

.flex.theme>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32%;
    margin-bottom: 20px;
    transition-duration: .5s;
}

.flex.theme>a.yasai-banner {
    width: 100%;
}

.flex.theme>a:hover {
    opacity: 0.7;
    transition-duration: .5s;
}

@media screen and (max-width:767px) {
    .flex.theme>a,
    .flex.theme>a.yasai-banner {
        width: 49%;
    }
}

.whatsnew-area {
    margin: 40px 0 0px 0;
    padding-bottom: 100px;
    background: var(--orange-bk-color);
}

.whatsnew-area::before {
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    display: block;
}

.whatsnew-area::before {
    background: url(../../images/kodomop/line_giza.svg) no-repeat center top/cover;
    top: -30px;
    left: 0;
}

@media screen and (max-width:767px) {
    .whatsnew-area {
        padding-bottom: 80px;
    }
    .whatsnew-area::before {
        background-size: 150%;
    }
}

.whatsnew-area h2 .flex {}

.whatsnew-area div.wn-tags {}

.whatsnew-area a.category {
    display: inline-block;
    font-size: 12px;
    text-shadow: none;
    color: var(--orange-color);
    background: white;
    border-radius: 5px;
    padding: 5px 10px;
    vertical-align: middle;
    line-height: 1em;
    margin-left: 1em;
    letter-spacing: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
}

@media screen and (max-width:767px) {
    .whatsnew-area h2 .flex {
        display: block;
    }
    .whatsnew-area div.wn-tags {
        text-align: center;
        padding: 20px 0 0 0;
    }
    .whatsnew-area a.category {
        font-size: 14px;
    }
}

ul.whatsnew {
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.whatsnew li {
    width: 24%;
    margin-bottom: 20px;
}

ul.whatsnew li:nth-of-type(1),
ul.whatsnew li:nth-of-type(2),
ul.whatsnew li:nth-of-type(3) {
    width: 32.5%;
}

@media screen and (max-width:767px) {
    ul.whatsnew li,
    ul.whatsnew li:nth-of-type(1),
    ul.whatsnew li:nth-of-type(2),
    ul.whatsnew li:nth-of-type(3) {
        width: 49%;
    }
}

.series-area {
    margin: 0px;
    padding: 20px 0 120px 0;
    background: var(--blue-bk-color);
}

.series-area::before {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    display: block;
}

.series-area::before {
    background: url(../../images/kodomop/line_note1.svg) no-repeat center top/cover;
    top: -100px;
    left: 0;
}

@media screen and (max-width:767px) {
    .series-area {
        padding: 20px 0 80px 0;
    }
    .series-area::before {
        height: 50px;
    }
    .series-area::before {
        top: -50px;
    }
}

ul.series {
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.series li {
    width: 49%;
    padding-bottom: 20px;
}

#cb {
    display: none;
}

.more_btn {
    display: block;
    width: 200px;
    position: relative;
    text-align: center;
    margin: 30px auto;
}

#cb~.more_btn::before {
    content: "AND MORE";
    display: inline-block;
    padding: 10px 50px;
    border-radius: 60px;
    background: white;
    position: relative;
    transition-duration: .5s;
}

#cb~.more_btn::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: 34%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(135deg);
    box-sizing: border-box;
    transition-duration: .5s;
}

#cb:checked~.more_btn {
    display: none;
}

#cb:checked~.more_btn::before {
    content: "閉じる";
}

.more_wrap {
    display: none;
}

#cb:checked~.more_wrap {
    display: block;
}

@media screen and (max-width:767px) {
    ul.series li {
        width: 100%;
        padding-bottom: 10px;
    }
    .more_btn {
        margin: 0 auto;
    }
}

ul.series li h3 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    border-bottom: 3px dashed var(--blue-color);
    padding-bottom: 5px;
}

ul.series li h3 a.more {
    position: absolute;
    right: 5px;
    font-size: 16px;
    font-weight: normal;
    padding-right: 15px;
}

@media screen and (max-width:767px) {
    ul.series li h3 {
        font-size: 18px;
    }
    ul.series li h3 a.more {
        font-size: 14px;
    }
}

ul.series li h3 a.more::after {
    content: '';
    display: block;
    position: absolute;
    right: 0px;
    top: 30%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(45deg);
    box-sizing: border-box;
    transition-duration: .5s;
}

ul.series li h3 a.more:hover {
    color: var(--orange-color);
}

ul.series li h3 a.more:hover::after {
    border-top: 1px solid var(--orange-color);
    border-right: 1px solid var(--orange-color);
    right: -3px;
}

ul.series li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

ul.series li>a:hover {
    opacity: 0.7;
}

ul.series li>a .slide-img {
    width: 198px;
    aspect-ratio: 4/3;
    object-fit: cover;
    overflow: hidden;
}

ul.series li>a .slide-cont {
    width: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

ul.series li>a .sub-data {
    padding-top: 20px;
}

@media screen and (max-width:767px) {
    ul.series li>a .slide-img {
        width: 120px;
    }
    ul.series li>a .slide-cont {
        width: calc(100% - 140px);
    }
    ul.series li>a .sub-data {
        padding-top: 0px;
    }
}

.about-area {
    margin: 0px;
    padding: 20px 0 80px 0;
    background: var(--yellow-bk-color);
}

.about-area::before {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    display: block;
}

.about-area::before {
    background: url(../../images/kodomop/line_note2.svg) no-repeat center top/cover;
    top: -100px;
    left: 0;
}

@media screen and (max-width:767px) {
    .about-area {
        padding: 20px 0 20px 0;
    }
    .about-area::before {
        height: 50px;
    }
    .about-area::before {
        top: -50px;
    }
}

.about {
    max-width: 940px;
    padding: 40px 40px 30px;
    border-radius: 200px;
    border: 2px dashed var(--text-sub-color);
    background: white;
    margin: auto;
    position: relative;
    text-align: center;
}

@media screen and (max-width:767px) {
    .about {
        border-radius: 50px;
        padding: 40px 20px 20px;
    }
}

.about:before {
    content: "";
    width: 150px;
    height: 58px;
    background: url(../../images/kodomop/flag.svg) no-repeat center center/100%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about>h3 {
    margin: 20px auto;
    text-align: center;
    color: var(--orange-color);
    font-family: var(--font-zenmaru);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about>h3 img {
    width: 480px;
}

@media screen and (max-width:767px) {
    .about:before {
        width: 99px;
        height: 38px;
    }
    .about>h3 {
        font-size: 16px;
    }
    .about>h3 img {
        width: 240px;
    }
}

.main-copy {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: var(--font-zenmaru);
}

.main-copy>strong {
    font-size: 40px;
}

.main-copy>strong:nth-of-type(1) {
    color: var(--orange-color);
}

.main-copy>strong:nth-of-type(2) {
    color: var(--blue-color);
}

.main-copy>strong:nth-of-type(3) {
    color: var(--yellow-color);
}

.about .sub-lead {
    font-size: 20px;
    padding-top: 20px;
}

img.lion {
    position: absolute;
    width: 154px;
    height: 184px;
    top: 10px;
    left: -10px;
}

img.turtle {
    position: absolute;
    width: 146px;
    height: 190px;
    bottom: 10px;
    right: -10px;
}

@media screen and (max-width:767px) {
    .main-copy {
        font-size: 20px;
    }
    .main-copy>strong {
        font-size: 30px;
    }
    .about .sub-lead {
        font-size: 16px;
    }
    img.lion {
        width: 107px;
        height: 126px;
        top: auto;
        bottom: 10px;
        left: -20px;
    }
    img.turtle {
        position: absolute;
        width: 86px;
        height: 112px;
    }
    .about .button-area {
        padding-top: 20px;
    }
}

.magazine {
    padding-top: 100px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 10px;
}

.magazine>div {
    width: 48%;
    padding: 10px;
    border-radius: 63px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:767px) {
    .magazine>div {
        width: 100%;
        border-radius: 40px;
        margin-bottom: 60px;
    }
}

.magazine>div h2 {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

@media screen and (max-width:767px) {
    .magazine>div h2 {
        top: -30px;
    }
}

.magazine>div h2 span {
    position: relative;
}

.magazine>div h2 span:before {
    content: "";
    width: 30px;
    height: 41px;
    display: block;
    position: absolute;
    top: -5px;
    left: -35px;
}

.magazine>div h2 span:after {
    content: "";
    width: 17px;
    height: 19px;
    display: block;
    position: absolute;
    top: 5px;
    right: -20px;
}

.magazine>div.new-release h2 span:before {
    background: url(../../images/kodomop/ef_newrelease1.svg) no-repeat center center/100%;
}

.magazine>div.new-release h2 span:after {
    background: url(../../images/kodomop/ef_newrelease2.svg) no-repeat center center/100%;
}

.magazine>div.backnumber h2 span:before {
    background: url(../../images/kodomop/ef_backnumber1.svg) no-repeat center center/100%;
}

.magazine>div.backnumber h2 span:after {
    background: url(../../images/kodomop/ef_backnumber2.svg) no-repeat center center/100%;
}

.magazine>div.new-release {
    background: var(--blue-bk-color);
    padding-left: 40px;
    box-shadow: 0 0 0 10px var(--blue-bk-color);
    border: dashed 2px var(--blue-color);
}

.magazine>div.new-release .img {
    width: 186px;
    padding: 10px;
    background: var(--yellow-bk-color);
    position: relative;
}

.magazine>div.new-release .img:before {
    content: "";
    width: 28px;
    height: 40px;
    background: url(../../images/kodomop/ef_cover1.svg) no-repeat center center/100%;
    position: absolute;
    top: -16px;
    left: -10px;
}

.magazine>div.new-release .img:after {
    content: "";
    width: 40px;
    height: 30px;
    background: url(../../images/kodomop/ef_cover2.svg) no-repeat center center/100%;
    position: absolute;
    bottom: -14px;
    right: -16px;
}

.magazine>div.backnumber {
    background: var(--orange-bk-color);
    box-shadow: 0 0 0 10px var(--orange-bk-color);
    border: dashed 2px var(--orange-color);
}

.magazine>div.backnumber .img {
    width: 278px;
    height: 279px;
    position: relative;
}

.magazine>div.backnumber .img img {
    position: absolute;
    bottom: -10px;
    left: -10px;
}

.magazine>div.new-release .mag-cont {
    width: calc(100% - 210px);
}

.magazine>div.backnumber .mag-cont {
    width: calc(100% - 300px);
}

@media screen and (max-width:767px) {
    .magazine>div.new-release {
        box-shadow: 0 0 0 5px var(--blue-bk-color);
    }
    .magazine>div.backnumber {
        box-shadow: 0 0 0 5px var(--orange-bk-color);
    }
    .magazine>div.new-release .img:before {
        width: 18px;
        height: 32px;
        top: -12px;
        left: -4px;
    }
    .magazine>div.new-release .img:after {
        width: 20px;
        height: 15px;
        bottom: -4px;
        right: -6px;
    }
    .magazine>div.new-release {
        padding-left: 20px;
    }
    .magazine>div.new-release .img {
        width: 118px;
        padding: 5px;
    }
    .magazine>div.backnumber .img {
        width: 140px;
        height: 140px;
    }
    .magazine>div.backnumber .img img {
        left: -20px;
    }
    .magazine>div.new-release .mag-cont {
        width: calc(100% - 135px);
    }
    .magazine>div.backnumber .mag-cont {
        width: calc(100% - 130px);
    }
}

.magazine>div .mag-cont .title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
}

.magazine>div .mag-cont .title span.num {
    display: block;
}

.magazine>div .mag-cont .date {
    padding-bottom: 10px;
    font-size: 14px;
    padding-bottom: 20px;
}

.magazine>div .mag-cont .button-area {
    text-align: left;
}

.magazine>div.backnumber .img>img,
.magazine>div.new-release .img>img {
    width: 100%;
}

@media screen and (max-width:767px) {
    .magazine>div .mag-cont .title {
        font-size: 18px;
    }
    .magazine>div .mag-cont .title span.num {
        display: inline-block;
    }
    .magazine a.button {
        padding: 5px 30px 5px 20px;
    }
    .magazine>div .mag-cont .button-area {
        padding: 20px 0 10px 0;
    }
    .magazine a.button.right-arrow:after {
        right: 15px;
    }
}

div.sns {
    padding: 80px 0 0 0;
    text-align: center;
}

@media screen and (max-width:767px) {
    div.sns {
        padding: 0px 0 0 0;
    }
}

div.sns .flex.f-center {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

div.sns .flex.f-center a {
    display: block;
    padding: 0 20px;
}

div.sns h3 {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--font-zenmaru);
    padding-bottom: 40px;
    text-align: center;
}

div.sns h3 span {
    display: inline-block;
    position: relative;
}

div.sns h3 span:before {
    content: "";
    width: 30px;
    height: 40px;
    display: block;
    position: absolute;
    top: -10px;
    left: -35px;
    background: url(../../images/kodomop/ef_sns1.svg) no-repeat center center/100%;
}

div.sns h3 span:after {
    content: "";
    width: 30px;
    height: 40px;
    display: block;
    position: absolute;
    top: -10px;
    right: -35px;
    background: url(../../images/kodomop/ef_sns2.svg) no-repeat center center/100%;
}

div.sns>.flex.f-center a img {
    width: 44px;
}

div.sns>.flex.f-center a:nth-of-type(1) img {
    width: 36px;
}

div.sns>.flex.f-center a:nth-of-type(4) img {
    width: 48px;
}

div.sns>.flex.f-center a:nth-of-type(5) img {
    width: 38px;
}

@media screen and (max-width:767px) {
    div.sns .flex.f-center {
        padding: 0 40px;
    }
    div.sns .flex.f-center a {
        margin-bottom: 40px;
    }
}

div.sns>.flex.f-center a:hover {
    opacity: 0.7;
}