@charset "utf-8";

:root {
    --main-blue: #1F3C8A;
    --base-color: #FFFFFF;
    --bk-blue: #F2F6FF;
    --bk-white: #FFFFFF;
    --text-black: #000100;
    --text-white: #FFF;
    --text-red: #A4144A;
    --text-blue: #1F3C8A;
    --grad-red: linear-gradient(90deg,#FF3E87 0%, #A5144B 100%);
    --grad-blue: linear-gradient(90deg,#224289 0%, #0F253E 100%);

    /* --text-color: #1E1F21; */
} 


/* 要素全部にアウトライン（はみ出し確認用）*/
/* * {
    outline: 1px solid #eb5757; 
} */

/* フォント記載例*/
/* .noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.shippori-mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.forum {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
} */







/*--------------------------------
 全体
---------------------------------*/
html {
    /* スムーズスクロール ページ内移動をゆったりと*/
    scroll-behavior: smooth;
    /* ビヨヨン効果を無効化する */
    overscroll-behavior: none;
    /* font size 基準16px → 10px */
    /*font-size: 62.5%;   1rem=10px 16px*0.625=10px */
    overflow-x: hidden; /* はみ出す部分を非表示 */
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    letter-spacing: .04em;
    color: var(--text-black);
    background-color: var(--base-color);
    margin: 0;
    overflow-x: hidden; /* はみ出す部分を非表示 */

}
body * {
    box-sizing: border-box;

}
section {
    overflow: hidden; /* はみ出す部分を非表示 */
    position: relative;
}

h2 {
    margin: 0;
}

p {
    line-break: anywhere;
}

a {
    /* color: var(--text-color); */
    text-decoration: none;
    transition: all 0.3s ease-out;
}

/* a:visited {
    color: inherit;
} */

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    margin: 0;
}
ul li {
    list-style: none;
}

.sp {
    display: none;
}

/*--------------------------------
 共通パーツ
---------------------------------*/
.sec_ttl_en {
    font-family: "Forum", serif;
    line-height: 1.7;
    opacity: 0.06;
    white-space: nowrap
}

.sec_ttlbox {
    text-align: center;
}
.sec_ttl {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .04em;
    color: var(--text-blue);
    margin-bottom: 28px;
}
.sec_ttl_sub {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .04em;
    color: var(--text-blue);
    margin-bottom: 16px;
}
.sec_ttl_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .04em;

}

.h3_ttl {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .04em;
}

.cta_btn_k {
    background: var(--grad-red);
}
.cta_btn_c {
    background: var(--grad-blue);
}


/*--------------------------------
 header
---------------------------------*/

#header {
    background-color: #ffffff80;
    backdrop-filter: blur(10px);
    /* width: 100%; */
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 42px;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 10;
}

.header ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header ul a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
}

.header_right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_right a {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    padding: 10px 10px 10px 24px;
    border-radius: 6px;
}


.header_right a img {
    width: 32px;
}

#header a:hover {
    opacity: 0.7;
}


/*--------------------------------
 fv
---------------------------------*/
#fv {
    display: flex;
    /* height: 796px; */
    overflow-y: hidden;
}

.fv_left {
    width: 50%;
}

.fv_logo_grp {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.fv_cta_grp {
    display: flex;
    gap: 12px;
    width: 33.8vw;
    position: absolute;
    left: 6.7vw;
    bottom: 5.7vw;
}

.fv_cta_grp a:hover {
    opacity: 0.7;
}


.fv_right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.fv_batch {
    width: 17vw;
    position: absolute;
    bottom: -31px;
    right: -4px;
    z-index: 5;
}



.slide-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: block;
    line-height: 0;
    font-size: 0;
    animation: slide-flow 300s infinite linear  both;
}

.slide {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


@keyframes slide-flow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}



/*--------------------------------
 cta_sec
---------------------------------*/
.cta_sec {
    background-image: url(../images/cta_sec_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta_sec .sec_ttl_en {
    font-size: 150px;
    color: var(--text-white);
    letter-spacing: .2em;
    position: absolute;
    top: -74px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}


.cta_sec_inner {
    width: 1000px;
    margin: 0 auto;
    padding: 48px 0;
    position: relative;
}

.cta_sec_box {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.cta_sec_ttl {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: .04em;
    margin-bottom: 28px;
    position: relative;
}

.cta_sec_ttl span {
    background: linear-gradient(transparent 0%, transparent 70%,#BC1B59 71%,#BC1B59 100%);
}

.cta_sec_text1,
.cta_sec_text2,
.cta_sec_text3 {
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .04em;
}
.cta_sec_text1 {
    font-size: 15px;
    margin-bottom: 16px;
}
.cta_sec_text2 {
    font-size: 15px;
    margin-bottom: 12px;
}
.cta_sec_text3 {
    font-size: 10px;
}

.cta_sec_cta_grp {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.cta_sec_cta_grp a {
    width: 246px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    padding: 18px 10px 18px 30px;
    border-radius: 6px;
    background-color: #0F253E;
}
.cta_sec_cta_grp a:hover {
    opacity: 0.7;
}
.cta_sec_cta_grp a img {
    width: 36px;
}

.cta_sec_batch {
    width: 152px;;
    position: absolute;
    top: 28px;
    left: -16px;
    z-index: 1;
}

/*--------------------------------
 witch
---------------------------------*/
#witch {
    background-color: var(--bk-blue);
}

#witch .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.witch_sec_inner {
    width: 1000px;
    margin: 0 auto;
    padding: 112px 0 95px;
    position: relative;
}

.witch_sec_box {
    display: flex;
    color: var(--text-white);
    margin-top: 58px;
    margin-bottom: 38px; 
}

.witch_sec_box .h3_ttl {
    text-align: center;
    margin-bottom: 28px;
}

.witch_sec_box_left {
    width: 50%;
    background-image: url(../images/witch_bg01.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px 0 0 20px;
    padding: 38px 45px 48px;
    position: relative;
}


.witch_sec_box_right {
    width: 50%;
    background-image: url(../images/witch_bg02.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 20px 20px 0;
    padding: 38px 45px 48px;
    position: relative;
}

.witch_sec_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .04em;
}
.witch_sec_list li {
    display: flex;
    gap: 6px;
}
.witch_sec_list img {
    width: 22px;
}


.witch_sec_box_left_img1 {
    width: 100px;
    position: absolute;
    left: -36px;
    bottom: -47px;
}

.witch_sec_box_right_img2 {
    width: 156px;
    position: absolute;
    right: -37px;
    bottom: -51px;
}

.witch_sec_box2 {
    font-size: 28px;
    font-weight: 700;
    color: #1B1B1B;
    text-align: center;
}

.witch_sec_box2_img {
    width: 72px;
    margin: 0 auto;
}

.witch_sec_box2_text {
    padding: 28px 0;
    margin-top: 20px;
}

.witch_sec_box2_text1 {
    margin-bottom: 14px;
}
.witch_sec_box2_text2 span {
    color: var(--text-white);
    background: linear-gradient(90deg,#ED3178 0%, #A5144B 100%);
    padding: 0 4px 2px;
    margin-right: 10px;
}


/*--------------------------------
 impact
---------------------------------*/
#impact {
    background-image: url(../images/impact_bg.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}



#impact .sec_ttl_en {
    font-size: 134px;
    color: #FFFFFF;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.impact_sec_inner {
    width: 1000px;
    margin: 0 auto;
    padding: 110px 40px 138px;
    position: relative;
}


#impact .sec_ttl_sub,
#impact .sec_ttl,
#impact .sec_ttl_text  {
    color: var(--text-white);
}


.impact_sec_box {
    width: 100%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.impact_sec_box_item {
    position: relative;
}


.impact_item_source_grp {
    position: absolute;
    bottom: 40px;
    right: 56px;
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.impact_item_source {
    display: flex;
    gap: 2px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.7;
    color: #949494;
    /* margin-top: 47px; */
}

.impact_item_source a {
    text-decoration: underline;
}


/*--------------------------------
 about1
---------------------------------*/
#about1 {
    z-index: 0;
}
.swiper_slide02 {
    width: 100%;
}
.swiper_slide02 .swiper-wrapper {
    transition-timing-function: linear;  /* 一定速度にする */
}


/*--------------------------------
 about2
---------------------------------*/
#about2 {
    background-image: url(../images/about2_bg.jpg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    overflow: visible !important;
    padding-bottom: 80px;
}

.about2_item1 {
    max-width: 716px;
    margin-top: -40px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.about2_item2 {
    max-width: 348px;
    margin-bottom: 43px;
}
.about2_item3 {
    max-width: 1220px;
    margin-bottom: 130px;
}
.about2_item4 {
    max-width: 920px;
}





/*--------------------------------
 core
---------------------------------*/
#core {
    background-color: var(--bk-blue);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#core .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.core_item1 {
    max-width: 1240px;
}


/*--------------------------------
 features
---------------------------------*/
#features {
    background-color: var(--bk-white);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#features .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.features_item1 {
    max-width: 1000px;
    position: relative;
}

.features_item2 {
    width: 100px;
    position: absolute;
    right: 6px;
    bottom: 133px;
}


/*--------------------------------
 benefits
---------------------------------*/
#benefits {
    background-color: var(--bk-blue);
    padding: 110px 0 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#benefits .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.benefits_item1 {
    max-width: 672px;
    position: relative;
    margin-bottom: 80px;
}

.benefits_item2 {
    width: 100%;
}

.benefits_item3 {
    max-width: 920px;
    margin-top: -65px;
}



/*--------------------------------
 learning
---------------------------------*/
#learning {
    background-color: var(--bk-white);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#learning .sec_ttl_en {
    font-size: 140px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.learning_item1 {
    max-width: 710px;
    position: relative;
    margin-bottom: 80px;
}

.learning_item2 {
    max-width: 1240px;
}


/*--------------------------------
 certified
---------------------------------*/
#certified {
    background-color: var(--bk-blue);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#certified .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.certified_item1 {
    max-width: 920px;
    position: relative;
    margin-bottom: 76px;
}

.certified_item2 {
    max-width: 920px;
}



/*--------------------------------
 formats
---------------------------------*/
#formats {
    background-color: var(--bk-white);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#formats .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.formats_item1 {
    max-width: 920px;
    position: relative;
    margin-bottom: 120px;
}

.formats_item2 {
    max-width: 920px;
}




/*--------------------------------
 trusted
---------------------------------*/
#trusted {
    background-color: var(--bk-blue);
    padding: 110px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#trusted .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.trusted_item1 {
    max-width: 452px;
    position: relative;
    margin-bottom: 80px;
}

.trusted_item2 {
    width: 100%;
}
.swiper_slide03 {
    width: 100%;
}
.swiper_slide03 .swiper-wrapper {
    transition-timing-function: linear;  /* 一定速度にする */
}


.trusted_item3 {
    max-width: 1000px;
    margin-top: -132px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}
.trusted_item4 {
    max-width: 1000px;
}




/*--------------------------------
 Pricing
---------------------------------*/
#Pricing {
    background-color: var(--bk-white);
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Pricing .sec_ttl_en {
    font-size: 146px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.Pricing_item1 {
    max-width: 562px;
    position: relative;
    margin-bottom: 80px;
}

.Pricing_item2 {
    max-width: 920px;
}


/*--------------------------------
 faq
---------------------------------*/
#faq {
    background-color: var(--bk-blue);
    padding: 110px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#faq .sec_ttl_en {
    font-size: 150px;
    color: #0F253E;
    letter-spacing: .03em;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.faq_item1 {
    max-width: 276px;
    position: relative;
    margin-bottom: 65px;
}

.faq_item2 {
    max-width: 1000px;
}






/*--------------------------------
 footer
---------------------------------*/
#footer {
    background-color: #0F253E;
    padding-bottom: 10px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    padding: 58px 85px 0 78px;
}

.footer_grp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer_logo {
    width: 100%;
    max-width: 220px;
}

.footer_snsbox {
    display: flex;
    gap: 20px;
    margin-top:32px;
}

.footer_snsbox a {
    display: inline-block;
    width: 30px;
}

.footer_grp ul {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
}

.footer_grp ul li a {
    font-size: 15px;
    font-weight: 700;
    color: var(--base-color);
}
.footer_cta_btn {
    width: 246px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
}

.footer_link_box {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.footer_link_box a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--base-color);
    border-bottom: 1px solid var(--base-color);
}

.footer_link_box a img {
    width: 14px;
    margin-left: 4px;
}

.footer_bottom {
    padding: 12px 85px 12px 78px;
    margin: 0 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--base-color);
    border-top: 1px solid #FFFFFF30;
}

#footer a:hover {
    opacity: 0.7;
}


/*=====================================
 1440px以下
=====================================*/
@media screen and (max-width: 1440px) {

}

/*=====================================
 1280px以下
=====================================*/
@media screen and (max-width: 1280px) {

}


/*=====================================
 1080px以下
=====================================*/
@media screen and (max-width: 1080px) {

}


/*=====================================
 768px以下
=====================================*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }

    #header {
        display: none;
    }

    #sp_header {
        position: fixed;
        top: 0;
        left:0;
        background-color: var(--bk-white);
        width: 100%;
        z-index: 10;
        padding: 10px 21px;
    }
    #sp_menu {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        margin-left: auto;
    }
    .sp_menu_line {
        width: 100%;
        height: 1px;
        background-color: var(--main-blue);
        position: relative;
        transition: all 0.3s ease-out;
    }

    .openbtn.active .sp_menu_line2 {
        background-color: transparent;
    }
    .openbtn.active .sp_menu_line1 {
        transform: rotate(20deg);
        top:7px;
    }
    .openbtn.active .sp_menu_line3 {
        transform: rotate(-20deg);
        bottom:7px;
    }



    #g-nav {
        position: fixed;
        top: 60px;
        right: -100%;
        background-image: url(../images/sp_nav_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: calc(100dvh - 60px);
        z-index: 20;
        padding: 10px 21px;
        transition: all 0.3s ease-out;
    }
    #g-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin: 80px 0;
    }
    #g-nav ul a {
        color: var(--text-white);
        font-size: 20px;
        font-weight: 700;
    }
    #g-nav .nav_ctabox {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    #g-nav .nav_ctabox a {
        width: 315px;
        display: block;
    }

    #g-nav.panelactive {
        right: 0px;
    }




    #fv {
        height: 100dvh;
    }

    .sp_fv {
        width: 100%;
        height: 100%;
    }

    .sp_fv_img {
        width: 91.5%;
        margin: 39% auto 0;
    }


    .slide-container {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
    }

    .slide-wrapper {
        display: block;
        line-height: 0;
        font-size: 0;
        animation: slide-flow 150s infinite linear both;
    }

    .slide {
        display: block;
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }


    @keyframes slide-flow {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }





    .cta_sec {
        background-image: url(../images/sp_contact_bg.png);
        background-size: 100%;
        background-position: top;
        background-repeat: no-repeat;
    }

    .cta_sec_001 {
        width: 89.3%;
        margin: 12.8% auto 10%;
    }
    .cta_sec_002 {
        width: 25.6%;
        position: absolute;
        top: 6.2%;
        left: 2.5%;
        z-index: 1;
    }

    .cta_sec_cta1,
    .cta_sec_cta2 {
        width: 89.3%;
        margin: 0 auto;
    }
    .cta_sec_cta1 {
        margin-bottom: 16px;
    }
    .cta_sec_cta2 {
        margin-bottom: 16%;
    }


    .sp_witch_001 {
        width: 100%;
    }

    #impact {
        background-image: url(../images/sp_impact_bg.png);
    }

    .sp_impact001,
    .sp_impact002,
    .sp_impact003,
    .sp_impact004,
    .sp_impact005 {
        width: 91.5%;
        margin: 0 auto;
    }
    .sp_impact001 {
        margin-top: 16%;
        margin-bottom: 12.8%;
    }
    .sp_impact002,
    .sp_impact003,
    .sp_impact004 {
        margin-bottom: 4%;
    }
    .sp_impact005 {
        margin-bottom: 16%;        
    }
    .sp_impact002 {
        position: relative;
    }
    .sp_impact002 .impact_item_source_grp {
        position: absolute;
        bottom: 5.3%;
        left: 4.6%;
        width: 90%;
    }
    .sp_impact003 {
        position: relative;
    }
    .sp_impact003 .impact_item_source_grp {
        position: absolute;
        bottom: 0;
        top: 50%;
        left: 4.6%;
        width: 90%;
    }


    #about2 {
        background-image: url(../images/sp_about2_bg.jpg);
        padding-bottom: 0;
    }

    .about2_item1 {
        width: 91.5%;
        margin-top: -50px;
        margin-bottom: 23.5%;
    }
    .about2_item2 {
        width: 85.6%;
        margin-bottom: 0;
    }
    .about2_item3 {
        margin-bottom: 0;
    }

    #core {
        padding: 0;
    }


    #features {
        padding: 0;
    }
    .features_item3 {
        width: 100%;
        position: absolute;
        top: 27.3%;
        left: 4%;
        overflow-x: scroll;
    }
    .features_item3_img {
        width: 187%;
    }

    #benefits {
        padding: 0;
    }
    .benefits_item1 {
        margin-bottom: 0;
    }

    #learning {
        padding: 0;
    }
    .learning_item1 {
        margin-bottom: 0;
    }

    #certified {
        padding: 0;

    }
    .certified_item1 {
        margin-bottom: 0;
    }
    .certified_item3 {
        width: 100%;
        position: absolute;
        top: 9.3%;
        left: 4%;
        overflow-x: scroll;
    }
    .certified_item3_img {
        width: 245%;
    }



    #formats {
        padding: 0;
    }
    .formats_item1 {
        margin-bottom: 0;
    }


    #trusted {
        padding: 0;
    }
    .trusted_item1 {
        margin-bottom: 0;
    }
    .trusted_item3 {
        max-width: 91.5%;
        margin-top: -14.5%;
        margin-bottom: 0;
    }

    #Pricing {
        padding: 0;
    }
    .Pricing_item1 {
        margin-bottom: 0;
    }


    #faq {
        padding: 0;

    }
    .faq_item1 {
        max-width: 100%;
        margin-bottom: 0;
    }


    #footer {
        padding-bottom: 18%;
    }
    .footer_top {
        flex-direction: column;
        align-items: center;
        padding: 60px 14px 0 14px;
    }


    .footer_snsbox {
        gap: 20px;
        margin-top: 32px;
        justify-content: center;
    }

    .footer_snsbox a {
        width: 30px;
    }

    .footer_grp {
        align-items: center;
        margin-top: 60px;
    }
    .footer_logo {
        max-width: 80%;
    }
    .footer_grp ul {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 60px;
    }
    .footer_cta_btn {
        width: 95%;
        margin-bottom: 80px;
    }
    .footer_link_box {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .footer_link_box a {
        width: fit-content;
    }
    .footer_bottom {
        padding: 10px 0 9px;
        font-size: 10px;
    }

    #float {
        position: fixed;
        left: 0;
        bottom: -2px;
        z-index: 10;
        width: 100%;
        display: flex;
    }
    #float.hidden {
        opacity: 0;
        transform: translateY(100px); /* 下に隠す */
        pointer-events: none; /* クリック不可に */
    }

    #float a {
        width: 50%;
    }

}
