@charset "UTF-8";
/* =========================
common
========================== */
html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        Arial
        sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

/* SP見出し */
h2 {
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2.4px;
}

/* SP小見出し */
h3 {
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
}

/* =========================
header
========================== */

.header {
    padding: 4px 5.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 45px;
    background: rgba(255,255,255,0.9);
    z-index: 100;
}

.header__topic {
    width: 76px;
    height: 37px;
}

.search {
    display: none;
}

.pcNav {
    display: none;
}

.header__cta {
    display: none;
}

/* header PC */
@media screen and (min-width: 1025px) {
    .header {
    padding: 10px 9.7%;
    display: flex;
    gap: 2%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 116px;
    background: rgba(255,255,255,0.9);
    z-index: 100;
}

.header__topic {
    width: 200px;
    height: 96px;
    flex-shrink: 1;
}

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

.navGroupe {
    display: flex;
    flex-direction: column;
    flex-shrink: 3;
}

/* search */
/* .search {
    display: flex;
    height: auto;
    max-width: 310px;
    width: 100%;
}

.search input[type="text"] {
    flex-grow: 1;
    padding: 7px 0 7px 8px;
    border: 1px solid #40a8c4;
    border-radius: 20px 0 0 20px;
    text-align: center;
    font-size:1.2rem ;

}

.search button {
    cursor: pointer;
    padding: 8px 9px 8px 8px;
    border-radius: 0 20px 20px 0;
    border: none;
    background-color: #40a8c4;
    color: #fff;
    font-size: 1rem;
    transition:1s all;
}

.search button:hover {
    opacity: 0.7;
}

.search input:focus {
    outline: 0;
    border: 1px solid #40a8c4;
} */

/* pcNav */
.pcNav {
    display: block;
}

.pcNav ul {
    display: flex;
    gap: 26px;
}

.pcNav-content {
    margin-top: 10px;
    letter-spacing: 2px;
    white-space: nowrap;
    font-size: 13px ;
    flex-shrink: 2;
}

.header__btn {
    display: none;
}
}

/* pc 1025px */


/* navOpen */
.nav {
    background-color: #40A8C4;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow: scroll;
}

.nav.active {
    transform: translateX(0);
}

/* navHeader */
.nav__header {
    background-color: #fff;
    padding: 4px 5.3%;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
}

.nav__topic {
    width: 37px;
    height: 37px;
}

/* search */
/* .nav_search {
    display: flex;
    height: auto;
}

.nav_search input[type="text"] {
    flex-grow: 1;
    padding: 7px 0 7px 8px;
    border: 1px solid #40a8c4;
    border-radius: 20px 0 0 20px;
    text-align: center;
    font-size:1.2rem ;

}

.nav_search button {
    cursor: pointer;
    padding: 8px 9px 8px 8px;
    border-radius: 0 20px 20px 0;
    border: none;
    background-color: #40a8c4;
    color: #fff;
    font-size: 1rem;
    transition:1s all;
}

.nav_search button:hover {
    opacity: 0.7;
}

.nav_search input:focus {
    outline: 0;
    border: 1px solid #40a8c4;
} */

.nav__btn {
    display: block;
    width: 22px;
    height: 22px;
}

/* nav__content */
.nav__content {
    padding: 31px 5.3% 0;
    position: relative;
}

.nav__content .bird {
    display: block;
    position: absolute;
    top: 10px;
    right: 34px;
}

/* cta */
.nav__ctaBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav__ctaBtn--tel {
    display: block;
    background-color: #EFA62B;
    width: 120px;
    height: 90px;
    padding: 14px 5px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.nav__ctaBtn--tel:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.1);
    }

.nav__ctaBtn img {
    display: block;
    margin: 12px auto 0;
}

.nav__ctaBtn--mail {
    display: block;
    background-color: #0062AF;
    width: 120px;
    height: 90px;
    padding: 14px 5px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.nav__ctaBtn--mail:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.3);
    }

.nav__ctaBtn img {
    display: block;
    margin: 12px auto 0;
}

/* navList */
.nav__list {
    padding: 20px 0 14px;

}

.nav__item {
    padding: 14px 0;
    border-bottom: 1px solid #fff;
}

.nav__item:first-of-type {
    padding-top: 0;
}
.nav__item a ,
.accordion-header {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
}

summary {
    list-style-type: none;
    position: relative;
    cursor: pointer;
}

summary::webkit-details-marker {
    display: none;
}

summary::before,
summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 16px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease;
}

/* 横線 */
summary::before {
    transform: translateY(-50%);
}

/* 縦線（回転させる） */
summary::after {
    transform: translateY(-50%) rotate(90deg);
}

/* open(縦線を横に倒してマイナスに) */
details[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}

.linkTxt  {
    position: relative;
}

.linkTxt   ::after{
    position: absolute;
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    margin-right: 10px;
}

.accordion-content .linkTxt ::after{
    border-top: solid 2px rgba(64, 168, 196, 1);
    border-right: solid 2px rgba(64, 168, 196, 1);

}

.accordion-content {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(64, 168, 196, 1);
    background-color: #fff;
}

.accordion-content a {
    color: rgba(64, 168, 196, 1);
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
}

/* navFooter */
.nav__footer img {
    margin-top: 33px;
    bottom: 0;
}

.nav__footer ul {
    background-color: #FFF;
    height: 40px;
    padding: 6px 5.3%;
    display: flex;
    gap: 39px;
}

.nav__footer li {
    color: #40A8C4;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
}

/* headerBtn */

.btnList {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header__btn {
    display: block;
}

.round__tel {
    position: relative;
    display: block;
    background-color: #EFA62B;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.round__tel:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.1);
    }

.round__tel img {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.round__mail {
    position: relative;
    display: block;
    background-color: #0062AF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.round__mail:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.3);
    }

.round__mail img {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.header__btn {
    width: 22px;
    height: 22px;
}

/* nav PC */
@media screen and (min-width: 1025px) {
    .nav {
        display: none;
    }

    .btnList {
    display: none;
    }
}
/* pc 1025px */

@media screen and (min-width: 1150px) {
/* cta */
.header__cta {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-top: 66px;
    flex-shrink: 1;
}

.header .bounta {
    display: block;
    max-width: 249px;
    width: 100%;
    height: auto;
}

.header__ctaBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header__ctaBtn--tel {
    display: block;
    background-color: #EFA62B;
    max-width: 120px;
    width: 100%;
    height: 90px;
    padding: 14px 5px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(1.4rem 1vw 1.6rem);
    white-space: nowrap;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}


.header__ctaBtn--tel:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

.header__ctaBtn img {
    display: block;
    margin: 12px auto 0;
}

.header__ctaBtn--mail {
    display: block;
    background-color: #0062AF;
    max-width: 120px;
    width: 100%;
    height: 90px;
    padding: 14px 5px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    white-space: nowrap;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.header__ctaBtn--mail:hover  {
    filter: brightness(1.13);
    transition: .2s ease-in-out;
}

.header__ctaBtn img {
    display: block;
    margin: 12px auto 0;
}

.round__tel, .round__mail {
        display: none;
    }
}

/* pc 1150px */



/* main */
/* firstView */
.pcMainImg{
    display: none;
}

.mainImg {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../../images/weight25kg/SP_main_back2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center bottom;
    padding: 27px 4% 0;
    /* min-height: 100vh; */
    margin-top: 45px;
}

.mainImg .doron {
    position: absolute;
    width: 10%;
    height: auto;
    top: 8px;
    right: 13px;
}

.mainImg.doron {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
    0% {
    transform: translateX(-5%);
    }
    100% {
    transform: translateX(5%);
    }
}
@keyframes floating-y {
    0% {
    transform: translateY(-10%);
    }
    100% {
    transform: translateY(10%);
    }
}

.mainImg .target {
    display: block;
    width: 76%;
    height: auto;
}

.mainImg .target {
        animation: poyoyon2 1s ease-in-out forwards;
        }

        @keyframes poyoyon2 {
        0%  {
            transform: scale(1.0, 1.0) translate(0, 0);
        }
        15% {
            transform: scale(0.98, 0.9) translate(0, 5px);
        }
        30% {
            transform: scale(1.02, 1.0) translate(0, 8px);
        }
        50% {transform: scale(0.98, 1.05) translate(0, -8px);
        }
        70% {
            transform: scale(1.0, 0.9) translate(0, 5px);
        }
        100% {
            transform: scale(1.0, 1.0) translate(0, 0);
        }
        0%, 100% {
            opacity: 1;
        }
        }

.mainTitle {
    display: block;
    /* margin-top: 13px; */
    height: auto;
}

.mainImg .bird {
    position: absolute;
    width: 6.4%;
    height: auto;
    top: 36%;
    right: 38px;
}

.merit {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* cta */
.ctaBtn {
    display: block;
    margin: 27px auto 0;
}

.ctaBtn__tel--main {
    display: flex;
    gap: 16px;
    background-color:#EFA62B;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 47px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.ctaBtn__tel--main:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

.ctaBtn__tel--main img {
    display: block;
    width: 26px;
    height: 26px;
}

.ctaBtn__mail--main {
    display: flex;
    gap: 16px;
    background-color:#0062AF;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 55px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 8px;
    position: relative;
    align-items: center;
}

.ctaBtn__mail--main:hover  {
    filter: brightness(1.13);
    transition: .2s ease-in-out;
}

.ctaBtn__mail img {
    display: block;
    width: 26px;
    height: 26px;
}

.subTitle {
    display: block;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-weight: 700;
    line-height: 1.2;
    margin: 20px auto 0;
    font-size: clamp(1rem, 3vw, 1.4rem);
    white-space: nowrap;
    text-align: center;
}

.subTitle img {
    margin: 2px auto 6px
}

.mainImg .hikouki {
    position: absolute;
    width: 6.4%;
    height: auto;
    top: 410px;
    left: 7%;
}

.mainImg .hito {
    margin-top: 6px;
}

/* main pc */
@media screen and (min-width: 1025px) {
    .mainImg, .merit {
        display: none;
    }

.pcMainImg {
        display: block;
        background-image: url("../../images/weight25kg/PC_mainBack.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position:center bottom;
        padding: 27px 4% 0;
        height: 650px;
        margin-top: 116px;
        margin-bottom: 60px;
        position: relative;
    }

    @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 共通設定 */
.merit1, .merit2, .merit3, .merit4 {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

/* 個別に順番を設定 */
.merit1 {
    animation-delay: 0s;
}

.merit2 {
    animation-delay: 0.5s;
}

.merit3 {
    animation-delay: 1s;
}

.merit4 {
    animation-delay: 1.5s;
}

/* 既存の位置指定 */
.merit1 {
    position: absolute;
    max-width: 235px;
    width: 100%;
    height: auto;
    top: 17%;
    left: 3%; }

.merit2 {
    position: absolute;
    max-width: 321px;
    width: 100%;
    height: auto;
    top: 40%;
    left: 3%; }

.merit3 {
    position: absolute;
    max-width: 293px;
    width: 100%;
    height: auto;
    top: 14%;
    right: 3%; }

.merit4 {
    position: absolute;
    max-width: 271px;
    width: 100%;
    height: auto;
    top: 40%;
    right: 4%; }

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


    .PC_main_target {
    max-width: 379px;
    width: 26.3%;
    position: absolute;
    top: 14%;
    left: 36%;
    transform: translate(-50%, -50%) scale(1);

    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}

@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: translate(-50%, -50%) scale(1);
    }
    50%, 70% {
        transform: translate(-50%, -50%) scale(0.95);
    }
}



    .pcMainImg .bird {
        position: absolute;
        max-width: 83px;
        width: 5.7%;
        height: auto;
        top: 10%;
        right: 36%;
    }

    .PC_mainTitle {
        display: block;
        max-width: 699px;
        width: 48.5%;
        height: auto;
        position: absolute;
        top: 34%;
        left: 50%;
        transform:translate(-50%,-50%);
    }

    .PC_main_doron {
        max-width: 112px;
        width: 7.7%;
        height: auto;
        display: block;
        position: absolute;
        top: 50%;
        left: 66%;
    }

    .PC_main_doron {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
        }
        @keyframes floating-x {
            0% {
            transform: translateX(-5%);
            }
            100% {
            transform: translateX(5%);
            }
        }
        @keyframes floating-y {
            0% {
            transform: translateY(-10%);
            }
            100% {
            transform: translateY(10%);
            }
        }


    .PC_main_member {
        max-width: 429px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
        position: absolute;
        bottom: 0;
    }

}

/* pc 1025px */



/* intro */
.section__intro {
    padding: 20px 5.3% 20px;
    text-align: center;
}

.sectionTitle__intro {
    text-align: center !important;
    margin-top: 60px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problemGroupe {
    position: relative;
    width: 100%;
    padding-bottom: 500px;
    aspect-ratio: 4 / 4;
}

.problemGroupe img {
    display: block;
    position: absolute;
    top: 0;
    width: 70%;
    height: auto;
    aspect-ratio: 4 / 4;
}

.problemGroupe img:nth-child(1) {
    top: -80px;
    left: 0;
    z-index: 3;
}

.problemGroupe img:nth-child(2) {
    top: 0px;
    right: 0;
    z-index: 2;
}

.problemGroupe img:nth-child(3) {
    top: 80px;
    left: 0px;
    z-index: 1;
}

.problemGroupe img:nth-child(4) {
    top: 160px;
    right: 0px;
    z-index: 2;
}
.problemGroupe img:nth-child(5) {
    top: 240px;
    left: 0px;
    z-index: 2;
}
.problemGroupe img:nth-child(6) {
    top: 320px;
    right: 0px;
    z-index: 2;
}

.troubleman {
    display: block;
}

.message {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    margin: 40px 5.3% 20px;
}

.message {
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 3.6px;
    white-space: nowrap;
    text-align: center;
}

.message .orange {
    color:#DD8B66;
}

.message__topic {
    font-size: 2.0rem;
    background-image: url(../../images/weight25kg/SP_YellowLine.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 3.6px;
    white-space: nowrap;
    text-align: center;
}

.message__topic .fade-target .is-animated {
animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon {
0% {
    transform: translateX(140px);
    opacity: 0;
}
50% {
    transform: translateX(0);
}
65% {
    transform: translateX(30px);
}
100% {
    transform: translateX(0);
}
20%,100% {
    opacity: 1;
}
}

.PC__problem {
    display: none;
}

/* intro pc */
@media screen and (min-width: 1025px) {
.section__intro {
    padding: 40px 9.7% 50px;

}
.sectionTitle__intro {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3.84px;
}



.problemGroupe, .troubleMan {
    display: none;
}

.PC__problem {
    display: block;
}

.message p {
font-size: clamp(1.6rem,2vw,2.4rem);
font-weight: 700;
line-height: normal;
letter-spacing: 4.8px;
}

.message__topic {
text-align: center;
font-size: clamp(2.4rem,2vw,3.2rem);
font-weight: 700;
letter-spacing: 6.4px;
white-space: nowrap;
}

.spBr {
    display: none;
}
}

/* pc 1025px */

/* 3medal */

.section__3medal {
    padding:20px 5.3% 20px;
}

.sectionTitle__3medal {
    padding-top: 32px;
    color: #0062AF;
    background-color: #E0F3F6;
}
.content__3medal {
    background-color: #E0F3F6;

}

.group {
    padding-bottom: 70px;
}
.group img {
    display: block;
    margin: 0 auto;
    margin-top: 26px;
}

.group picture {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.6s;
}

.group picture.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 遅延クラス */
.group picture.delay-1 { transition-delay: 0.2s; }
.group picture.delay-2 { transition-delay: 0.4s; }
.group picture.delay-3 { transition-delay: 0.6s; }



.pcAttention {
    display: none;
}

.group img :first-of-type {
    display: block;
    margin-top: 0;
}

.section__3medal .line {
    background-image: url(../../images/weight25kg/SP_blue_stripe.svg);
    width: 100%;
    height: 22px;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

/* 3medal pc */
@media screen and (min-width: 1025px) {
.section__3medal {
    padding:50px 9.7% 0px;
}

.sectionTitle__3medal {
    font-size: clamp(2.8rem,2vw,3.6rem);
    font-weight: 700;
    letter-spacing: 7.2px;
    white-space: nowrap;
    }

.sectionTitle__3medal .small {
    font-size: clamp(2.4rem,2vw,3.2rem);
}

.sectionTitle__3medal .orange {
    color:#EF5408;
}

.group {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0 2.5%;
    }

.group picture {
    max-width: 370px;
    min-width: 0;
    width: 100%;
    height: auto;
}

.pcAttention {
    display: block;
    letter-spacing: 1.92px;
    font-size: clamp(1.0rem,1vw,1.6rem);
    margin: 0 4.3%;
}

}

/* pc 1025px */

/* business */
.section__business {
    padding: 0px 0 46px;
}

.business__topic {
    padding-top: 8%;
}

.business__list {
    padding: 6% 4% 20%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    justify-content: center;
    gap: 4%;
}

.business__item {
    margin: 6% auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 5px 0;
}

.business__company--logo {
    height: 44px;
}

.business__company--txt {
    font-size: min(var(--font-10px), 12px);
    margin-top: 4%;
}

/* business pc */
@media screen and (min-width: 1025px) {
.section__business {
    padding: 0px 0 46px;
}

.section__business h2 {
    margin: 30px auto 40px;
}

.section__business picture {
    display: block;
    max-width: 669px;
    width: 70%;
    height: auto;
    margin: 0 auto;

}

.business__list {
    padding: 0 0 7%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 80%;
    margin: 1% auto 0;
}

.business__item {
    margin-top: 12%;
}

.business__company--txt {
    font-size: max(1vw, 12px);
    margin-top: 4%;
}
}

/* pc 1025px */

/* cta */

.section__cta--first {
    background-color:#FFFDE8 ;
    display: flex;
    flex-direction: column;
    padding: 0 5.3% 100px;
}

.section__cta--first .woman {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: -76px;
    transform: translateZ(0);
}

.section__cta--first .woman {
    opacity: 0; /* 初期は非表示 */
    transform: translateY(40px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section__cta--first .woman.is-animated {
    animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
    0% {
        transform: translateY(40px) scale(0.8);
        opacity: 0;
    }
    80%, 100% {
        transform: translateY(0) scale(1.0);
        opacity: 1;
    }
}

.section__cta--first h2{
    display: block;
    margin: 29px auto 0;
    text-align: center;
    letter-spacing: 2.4px;
}

.sectionSub__cta {
    display: inline;
    text-align: center;
    margin-top: 29px;
}

.PCsectionSub__cta {
    display: none;
}

.sectionSub__cta span {
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
}

/* cta pc */

@media screen and (min-width: 1025px) {
    .section__cta--first {
    background-color:#FFFDE8 ;
    display: flex;
    flex-direction: column;
    padding: 0 9.7% 100px;
}

.section__cta--first .woman {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: -100px;
    transform: translateZ(0);
}

.section__cta--first h2{
    display: block;
    margin: 50px auto 0;
    text-align: center;
    text-align: center;
    /* font-size: clamp(3.2rem,3vw,3.6rem);
     */
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 7.2px;
    }

.sectionSub__cta, .sectionSub__cta span{
    display: none;
}

.PCsectionSub__cta {
    display: block;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(2.4rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
    white-space: nowrap;
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
    margin: 37px auto 0;
    width: fit-content;
}

}

/* pc 1025px */


/* ctaBtn */
.ctaBtn {
    display: block;
    margin: 27px auto 0;
}

.ctaBtn__tel--section {
    display: flex;
    gap: 16px;
    background-color:#EFA62B;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 47px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.ctaBtn__tel--section:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

.ctaBtn__tel--section img {
    display: block;
    width: 26px;
    height: 26px;
}

.ctaBtn__mail--section {
    display: flex;
    gap: 16px;
    background-color:#0062AF;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 55px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    align-items: center;
}

.ctaBtn__mail--section:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

.ctaBtn__mail--section img {
    display: block;
    width: 26px;
    height: 26px;
}

.zoom {
    display: block;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zoom .hukidasi {
    display: block;
    margin: 0 auto;
    max-width: 660px;
    width: 100%;
}

.cta__bounta {
    margin: 20px auto 0;
    transform: translateX(50px);
    display: flex;
    justify-content: right;
}

.cta__bounta .doron {
    display: block;
    right: 8.2%;
}

.cta__bounta .bounta {
    display: block;
}

.main__ctaBtn {
    display: none;
}


@media screen and (min-width: 1025px) {
.main__ctaBtn {
    display: flex;
    height: auto;
    margin-top: 79px;
    flex-shrink: 1;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.main__ctaBtn--tel ,.main__ctaBtn--mail {
    display: block;
    display: flex;
    flex-direction: column;
    max-width: 240px;
    width: 100%;
    height: 180px;
    padding: 30px;
    gap: 30px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: 2.88px;
    align-items: center;
}

.main__ctaBtn--tel {
    background-color: #EFA62B;
    font-size: 2.4rem;
}

.main__ctaBtn--mail {
    background-color: #0062AF;
    font-size: clamp(2.4rem,2vw,3.6rem);
    font-weight: 700;
    letter-spacing: 3.84px;
}

.main__ctaBtn img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.ctaBtn {
    display: none;
}

.cta__bounta {
    margin: 20px auto 0;
    transform: translateX(0px);
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.cta__bounta .doron {
    display: block;
    max-width: 98px;
    width: 100%;
    height: auto;
    right: 8.2%;
}

.cta__bounta .bounta {
    display: block;
    max-width: 80px;
    width: 100%;
    height: auto;
}

}

/* pc 1025px */

/* about */

.section__about {
    background-image: url("../../images/weight25kg/SP_moko_back.svg");
    background-size: cover;
    margin: -130px auto 0;
    padding: 40px 5.3% 160px;
    width: 100%;
    background-position: top center;
}

.label__about {
    display: block;
    margin: 0 auto;
}

.sectionTitle__about {
    margin-top: 20px;
}

.lineTitle__about {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #F05E18;
    align-items: center;
    margin-top: 30px;
}

.lineTitle__about img {
    margin-bottom: 2px;
}

.lineTitle__about h3 {
    letter-spacing: 2.16px;
}


.intro__p {
    display: block;
    margin-top: 23px;
    letter-spacing: 1.92px;
}

.delivery__talking {
    margin: 34px auto 0;
    background-image: url(../../images/weight25kg/SP_delivery_talk.svg);
    background-repeat: no-repeat;
    padding: 12px;
    max-width: 330px;
    width: 100%;
    min-height: 180px;
    position: relative;
}

.delivery__talking p {
    display: block;
    position: absolute;
    content: '';
    white-space:normal;
    letter-spacing: 1.92px;
}

.delivery__talking span {
    color: #F45943;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.deliveryman {
    display: block;
    margin: 0 auto;
    transform: translateX(-50px);
}

.farmer__talking {
    display: block;
    margin: 34px auto 0;
    background-image: url(../../images/weight25kg/SP_farmer_talk.svg);
    background-repeat: no-repeat;
    padding: 12px;
    max-width: 330px;
    width: 100%;
    min-height: 180px;
    position: relative;
}

.farmer__talking p {
    display: block;
    position: absolute;
    content: '';
    white-space:normal;
    letter-spacing: 1.92px;
}

.farmer__talking span {
    color: #2D92BE;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.farmerman {
    display: block;
    margin: 0 auto;
    transform: translateX(50px);
}

.PC_delivery__farmer {
    display: none;
}

/* about1 pc */
@media screen and (min-width: 1025px) {
.section__about {
    padding: 170px 9.7% 374px ;
}
.titleGroupe__about{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
}
.label__about {
    display: block;
    margin: 0;
}

.sectionTitle__about {
    margin-top: 0;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(2.8rem,2vw,3.6rem);
    font-weight: 700;
    letter-spacing: 7.2px;
    white-space: nowrap;
}

.lineTitle__about {
    gap: 20px;
    align-items: center;
    margin-top: 76px;

}

.lineTitle__about img {
    max-width: 128px;
    width: 100%;
    margin-bottom: 2px;
}

.lineTitle__about h3 {
    font-size: clamp(2.6rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
}

.intro__p {
    display: block;
    margin-top: 40px;
    font-size: 1.8rem;
    letter-spacing: 2.16px;
}

.delivery__talking, .deliveryman {
    display: none;
}

.farmer__talking, .farmerman {
    display: none;
}

.PC_delivery__farmer {
    display: block;
    margin-top: 20px;
}

}

/* pc 1025px */


.can__title {
    margin-top: 38px;
    text-align: center;
}

.can__title img {
    display: block;
    margin: 0 auto
    ;
}

.can__title h3 {
    margin: 20px auto;
}

.PC_canList {
    display: none;
}

.can__list {
    justify-content: center;
    margin: 14px auto 18px;
    display: grid;
    grid-template-columns: 160px 160px;
    grid-template-rows: 260px 260px 260px;
    gap:13px;
}

/* イレギュラーレスポンシブ */
@media screen and (max-width: 374px) {
    .can__list{
    grid-template-columns: 160px;
    grid-template-rows: 260px;
    gap:13px;
    }
}

@media screen and (min-width: 560px) {
    .can__list{
    grid-template-columns:  160px 160px 160px;
    grid-template-rows: 260px 260px;
    gap:13px;
    }
}
/* イレギュラーレスポンシブ */

.can__item {
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    border-radius: 10px 10px 0 0;
}

.can__topic {
    max-width: 160px;
    width: 100%;
    min-height: 92px;
    border-radius: 10px 10px 0 0;
    background: #3FA5C0;
}

.can__topic p {
    display: block;
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    padding-top: 8px;
}

.can__topic img {
    display:block;
    padding-top: 5px;
    margin: 0 auto;
}

.can__txt {
    max-width: 160px;
    width: 100%;
    min-height: 168px;
    background: #FFF;
    padding: 8px;
}

.can__txt p{
    letter-spacing: 1.92px;
}

.can__txt span {
    color: #EF5408;
}

.PC_can_summary {
    display: none;
}

.can__summary {
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.can__summary .hukidasi {
    display: block;
    margin: 0 auto;
}

.hukidasi__bounta {
    margin: 10px auto 0;
    transform: translateX(100px);
    display: flex;
    justify-content: right;
}

.hukidasi__bounta .doron {
    display: block;
    right: 8.2%;
}

.hukidasi__bounta .bounta {
    display: block;
}

/* about2 pc */
@media screen and (min-width: 1025px) {
.can__title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.can__list {
    display: none;
}

.PC_canList {
    display: block;
    max-width: 932px;
    width: 90%;
    height: auto;
    margin: 20px auto 40px;
}

.PC_canList.fade-target.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}



.can__title h3 {
    font-size: clamp(2.6rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
    text-align: center;
}

.PC_can_summary  {
    display: inline;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(2.6rem,1vw,3.6rem);
    font-weight: 700;
    letter-spacing: 7.2px;
    text-align: center;
    white-space: nowrap;
}

.PC_can_summary span{
background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
}

.can__summary {
    display: none;
}

}
/* pc 1025px */


.second__txtGroup {
    margin-top: 23px;
}

.second__txtGroup p {
    letter-spacing: 1.92px;
}

.second__txtGroup span {
    color: #F45943;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.second__list {
    margin-top: 20px;
}

.second__list p {
    font-size: 1.8rem;
    letter-spacing: 2.16px;
}

.second__list ul {
    margin-top: 8px;
    list-style: disc;
}

.second__list li {
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%;
letter-spacing: 2.16px;
margin-left: 5.3%;
}

.second__list li::marker {
    color:#3FA5C0;
}

.second__list img {
    margin: 20px auto 0;
    display: block;
}

.PC_second {
    display: none;
}

/* about3 pc */
@media screen and (min-width: 1025px) {
.PC_second {
    display: block;
    max-width: 1160px;
    width: 100%;
    height: auto;
}

.second__txtGroup, .second__list {
    display: none;
}
}
/* pc 1025px */


/* risk */
.section__risk {
    background-color: #3FA5C0;
    margin-top: 0;
    padding: 50px 5.3% 0;
}

.risk__card {
    background-color: #FFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 13px 30px;
    margin: 0 auto;
    margin-top: -120px;
}

.risk__cardLabel {
    display: block;
    width: 30px;
    height: 36px;
    margin: 0 auto;
}

.risk__header {
    margin-top: 10px;
    text-align:center;
    background-image: url("../../images/weight25kg/attention_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    letter-spacing: 2.16px;
    white-space:nowrap;
    background-size: contain;
}

.risk__header h3 {
    margin-top: 16px;
}
.risk__header h3 .small {
    /* display: block; */
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    letter-spacing: 1.68px;
}

.risk__header {
    display: block;
}

.blue__arrow {
    display: block;
    margin: 20px auto 0;
    max-width: 400px;
    width: 100%;
}



/* risk pc */
@media screen and (min-width: 1025px) {
    .risk__card {
    margin-top: -400px;
    padding: 60px 11% 46px;
    }

    .PC_stop_shinsei {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .risk__cardLabel {
        margin: 0;
    }

    .risk__header h2 {
        text-align: center;
        font-size: clamp(2.8rem,2vw,3.6rem);
        font-weight: 700;
        letter-spacing: 7.2px;
        white-space: nowrap;
    }

    .risk__header .small {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 2.64px;
    }

    .risk__header .line {
        background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
        font-size: clamp(2.4rem,2vw,3.2rem);
        font-weight: 700;
        letter-spacing: 3.84px;
        white-space: nowrap;
    }

    .blue__arrow {
        display: block;
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
        margin-top: 60px;
    }
}
/* pc 1025px */

.answer__header {
    margin-top: 7px;
}

.answer__header img {
    display: block;
    margin: 0 auto;
}

.answer__header p {
    letter-spacing: 1.92px;
    margin-top: 10px;
}

/* answer__header pc */
@media screen and (min-width: 1025px) {
    .answer__header p {
        display: none;
    }
    .answer__header picture {
        display: block;
        max-width: 833px;
        width: 100%;
        margin: 0 auto;
    }
}
/* 1025px pc */

.answer__detail {
    margin-top: 18px;
    padding: 10px;
    border: 1px solid #595757;
}

.answer__detail ol {
    list-style: decimal;
    padding-left: 6%;
}

.answer__detail li {
letter-spacing: 1.92px;
}

.answer__detail li::marker {
    color:#F05E18;
    font-weight: 700;
}

.answer__detail img {
    margin: 15px auto;
    max-width: 500px;
    width: 100%;
    display: block;
}

.answer__detail p {
    margin-top: 15px;
}

.answer__detail a {
    border-bottom: 1px solid;
}

.answer__detail a:link {
    color: blue;
}

.answer__detail a:visited {
    color: purple;
}

.answer__btn {
    display: block;
    border-radius: 30px;
    background: #3FA5C0;
    display: flex;
    margin: 0 auto;
    margin-top: 30px;
    gap: 10px;
    max-width: 300px;
    width: 100%;
    height: 60px;
    padding: 15px auto;
    color: #FFF;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.6;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.answer__btn:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}



.answer__btn



.answer__btn img {
    display: block;
    width: 26px;
    height: 26px;
}

/* answer__detail pc */
@media screen and (min-width: 1025px) {
    .answer__detail {
    margin-top: -18px;
    padding: 50px;
    border: 1px solid #595757;
}

    .answer__detail img {
    margin-top: 15px;
    margin-left: 16px;
    max-width: 500px;
    width: 100%;
    display: block;
}

.answer__detail ol {
    list-style: decimal;
    padding-left: 3%;
}


.answer__btn {
    display: block;
    border-radius: 50px;
    background: #3FA5C0;
    display: flex;
    margin: 46 auto;
    margin-top: 30px;
    gap: 10px;
    max-width: 564px;
    width: 100%;
    height: 83px;
    padding: 20px auto;
    color: #FFF;
    text-align: center;
    font-size: 26px;
    letter-spacing: 3.12px;
}

.answer__btn img {
    width: 50px;
    height: 50px;
}

}
/* pc 1025px */


.trouble__card {
    background-color: #FFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: 18px auto 0;
    height: 2330px;
}

.trouble__title {
    display: block;
    margin: 0 auto;
}

/* trouble__card,title */
@media screen and (min-width: 1025px) {
    .trouble__card {
    margin: 40px auto 0;
    padding: 0 3.4% 0;
    height: 1800px;
}
    .trouble__title picture {
        max-width: 930px;
        width: 100%;
        height: auto;
    }
}

/* pc 1025px */

.trouble__detail .topic {
    display: block;
    margin: 0 auto;
    letter-spacing: 2.16px;
    text-align: center;
}

.trouble__detail .topic h3 {
    margin-top: 12px;
    white-space:nowrap;
}

.trouble__detail .topic .orange {
    color: #F05E18;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 1.92px;
    white-space:nowrap;
}

.card__groupe {
    margin: 0 7.1% 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.card__groupe.fade-target {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

.card__groupe.fade-target.is-animated {
  opacity: 1;
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
  80%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.card__groupe img {
    margin: 36px auto 0;
    max-width: 300px;
    width: 100%;
    display: block;
}

/* trouble__card,title */
@media screen and (min-width: 1025px) {
    .trouble__card h3 {
        margin: 10px auto;
    }

    .trouble__detail {
        padding: 0;
    }

    .trouble__detail .topic h3 {
    margin-top: 12px;
    white-space:nowrap;
    font-size: clamp(2.4rem,2vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
}

.trouble__detail .topic .orange {
    color: #F05E18;
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2.64px;
    white-space:nowrap;
}

.trouble__detail .topic .orange_big {
    color: #F05E18;
}

.card__groupe {
    margin: 30px 3.4% 40px;
    display: flex;
    flex-direction: row;
    gap: 54px;
    justify-content: center;
}

.card__groupe img {
    margin: 36px auto 0;
    max-width: 324px;
    width: 100%;
    display: block;
}

}

/* pc 1025px */

.trouble_case {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px auto;
    align-items: center;
}

.case__title {
    display: block;
    margin: 0 auto;
    max-width: 142px;
    width: 100%;
}

.pcBr {
    display: none;
}

.case__box .problem {
    margin: 20px 6% 0px;
    letter-spacing: 1.92px;
}

.case__box .grayArrow img {
    margin: 10px auto 0;
    display: block;
}

.case__box .result {
    margin-top: 10px;
    background-image: url("../../images/weight25kg/attention_icon.svg");
    background-position: center;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2.16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.helpMan {
    display: block;
    margin: 20px auto 0;
    max-width: 240px;
    width: 100%;
}


/* case */
@media screen and (min-width: 1025px) {
    .case__item{
        margin: 60px auto 0;
        display: block;
    }

    .case__title {
        display: block;
        margin: 40px 14% 0;
        max-width: 142px;
        width: 100%;
    }
    .pcBr {
        display: block;
    }

    .case__box {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
        margin-top: 30px;
    }

    .case__box .problem {
        font-family: "Noto Sans JP";
        font-size: 1.8rem;
        letter-spacing: 2.16px;
        width: 480px;
    }

    .case__box .problem p {
        font-family: "Noto Sans JP";
        font-size: 1.8rem;
        letter-spacing: 2.16px;
    }

    .case__box .grayArrow img {
        margin: 0;
        display: block;
        width: 60px;
        height: 60px;
        transform: rotate(30deg);
    }

    .case__box .result {
        margin-top: 0;
        background-image: url("../../images/weight25kg/attention_icon.svg");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        font-family: "Zen Maru Gothic";
        font-size: 2.4rem;
        font-style: normal;
        font-weight: 700;
        letter-spacing: 2.88px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 500px;
    }

    .helpMan {
        display: block;
        margin: 50px auto 0;
        max-width: 550px;
        width: 80%;
        height: auto;
}

}

/* pc 1025px */


.section__solution {
    background-image: url("../../images/weight25kg/SP_waveBack.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    margin-top: -280px;
    padding: 106px 5.3% 180px;
    overflow:hidden ;
}

/* イレギュラーレスポンシブ */
@media screen and (min-width: 426px) {
    .section__solution {
        padding: 150px 5.3% 120px;
    }
}

@media screen and (min-width: 527px) {
    .section__solution {
        padding: 200px 5.3% 260px;
    }
}

/* イレギュラーレスポンシブ */

.sectionTitle__solution img {
    margin: 0 auto;
    display: block;
}

.PCsectionTitle__solution {
    display: none;
}

.lineTitle__solution {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #F05E18;
    align-items: center;
    margin-top: 30px;
}

.lineTitle__solution:first-of-type {
    margin-top: 20px;
}

.lineTitle__solution img {
    margin-bottom: 2px;
}

.lineTitle__solution h3 {
    letter-spacing: 2.16px;
}

.lineTitle__solution span {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.omakaseMan {
    display: none;
}

/* section__solution1 */
@media screen and (min-width: 1025px) {
    .section__solution {
        margin-top: -440px;
        padding: 440px 9.7% 400px;
    }

    .sectionTitle__solution img {
        display: none;
    }

    .PCsectionTitle__solution {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
}
    .label__solution {
        display: block;
        margin: 0;
    }

    .PCsectionTitle__solution h2 {
        margin-top: 0;
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: clamp(2.8rem,2vw,3.6rem);
        font-weight: 700;
        letter-spacing: 7.2px;
        white-space: nowrap;
    }

    .lineTitle__solution{
        gap: 20px;
        align-items: center;
        margin-top: 76px;
        position: relative;
        }

    .lineTitle__solution:first-of-type {
        margin-top: 70px;
        }

    .lineTitle__solution img {
        max-width: 128px;
        width: 100%;
        margin-bottom: 2px;
        }

    .lineTitle__solution h3 {
        font-size: clamp(2.6rem,1vw,3.2rem);
        font-weight: 700;
        letter-spacing: 3.84px;
        }

    .lineTitle__solution span {
        font-size: clamp(2.6rem,1vw,3.2rem);
        font-weight: 700;
        letter-spacing: 3.84px;
        }

    .omakaseMan {
        display: block;
        max-width: 240px;
        width: 100%;
        position: absolute;
        right: 0;
    }

}

/* pc 1025px */




.solutionList {
    background-image: url("../../images/weight25kg/blueLineBox.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    height: auto;
    margin: 20px auto 30px;
    padding: 28px 9% 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.solutionList li {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    margin-top: 10px;
    white-space: nowrap;
    position: relative;
    padding-left: 28px;
}

.solutionList li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 14px;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background-image: url("../../images/weight25kg/check_icon.svg");
    background-repeat: no-repeat;
}

.solutionList ul {
    margin-top: -10px;
    height: auto;
}


/* solutionList */
@media screen and (min-width: 1025px) {
    .solutionList {
    background-image: url("../../images/weight25kg/PC_blueLineBox.svg");
    background-size: contain;
    background-position: center top;
    height: auto;
    margin: 20px auto 30px;
    padding: 28px 9% 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solutionList li {
    font-size: clamp(2.6rem,1vw,3.2rem);
    letter-spacing: 3.84px;
}

.solutionList li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 40px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url("../../images/weight25kg/check_icon.svg");
    background-repeat: no-repeat;
}

.solutionList ul {
    margin-top: -10px;
    height: auto;
}

}
/* pc 1025px */



.lineTitle__solution .min {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.lineTitle__solution .orange {
    color: #EF5408;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    white-space: nowrap;
}

.lineTitle__solution .minOrange {
    color: #EF5408;
}

/* .lineTitle__solution2 */
@media screen and (min-width: 1025px) {
    .lineTitle__solution .min {
    font-size: clamp(2.6rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
    }

.lineTitle__solution .orange {
    color: #EF5408;
    font-size: clamp(2.6rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
    }

.lineTitle__solution .minOrange {
    color: #EF5408;
    font-size: clamp(2.6rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
}
}

/* pc 1025px */


.solution__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    gap: 15px;
}

.solution__item .fade-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.solution__item .fade-target.is-animated {
  opacity: 1;
  transform: translateY(0);
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(30px) scale(0.8);
    opacity: 0;
  }
  80%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}



.reasonList {
    background-color:#FFF;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

.reasonList.fade-target {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease-out;
}

.fade-target.slide-left {
  transform: translateX(-50px); /* 左から */
}

.fade-target.slide-right {
  transform: translateX(50px); /* 右から */
}

.fade-target.is-animated {
  opacity: 1;
  transform: translateX(0);
}


.solution__summary .hukidasi {
    display: block;
    margin: 20px auto 0;
}

.solution__summary .bounta {
    display: block;
    margin: 0 auto;
    transform: translateX(160%);
}

.solution__summary p {
    display: none;
}


/* .solution__item,reasonList,summary */
@media screen and (min-width: 1025px) {
    .solution__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

        .reasonList {
        background-color:#FFF;
        margin: 30px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 50px;
    }

    .solution__summary .hukidasi {
        display: none;
    }

    .solution__summary .bounta {
        display: none;
    }

    .solution__summary p {
        display: block;
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: clamp(2.8rem,2vw,3.6rem);
        font-weight: 700;
        letter-spacing: 7.2px;
        white-space: nowrap;
        background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
        width: fit-content;
        margin: 25px auto 80px;
        }

}
/* pc 1025px */


.appFlow h3 {
    text-align: center;
}

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

.appFlow__card--1 {
    background-image: url("../../images/weight25kg/SP_flow01.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    max-width: 264px;
    width: 100%;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 20px;
}

.appFlow__card--2 {
    background-image: url("../../images/weight25kg/SP_flow02.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    max-width: 264px;
    width: 90%;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 20px;
}

.appFlow__card--3 {
    background-image: url("../../images/weight25kg/SP_flow03.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    max-width: 264px;
    width: 100%;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 20px;
}


.appFlow__card--4 {
    background-image: url("../../images/weight25kg/SP_flow04.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    max-width: 264px;
    width: 100%;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 20px;
}

.appFlow__content .grayArrow {
    margin-top: 20px;
}

.flowIcon {
    margin-top: 5px;
}

.flowTitle {
    margin-top: 20px;
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2.64px;
}

.longLine {
    margin-top: 12px;
}

.flowTxt {
    font-size: 1.6rem;
    margin-top: 20px;
    letter-spacing: 1.92px;
}

.flowTxt__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.flowTxt__link a {
    border-bottom: 1px solid;
}

.flowTxt__link .tel,
.flowTxt__link .mail :link {
    color: blue;
}

.flowTxt__link .tel,
.flowTxt__link .mail :visited {
    color: purple;
}

.detailBtn {
    display: block;
    border-radius: 30px;
    background: #3FA5C0;
    display: flex;
    margin: 30px auto;
    gap: 10px;
    max-width: 300px;
    width: 100%;
    height: 60px;
    padding: 15px auto;
    color: #FFF;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.6;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.detailBtn:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

/* app */

@media screen and (min-width: 1025px) {
    .appFlow h3 img {
    display: block;
    text-align: center;
    max-width: 450px;
    width: 100%;
    margin: 50px auto 62px;
}
.detailBtn {
    border-radius: 50px;
    background: #3FA5C0;
    margin: 30px auto;
    margin: 46 auto;
    margin-top: 30px;
    max-width: 564px;
    width: 100%;
    height: 83px;
    padding: 20px auto;
    color: #FFF;
    text-align: center;
    font-size: 26px;
    letter-spacing: 3.12px;
    margin-bottom: 80px;
}

}

@media screen and (min-width: 1221px) {

    .appFlow__content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .appFlow__card--1 {
    background-image: url("../../images/weight25kg/SP_flow01.svg");
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 23.4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 20px 20px;
}

.appFlow__card--2 {
    background-image: url("../../images/weight25kg/SP_flow02.svg");
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 23.4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 20px 20px;
}

.appFlow__card--3 {
    background-image: url("../../images/weight25kg/SP_flow03.svg");
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 23.4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 20px 20px;
}


.appFlow__card--4 {
    background-image: url("../../images/weight25kg/SP_flow04.svg");
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 23.4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 20px 20px;
}

.appFlow__content .grayArrow {
    margin-top: 160px;
    transform: rotate(30deg);
}

.flowIcon {
    margin-top: 5px;
    height: 83px;

}

.flowTitle {
    margin-top: 20px;
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2.64px;
}

.flowTitle span {
    font-size: 1.6rem;
}

.longLine {
    margin-top: 12px;
}

.flowTxt {
    font-size: 1.6rem;
    margin-top: 20px;
    letter-spacing: 1.92px;
}

.flowTxt__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.flowTxt__link a {
    border-bottom: 1px solid;
}

.flowTxt__link .tel,
.flowTxt__link .mail :link {
    color: blue;
}

.flowTxt__link .tel,
.flowTxt__link .mail :visited {
    color: purple;
}


}
/* pc 1025px */


.shortLine {
    display: block;
    margin: 0 auto 20px;
}

.servise h3 img{
    display: block;
    margin: 0 auto;
    width: 260px;
}

/* .servise h3 */
@media screen and (min-width: 1025px) {
.servise h3 img{
    display: block;
    text-align: center;
    max-width: 370px;
    width: 100%;
    margin: 50px auto 62px;
    }
}
/* pc 1025px */


.blue_back1 {
    background-image: url("../../images/weight25kg/SP_blue_back1.svg") ;
    width: 112%;
    height: 18px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    margin: 8px -5.3% 0;
    overflow: hidden;
}

.servise__content {
    background-color: #3FA5C0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -5.3%;
}

.blue_back2 {
    background-image: url("../../images/weight25kg/SP_blue_back2.svg") ;
    width: 112%;
    height: 18px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    margin: 0 -5.3%;
    overflow: hidden;
}

.servise__card {
    background-color: #FFF;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servise__item .topic {
    color: #3FA5C0;
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    margin-top: 28px;
    margin-left: 25px;
}

.servise__item .txt {
    display: block;
    font-family: "Noto Sans JP";
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3.84px;
    position: relative;
    margin-top: 5px;
}

.servise__item .txt ::before {
    position: absolute;
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background-image: url("../../images/weight25kg/check_icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 30%;
    left: 10px;

}

.servise__item .txt span {
    font-family: "Noto Sans JP";
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3.84px;
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
    margin-top: 10px;
    margin-left: 35px;
}

.servise__item .txt p {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.92px;
    white-space: nowrap;
}

.servise__list ul {
    margin-top: -10px;
    height: auto;
    margin-bottom: 28px;
}


.servise__list li {
    letter-spacing: 1.92px;
    margin-top:20px;
    position: relative;
    padding-left: 35px;
    padding-right: 10px;
}

.servise__list li::before {
    position: absolute;
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background-image: url("../../images/weight25kg/check_icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 10%;
    left: 10px;
}

.servise__list {
    position: relative;
}

.servise__list img {
    display: block;
    position: absolute;
    top: 0;
    right: 10%;
}

.payment_service {
    display: none;
}

/* payment servise */
@media screen and (min-width: 1025px) {
    .blue_back1, .blue_back2, .servise__content {
        display: none;
    }

    .payment_service {
        display: block;
        margin: 50px auto 0;
    }


}
/* pc 1025px */

/* cta */

.section__cta--second {
    background-image: url("../../images/weight25kg/SP_cta2Back.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    padding: 0 5.3% 20px;
    margin-top: -100px;
}

.section__cta--second .man {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: -20px;
    transform: translateZ(0);
}

.section__cta--first .man {
    opacity: 0; /* 初期は非表示 */
    transform: translateY(40px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section__cta--first .man.is-animated {
    animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
    0% {
        transform: translateY(40px) scale(0.8);
        opacity: 0;
    }
    80%, 100% {
        transform: translateY(0) scale(1.0);
        opacity: 1;
    }
}

.section__cta--second h2{
    display: block;
    margin: 29px auto 0;
    text-align: center;
    letter-spacing: 2.4px;
    position: relative;
    z-index: 1;
}

.sectionSub__cta {
    display: inline;
    text-align: center;
    margin-top: 29px;
}
.sectionSub__cta span {
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
}

/* cta pc*/
@media screen and (min-width: 1025px) {
    .section__cta--second {
    padding: 30px 9.7% 20px;
    margin-top: -260px;
}

.section__cta--second .man {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    transform: translateZ(0);
}

.section__cta--second h2{
    display: block;
    margin: 50px auto 0;
    text-align: center;
    text-align: center;
    /* font-size: clamp(3.2rem,3vw,3.6rem);
     */
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 7.2px;
    }

.sectionSub__cta, .sectionSub__cta span{
    display: none;
}

.PCsectionSub__cta {
    display: block;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(2.4rem,1vw,3.2rem);
    font-weight: 700;
    letter-spacing: 3.84px;
    white-space: nowrap;
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
    margin: 37px auto 0;
    width: fit-content;
}

}

/* イレギュラーレスポンシブ */
@media screen and (min-width: 426px) {
    .section__cta--second {
        padding: 0 9.7% 20px;
        margin-top: -60px;
    }
}

@media screen and (min-width: 527px) {
    .section__cta--second {
        padding: 0 9.7% 20px;
        margin-top: -260px;
    }
}

/* イレギュラーレスポンシブ */



/* ctaBtn */
.section__cta--second .ctaBtn {
    display: block;
    margin: 27px auto 0;
}

.ctaBtn__tel--section {
    display: flex;
    gap: 16px;
    background-color:#EFA62B;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 47px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    align-items: center;
}

.ctaBtn__tel--section:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.1);
    }

.ctaBtn__tel--section img {
    display: block;
    width: 26px;
    height: 26px;
}

.ctaBtn__mail--section {
    display: flex;
    gap: 16px;
    background-color:#0062AF;
    width: 280px;
    height: 46px;
    border-radius: 24px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    padding: 10px 55px;
    color: #FFF;
    text-align: center;
    justify-content: center;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    align-items: center;
}

.ctaBtn__mail--section:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.3);
    }

.ctaBtn__mail--section img {
    display: block;
    width: 26px;
    height: 26px;
}

.zoom {
    display: block;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zoom .hukidasi {
    display: block;
    margin: 0 auto;
    max-width: 660px;
    width: 100%;
}

.cta__bounta {
    margin: 20px auto 0;
    transform: translateX(50px);
    display: flex;
    justify-content: right;
}

.cta__bounta .doron {
    display: block;
    right: 8.2%;
}

.cta__bounta .bounta {
    display: block;
}

.main__ctaBtn {
    display: none;
}

/* ctaBtn pc*/
@media screen and (min-width: 1025px) {
.ctaBtn {
    display: none !important;
}

.main__ctaBtn {
    display: flex;
    height: auto;
    margin-top: 79px;
    flex-shrink: 1;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.main__ctaBtn--tel ,.main__ctaBtn--mail {
    display: block;
    display: flex;
    flex-direction: column;
    max-width: 240px;
    width: 100%;
    height: 180px;
    padding: 30px;
    gap: 30px;
    border-radius: 22px;
    box-shadow: 2px 4px 4px 0 rgba(67, 67, 67, 0.50);
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: 2.88px;
    align-items: center;
}

.main__ctaBtn--tel {
    background-color: #EFA62B;
    font-size: 2.4rem;
}

    .main__ctaBtn--tel:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.1);
    }


.main__ctaBtn--mail {
    background-color: #0062AF;
    font-size: clamp(2.4rem,2vw,3.6rem);
    font-weight: 700;
    letter-spacing: 3.84px;
}

.main__ctaBtn--mail:hover {
    transition: .3s ease-in-out;
    filter: brightness(1.3);
    }


.main__ctaBtn img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.ctaBtn {
    display: none;
}

.cta__bounta {
    margin: 20px auto 0;
    transform: translateX(0px);
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.cta__bounta .doron {
    display: block;
    max-width: 98px;
    width: 100%;
    height: auto;
    right: 8.2%;
}

.cta__bounta .bounta {
    display: block;
    max-width: 80px;
    width: 100%;
    height: auto;
}

}

/* pc 1025px */



/* boundary */
.section__boundary {
    width: 100%;
    height: auto;
    background-position: left top;
    background-image: url("../../images/weight25kg/sun_back.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 0 5.3%;
    /* align-items: center; */
}

.fade-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-target.show {
    opacity: 1;
    transform: translateY(0);
}

/* boundary pc */
@media screen and (min-width: 1025px) {
    .section__boundary {
    width: 100%;
    height: 7600px;
    background-position: center top;
    background-image: url("../../images/weight25kg/PC_baundary_back.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 0 9.7%;
    }


    .titleGroupe__boundary{
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: flex-end;
        margin-top: 50px;
    }
.label__about {
    display: block;
    margin: 0;
}

.sectionTitle__boundary {
    margin-top: 0;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: clamp(2.8rem,2vw,3.6rem);
    font-weight: 700;
    letter-spacing: 7.2px;
    white-space: nowrap;
}
}
/* pc 1025px */



.interview {
    max-width: 335px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 60px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 30px;
}

.cardTitle {
    margin: 20px auto;
}

.cardTitle img{
    display: block;
    margin: auto;
    max-width: 50px;
    width: 100%;
    height: auto;
}

.cardTitle {
    letter-spacing: 2.16px;
}

.cardTitle h3 {
    margin-top: 16px;
    line-height: 2.0;
    color: #262626;
    text-align: center;
}

.doronshow img {
    display: block;
    margin: 0 auto;
}

.PC_doronshow  p {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
    margin-top: 18px;
    text-align: center;
}

.PC_doronshow span {
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
}

.doronshowName {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
    margin-top: 50px;
    text-align: right;
}

.doronshowName span {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2.16px;
    }

/* interview pc */
@media screen and (min-width: 1025px) {
    .interview {
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
    background-color: #fff;
    border-radius: 60px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    padding: 50px 4.3%;
}

.cardTitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0;
}

.cardTitle img {
    margin: 0;
}

.cardTitle h3 {
    margin-top: 0;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3.84px;
    text-align: left;
}

.doronshow {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.doronshow img {
    display: block;
    margin: 0 auto;
    max-width: 49.6%;
    width: 100%;
    margin-left: -50px;
}

.PC_doronshow  p {
    font-size: clamp(2.0rem,2vw,2.6rem);
    letter-spacing: 3.12px;
    text-align: left;
}

.PC_doronshow span {
    background: linear-gradient(to bottom, transparent 80%, #E6916A 80%);
}

.doronshowName {
    font-size: clamp(2.0rem,1vw,2.6rem);
    letter-spacing: 3.12px;
    margin-top: 30px;
    word-wrap: nowrap;
}

.doronshowName span {
    font-size: clamp(2.2rem,1vw,2.8rem);
    letter-spacing: 3.36px;
    }

.doronshowGroup {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin-left: 56px;
}

.doronshowName .answer__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 394px;
    width: 50%;
    margin: 0 auto;
    font-size: clamp(2.2rem,1vw,2.6rem);
}

}
/* pc 1025px */


.news {
    max-width: 335px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 60px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 30px;
}

.youtube__card {
    border-radius: 30px;
    background-color: #E0F3F6;
    padding: 5%;
}

.youtube__card p {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.youtube__card .content .sp {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.youtube__card .content .pc {
    display: none;
}

.sns p {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.6;
    font-weight: 700;
    letter-spacing: 1.92px;
    margin-top: 25px;
}

.sns .content {
    display: flex;
    flex-direction: row;
    gap: 17px;
    margin-top: 18px;
}

/* news pc */
@media screen and (min-width: 1025px) {
    .news {
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 70px;
    background-color: #fff;
    border-radius: 60px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    padding: 50px 4.3%;
}

.youtube__card {
    border-radius: 60px;
    background-color: #E0F3F6;
    padding: 6.8%;
    margin-top: 50px;
}

.youtube__card p {
    font-size: 2.6rem;
    letter-spacing: 3.12px;
}

.youtube__card .content .pc {
    margin-top: 4%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
}

.youtube__card .content .sp {
    display: none;
}

.sns p {
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 3.12px;
}

.sns .content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 18px;
    justify-content: center;
}

.sns .content img {
    width: 50px;
    height: 50px;

}

}
/* pc 1025px */

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    height: 717px;
}
#card{
    max-width: 335px;
    width: 100%;
    border-radius: 30px;
    transform-style: preserve-3d;
    transition: transform .8s;
}

.card-back .click {
    margin-top: 40px;
}

.bounta__silhouette {
    display: block;
    margin: 37px auto 40px;
    max-width: 200px;
    cursor: pointer;
}

.bounta__silhouette:hover  {
    filter: brightness(1.1);
    transition: .2s ease-in-out;
}

.card-front, .card-back{
    padding: 0 5%;
    max-width: 335px;
    width: 100%;
    height: 800px;
    border-radius: 30px;
    position: absolute;
    backface-visibility: hidden;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card-back{
    background-color: #F9FEFF;
}

.card-front{
    background: #fff;
    transform: rotateY(180deg);
}

.card-frontName{
    margin-top: 20px;
}

.cardTitle p {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 16px;
}


.cardTitle span {
    color: #F05E18;
    font-family: "Zen Maru Gothic";
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 1.92px;
}

.cardTxt {
    color: var(--, #262626);
    text-align: left;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.0;
    letter-spacing: 1.92px;
}

.flexGroupe .flex {
    background-image: url("../../images/weight25kg/wrap_back.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.bigBounta {
    display: block;
    margin: 37px auto 40px;
    width: 60%;
}

.turnover{
    transform: rotateY(180deg);
}

.card-front h3 {
    display: none;
}

.pcBr {
    display: none;
}

/* wrap pc */
@media screen and (min-width: 1025px) {
    .wrap {
    display: block;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
    height: 700px;

}

#card{
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    border-radius: 60px;
    transform-style: preserve-3d;
    transition: transform .8s;
}

.card-back .click {
    margin-top: 72px;
}

.bounta__silhouette {
    display: block;
    margin: 37px auto 40px;
    max-width: 200px;
}

.card-front, .card-back{
    padding: 50px 5.3%;
    max-width: 1160px;
    width: 100%;
    height: 700px;
    border-radius: 60px;
    position: absolute;
    backface-visibility: hidden;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card-back{
    background-color: #F9FEFF;
}

.card-front .flexGroupe{
    display: flex;
    flex-direction: row-reverse;
    gap: 2%;
    align-items: center;
}

.card-frontName {
    flex: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0;
}

.card-frontName h3 {
    display: block;
    margin-top: 0;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3.84px;
    text-align: left;
}


.card-front .flex {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.cardTitle p {
    font-size: 2.8rem;
    margin-top: 50px;
    letter-spacing: 3.36px;
    display: block;
    text-align: left;
    margin-left: auto;
    white-space: nowrap;
}


.cardTitle span {
    font-size: 3.6rem;
    letter-spacing: 7.2px;
}

.cardTxt {
    font-size: clamp(2.2rem,1vw,2.6rem);
    letter-spacing: 3.12px;
    display: block;
    text-align: left;
    margin-top: 40px;
    /* white-space: nowrap; */
    margin-left: auto;
}

.cardTxt p {
    display: block;
    width: 98%;
    margin-left: auto;
}

.bigBounta {
    display: block;
    margin-top: 50px;
    max-width: 400px;
    width: 50%;
}

.turnover{
    transform: rotateY(180deg);
}
}
/* pc 1025px */


.qandA {
    background-color: #FFF;
    max-width: 335px;
    width: 100%;
    height: auto;
    margin: 150px auto 0;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 30px;
}

.cp_qa03 .cp_actab {
    position: relative;
    width: 90%;
    margin: 10px auto;
    color: #fff;
}
.cp_qa03 .cp_actab input {
    display: none;
}
/* 質問 */
.cp_qa03 .cp_actab label {
    position: relative;
    display: block;
    margin: 0 0 0 0;
    padding: 1em 2em 1em 2.5em;
    cursor: pointer;
    text-indent: 1em;
    border-radius: 0.5em;
    background-color: #E0F3F6;
    color: #262626;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.92px;
}

.cp_qa03 .cp_actab label::before {
    content: 'Q';
    color: #3FA5C0;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 2.16px;
    margin-left: -2em;
    padding-right: 0.5em;
}
/* ＋ */
.cp_qa03 .cp_actab label::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 2em;
    height: 2em;
    content: '+';
    color: #3FA5C0;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    display: inline-block;
    transition: transform 0.3s;
}
/* 答え */
.cp_qa03 .cp_actab .cp_actab-content {
    position: relative;
    overflow: hidden;
    max-height: 0;
    padding: 0 0 0 2.5em;
    border-radius: 0 0 0.5em 0.5em;
    transition: max-height 0.2s;
}
.cp_qa03 .cp_actab .cp_actab-content::before {
    position: absolute;
    content: 'A';
    font-size: 1.5em;
    margin: 0.4em 0 0 -1em;
    padding: 0;
    color: #F05E18;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 2.16px;
}
.cp_qa03 .cp_actab .cp_actab-content p {
    margin: 1em 1em 1em 0;
    color: #262626;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.92px;
}
/* 質問を開いた時の仕様 */
/* 答えの高さ */
.cp_qa03 .cp_actab input:checked ~ .cp_actab-content {
    max-height: 40em;
    border: 3px solid #3FA5C0;
}
/* 質問クリック時のアイコンの動き */
.cp_qa03 .cp_actab input:checked ~ label {
    color:#3FA5C0;
    border-radius: 0.5em 0.5em 0 0;
}
/* 質問クリック時の+の動き */
.cp_qa03 .cp_actab input[type=checkbox]:checked + label::after {
    transform: rotateZ(45deg);
    transform-origin: 50% 50%;
}

/* QA */

@media screen and (min-width: 1025px) {
    .qandA {
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 70px;
    background-color: #fff;
    border-radius: 60px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    padding: 50px 4.3%;

}

.cp_qa03 .cp_actab label {
    border-radius: 10px;
    font-size: clamp(2.0rem,1vw,2.6rem);
    letter-spacing: 3.12px;
}

.cp_qa03 .cp_actab label::before {
    font-family: "Zen Maru Gothic";
    font-size: 2.8rem;
    letter-spacing: 2.16px;
}
/* ＋ */
.cp_qa03 .cp_actab label::after {
    font-size: 2.8rem;
}
/* 答え */
.cp_qa03 .cp_actab .cp_actab-content::before {
    font-size: 2.8rem;
}
.cp_qa03 .cp_actab .cp_actab-content p {
    font-size: clamp(2.0rem,1vw,2.6rem);
    letter-spacing: 3.12px;
}

}
/* pc 1025px */

.home {
    max-width: 335px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 60px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    padding-bottom:  30px;
}

.home h3 span {
    font-size: 1.6rem;
    color: #262626;
}

.home li {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.92px;
    margin-top: 20px;
    /* white-space: nowrap; */
    margin-left: 5.3%;
}

.home li :first-of-type {
    margin-top: 0;
}

.home a {
    border-bottom: 1px solid;
}

.home a :link {
    color: blue;
}

.home a :visited {
    color: purple;
}

/* home */

@media screen and (min-width: 1025px) {
    .home {
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 70px;
    background-color: #fff;
    border-radius: 60px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    padding: 50px 4.3%;
    }

    .home h3 span {
    font-size: 2.0rem;
}

}

/* pc 1025px */

.blue_bird {
    width: 50px;
    position: relative;
    transform: translateX(-150%); /* 左の外からスタート */
    opacity: 0;
}

.blue_bird.show {
    animation: fly-across 5s ease-out forwards;
}

@keyframes fly-across {
    0% {
        transform: translateX(-150%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        transform: translateX(150%);
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}


.bigCta {
    max-width: 335px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #FFFDE8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 30px 1.2%;
    margin-bottom: 50px;
    white-space: nowrap;
}

.bigCta img {
    width: 11px;
    height: 30px;
}

.bigCta span {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.contact__form iframe {
    background-color: #fff;
    display: flex;
    align-items: center;
    margin: 0 3% 3%;
    margin-right: 3%;
}

/* home */
@media screen and (min-width: 1025px) {
    .blue_bird {
    width: 85px;
    height: auto;
    }

    .bigCta {
    background-color: #FFFDE8;
    max-width: 1160px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 70px;
    border-radius: 60px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: block;
    padding: 50px 4.3%;
    }

    .bigCta img {
    width: 20px;
    height: 60px;
}

.bigCta h3 {
    text-align: center;
    margin: 0 auto;
}

.contact__form iframe {
    background-color: #fff;
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 28px;
}

}

/* pc 1025px */


.mailMgz {
    display: block;
    margin: 0 auto;
}

.bookTitle{
    margin-top: 50px;
}

.bookTitle img {
    display: block;
    margin: 0 auto;
}

.bookTitle h3 {
    margin: 10px auto;
    text-align: center;
    color: 3FA5C0;
}

.bookTxt {
    margin-top: 30px;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.92px;
    text-align: center;
    }

.publication__img {
    display: block;
    max-width:  200px;
    height: auto;
    width: 100%;
    margin: 20px auto;
}

.pcBook {
    display: none;
}

/* others */
@media screen and (min-width: 1025px) {
    .mailMgz {
    display: block;
    margin: 97px auto;
    max-width: 1160px;
    width: 100%;
    height: auto;
}
.spBook {
    display: none;
}

.bookTitle{
    margin-top: 60px;
}

.bookTitle img {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.bookTitle h3 {
    margin: 10px auto;
    text-align: center;
    color: #3FA5C0;
    font-family: "Zen Maru Gothic";
    font-size: 3.2rem;
    letter-spacing: 3.84px;
}

.bookTxt {
    margin-top: 30px;
    font-family: "Zen Maru Gothic";
    font-size: 2.6rem;
    letter-spacing: 3.12px;
    text-align: center;
    }

.publication__img {
    display: block;
    max-width:  200px;
    height: auto;
    width: 100%;
    margin: 0;

}
.pcBook {
    display: block;
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 34px;

}

.pcBook .flexGroupe {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

}

/* pc 1025px */


.topBack {
    margin: 26px auto 260px;
    display: flex;
    justify-content: right;
    position: relative;
    z-index: 10;

}

.topBack .doron {
    margin: 0 auto;
    display: block;
    transform: translate(70%, 10%);
}


.topBack {
    animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
}
.doron {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
    0% {
    transform: translateX(-5%);
    }
    100% {
    transform: translateX(5%);
    }
}
@keyframes floating-y {
    0% {
    transform: translateY(-10%);
    }
    100% {
    transform: translateY(10%);
    }
}

.topBack .bounta {
    display: block;
    max-width: 110px;
    height: auto;
    width: 100%;
    transform: translate(50%, 10%);
}

/* topBack */
@media screen and (min-width: 1025px) {
    .topBack {
        margin-right: 9.7%;
        margin-top: 230px;
        display: flex;
        justify-content: right;
}

.topBack .doron {
    margin: 0 auto;
    display: block;
    transform: translate(70%, 10%);
    max-width: 98px;
    width: 100%;
}

.topBack .bounta {
    display: block;
    max-width: 200px;
    height: auto;
    width: 100%;
    transform: translate(50%, 10%);
}

}

/* pc 1025px */

.addGroupe {
    background-image: url('../../images/weight25kg/footer_back.svg');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -360px;
    padding: 146px 12% 40px;
    transform: translateZ(0);
}

.office {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.68px;
    margin-top: 20px;
}

.add {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.68px;
}

.commmon {
    margin-top: 40px;
}

.commmon p {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.68px;
}

.bottomGroupe {
    background-color: #E0F3F6;
    display: flex;
    flex-direction: column;
    padding: 10px 5.3%;
}

.bottomGroupe img {
    max-width: 60px;
    height: 60px;
    width: 100%;
}

small {
    font-family: "Noto Sans JP";
    font-size: 1.0rem;
    font-weight: 400;
    letter-spacing: 1.2px;
}


/* footer pc */
@media screen and (min-width: 1025px) {

.addGroupe {
    background-image: url('../../images/weight25kg/PC_footer_back.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    margin-top: -540px;
    padding: 440px 12% 40px;
    transform: translateZ(0);
    padding-left: 20%;
}

.office {
    font-size: 1.8rem;
    letter-spacing: 2.16px;
    margin-top: 27px;
}

.add {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.92px;
}


.commmon {
    margin-top: 40px;
}

.commmon p {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.92px;
}

.bottomGroupe {
    background-color: #E0F3F6;
    display: flex;
    flex-direction: column;
    padding: 30px 9.7%;
}

.bottomGroupe img {
    max-width: 150px;
    height: 150px;
    width: 100%;
}

small {
    font-family: "Noto Sans JP";
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.3px;
    margin-top: 20px;
}

}
