/* ■■■■■■ ヘッダー ■■■■■■ */
header#header {
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 100;
    background-color: #fff;
    font-family:  'Hind Vadodara', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

header#header .header-wrapper {
    margin: 0 auto;
    display: flex;
    padding: 0 30px;
    width: 100%;
    max-width: var(--pc-content-width);
    height: 96px;
    justify-content: space-between;
    font-weight: 500;
}

header#header .header-logo {
    width: 200px;
    display: flex;
}

header#header .header-logo a {
    display: flex;
}

header#header .header-logo img {
    margin: auto 0;
    max-width: 160px;
}

header#header .header-navigation {
    margin: auto 0;
}

header#header .header-navigation ul {
    display: flex;
    gap: 30px;
}

header#header .header-navigation ul li {
    color: var(--black);
}

header#header .header-navigation ul li:has(a.current) a,
header#header .header-navigation ul li a:hover {
    border-bottom: var(--black) solid 2px;
    box-sizing: border-box;
}

header#header .menu-trigger-area {
    display: none;
}
.menu_text {
    margin-top: 30px;
    padding-right: 10px;
    color: var(--Primary-600);
    position: relative;
    right: 6px;
    top: -5px;
}
@media screen and (max-width: 1060px) {
header#header .header-navigation ul li {
    max-width: 60px;
}

}
@media screen and (max-width: 767px) {
    header#header .header-wrapper {
        height: 68px;
        padding: 0 20px;
        margin-left: -10px;
    }

    header#header .header-logo {
        height: 68px;
    }
header#header .header-navigation ul li {
    max-width: 1000px;
}

    header#header .header-logo img {
        height: 68px;
    }

    header#header .menu-trigger-area {
        display: block;
        position: absolute;
        top: 12px;
        right: 20px;
        width: 28px;
        height: 28px;
        cursor: pointer;
        z-index: 200;
    }

    header#header .menu-trigger-area .menu-trigger {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 16px;
        z-index: 2;
    }

    header#header .menu-trigger-area .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--Primary-600);
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    header#header .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    header#header .menu-trigger span:nth-of-type(2) {
        top: calc(50% - 0.5px);
    }

    header#header .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    header#header .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(20px) rotate(-45deg);
        top: -12px;
    }

    header#header .active .menu-trigger span:nth-of-type(2) {
        left: 50%;
        opacity: 0;
        -webkit-animation: active-menu-bar02 .8s forwards;
        animation: active-menu-bar02 .8s forwards;
    }

    header#header .active .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-20px) rotate(45deg);
        bottom: -14px;
    }

    header#header nav.header-navigation {
        opacity: 0;
        pointer-events: auto;
        transition: opacity 0.5s ease;
        z-index: 9998;
        padding-top: 52px;
        border: none !important;
    }

    header#header:has(.active) nav.header-navigation {
        cursor: pointer;
        opacity: 1;
    }
header#header .header-navigation ul li:has(a.current) a, header#header .header-navigation ul li a:hover {
    border-bottom: none;
}
    header#header nav.header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: -1;
        padding-top: 74px;
    }

    header#header nav.header-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 20px;
    }

    header#header nav.header-navigation ul li {
        width: 100%;
        padding: 10px 0 10px 10px;
        font-size: 22px;
        border-bottom: #D1D5DC solid 1px !important;
        color: var(--Primary-600);
        font-weight: 600;
        font-family:  'Hind Vadodara', sans-serif;
        position: relative;
    }
    header#header nav.header-navigation ul li .only-sp{
        font-size: 12px;
        font-weight: normal;
        color: var(--black);
    }
    header#header nav.header-navigation ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--Primary-600);
    border-bottom: 2px solid var(--Primary-600);
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 2px;
    pointer-events: none;
}
header#header nav.header-navigation .btn_wrapper {
    padding-top: 20px;
    display: flex;
}
header#header nav.header-navigation .btn_wrapper a {
    font-size: 14px;
    width: 335px;
    height: 57px;
}
header#header nav.header-navigation .btn_wrapper > a::after {
    right: 12px;
}
header#header nav.header-navigation {
    pointer-events: none; 
}
header#header:has(.active) nav.header-navigation {
    cursor: pointer;
    opacity: 1;
    pointer-events: auto; /* ← active時のみクリック可能 */
}
}
/* ■■■■■■ メインビジュアル ■■■■■■ */
#main-visual {
    padding-top: 120px;
    background: linear-gradient(to top, #E9FFFC 0%, #ffffff 90%);
}
#main-visual-img {
    transition: opacity 1s;
    margin-right: 60px;
    max-height: 603px;
    max-width: 514px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
#logo_SSS-bw {
    margin-top: 30px;
    margin-bottom: 30px;
}
.SSS_text {
    font-size: 24px;
    letter-spacing: 0px;
    margin-bottom: 16px;
}
h1 {
    font-size: 80px;
    line-height: 96px;
    font-family:  'Hind Vadodara', sans-serif;
    font-weight: 500;
}
.at_sendai {
    font-size: 44px;
    margin-top: 35px;
    font-family:  'Hind Vadodara', sans-serif;
    font-weight: 500;
}
.bg_photo {
    position: absolute;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
.bg-1 {
    top: 340px;
    left: 60px;
}
.bg-2 {
    top: 660px;
    left: 170px;
}
.bg-3 {
    top: 180px;
    right: 100px;
}
.bg-4 {
    top: 700px;
    right: 150px;
}
@media screen and (max-width: 1060px) {
        #main-visual .df {
        flex-flow: wrap;
    }
        #main-visual-img {
        margin-left: 30px;
    }
    .tab-df {
        display: flex;
    }
    #logo_SSS-bw {
        height: 50px;
        margin-left: 50px;
    }
    .SSS_text {
        font-size: 14px;
        margin: 30px 0 0 10px;
    }
    .bg_photo {
        opacity: 0.7;
    }
.bg-1 {
    top: 500px;
    left: -50px;
    height: 66px;
}
.bg-2 {
    top: 100px;
    left: auto;
    right: 0px;
}
.bg-3 {
    top: 650px;
    right: 0px;
}
.bg-4 {
    top: 240px;
    right: 30px;
}
h1 {
    font-size: 44px;
    line-height: 55px;
    margin-left: 60px;
}
.at_sendai {
    margin-top: 15px;
    margin-left: 60px;
    font-size: 28px;
}
}

@media screen and (max-width: 767px) {
    #main-visual-img {
        width: 70%;
    }
    #main-visual .btn_wrapper a {
        font-size: 18px;
        width: 335px;
        height: 70px;
    }
}


/* ■■■■■■ News ■■■■■■ */
#News {
    margin-bottom: 240px;
}
#News .section-main {
    padding-top: 50px;
}
#News .section-main .slider-arrow {
    display: none;
}

#News .section-main .slider-container {
    width: 100%;
    margin-bottom: 40px;
}

#News .section-main .note-items {
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
}

#News .section-main .note-item {
    height: fit-content;
    background-color: #fff;
    width: 309px;
    height: 345px;
    border-radius: 10px;
    padding: 15px;
}
#News .section-main .note-items a:nth-child(n+4) {
    display: none;
}
#News .section-main .note-item figure.thumbnail {
    width: 100%;
    height: 156px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

#News .section-main .note-item figure.thumbnail img {
    height: 156px;
    object-fit: cover;
}

.news-date {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 15px;
    letter-spacing: 0px;
}
.news-title {
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    letter-spacing: 0px;
    height: 70px;
}
.news-link {
    color: var(--Primary-600);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.2s;
    justify-content: right;
    display: flex;
}
.news-link-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background: url("../img/news_link_icon.svg") no-repeat center/contain;
}

.news-more-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.news-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--Primary-600);
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(62, 201, 167, 0.08);
    width: 320px;
    height: 56px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
    position: relative;
}
.news-more-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    background: var(--Primary-600);
    border-radius: 50%;
    position: relative;
    right: -50px;

}
.news-more-icon::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    position: absolute;
    top: 8px;
    left: 7px;
    transform: rotate(-45deg);
}
.news-more-btn:hover {
    background: var(--Primary-900);
    color: #fff;
}
.news-more-btn:hover .news-more-icon {
    background: #fff;
}
.news-more-btn:hover .news-more-icon::after {
    border-color: var(--Primary-900);
}
.bg_green {
    background-color: var(--Primary-600);
    max-width: 1100px;
    height: 345px;
    z-index: -1;
    position: absolute;
    bottom: 15px;
    border-radius: 15px;
}

.bg_text {
    position: absolute;
    left: -20px;
    bottom: -290px;
    text-align: center;
    transform: translateY(-50%);
    width: 100vw;
    height: 130px;
    line-height: 1;
    font-size: 96px;
    color: #B1DDDC;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: 'Hind Vadodara', sans-serif;
    display: flex;
    width: 100%;
    overflow: hidden;
}
.alt_img {
    height: 75px !important;
}
.wrapper {

}
.loop_text:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}

.loop_text:nth-child(even) {
  animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}

@media screen and (max-width: 1060px) {
    #News .section-main .note-items .note-item {
    width: 257px;
}
}
@media screen and (max-width: 767px) {
    #News {
        padding-right: 0;
        padding-left: 0;
        padding-top: 70px;
        margin-bottom: 90px;
    }
    #News h2,#News h2 + img,#News h2 + img + h3 {
        margin-left: 20px;
    }    
    #News h2 + img {
        margin-right: 8px;
    }
    .bg_green {
    width: 93%;
    margin-left: 20px;
    }

#News .splide__arrow {
    background: var(--Primary-600);
    opacity: 1;
    height: 3em;
    width: 3em;
}
#News .splide__arrow svg {
    fill: #fff;
}
#News .news-title {
    -webkit-line-clamp: 2;
    height: 45px;

}
#News .section-main .note-item figure.thumbnail img {
    height: 120px;
}
#News .section-main .note-item {
    width: 245px;
    height: 280px;
}
#News .splide__slide {
    width: 24rem !important;
}
#News .splide__pagination {
    bottom: -40px;
}
#News .splide__pagination__page {
    background: var(--Primary-800);
    margin: 11px;
    height: 10px;
    width: 10px;
    opacity: 1;
}
.splide__pagination__page.is-active {
    background: #fff !important;
}
.news-more-wrapper {
    padding-top: 10px;
    margin-bottom: 10px;
}
.news-more-btn {
    font-size: 14px;
    width: 270px;
    padding-left: 30px;
}
.news-more-icon {
    right: -20px;
}
.bg_text {
    font-size: 44px;
    bottom: -200px;
    left: -20px;
    width: 100vw;
    transform: translateX(24.25px);
}
#News .section-main .note-item figure.thumbnail {
    height: 120px;
}
}
/* ■■■■■■ Vision ■■■■■■ */


    .Frame516{
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 65px;
    }


    .F474text{
        font-weight: bold;
        float: left;
        font-size: 40px;
        line-height: 72px; 
    }

    .Frame453{
        font-size: 16px;
        margin-left: 448px;
        margin-bottom:64px ;
        letter-spacing: 0.04em;
        width: 63.2%;
        padding-left: 48px;
    }

    .F453_1{
        padding-bottom: 28px;
    }
    .F453_2{
        padding-bottom: 28px;
    }
    
    .image_wrapper{

        margin-top: 336px;
    }

    .wrappertext{
        font-weight: bold;
        font-size: 20px;
        line-height: 36px;
        padding-bottom: 16px;
    }
    .gainenimg{
        width: 1028px;
        display: flex;
        justify-content: center; 
    }
    .Frame515 {
        margin-top: 60px;
    }
.gainen {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}
.fadeup-start {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.photo_StartupCriteria, .photo_program {
    opacity: 0;
}
    .tokutyo{
        font-weight: bold;
        font-size: 32px;
        color: #00857C;
        line-height: 36px;

    }
    .F515img{
          display: flex;
  justify-content: center; 

    }

    .whysendai1{

        width: 430.2px;
        z-index: 2;

    }
    .Billimg{
        display: flex;
        justify-content: center;
        position: relative;
        bottom: 300px;
    }

    .bill{
        display: block;
        min-width: 100vw;
        min-height: 400px;
    }


@media screen and (max-width: 1160px) {

    .Frame516{
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 65px;
    }
    .Frame453{
        font-size: 16px;
        margin-left: 448px;
        margin-bottom:64px ;
        letter-spacing: 0.04em;
        width: auto;

    }

    .gainenimg{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .bill{
        z-index: 1;
    }

}

@media screen and (max-width: 767px) {
    #Vision {
    padding-right: 30px;
    margin-bottom: -300px;
    }
    .Frame516{
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 32px;
    }
    .F474{
        display: flex; flex-direction: column;
        margin-left: 0px;
        width: 100%;
    }

    .F474text{
        float: none;
        font-weight: bold;
        font-size: 28px;
        line-height: 44px;
        margin-bottom: 48px;
        width: auto;
    }

    .Frame453{
        margin-left: 0px;
        font-size: 14px;
        margin-bottom:48px ;
        width: auto;
    }

    .F453_1{
        padding-bottom: 24px;
    }
    .F453_2{
        padding-bottom: 24px;
    }
    .wrappertext{
        font-weight: bold;
        font-size: 16px;
        line-height: 25px;
    }
    .img_wrapper {
        margin-left: 10px;
    }

    .gainen{
        max-width:335px ;
        margin-bottom:48px ;
        animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

    @keyframes fadeup {
        0% {
            transform: translateY(30px);
            opacity: 0;
        }
        80% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .tokutyo{
        font-weight: bold;
        font-size: 20px;
        color: #00857C;
        line-height: 36px;
    }
    .Frame515 {
        margin-left: 10px;
    }


    .whysendai1{
        padding-top: 32px;
        width: 440px;
        z-index: 2;
    }
        .Billimg{
        display: flex;
        justify-content: center;
    }

    .bill{
        margin-top: 205px;
        max-width: 100%;
        min-width: 101.9vw;
        z-index: 1;
    }
}



/* ■■■■■■ StartupCriteria ■■■■■■ */
#StartupCriteria {
    margin-top: -170px;
}
#StartupCriteria .df {
    padding-left: 70px;
}
.strong {
    font-weight: bold;
    font-size: 40px;
    line-height: 1.3;
    margin-top: 60px;
    margin-bottom: 50px;
    color: var(--Primary-600);
    letter-spacing: 0px;
}
.criteria-list {
    list-style: none;
    padding-left: 0;
    margin-right: 60px;
    margin-top: 50px;
}
.criteria-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.7em;
    width: 580px;
}
.criteria-list li::before {
    content: '●';
    position: absolute;
    left: 1em;
    top: 0.6em;
    color: var(--Primary-600);
    font-size: 0.7em;
    line-height: 1;
}
@media screen and (max-width: 1060px) {
}

@media screen and (max-width: 767px) {
        #StartupCriteria .btn_wrapper a {
        font-size: 18px;
        width: 335px;
        height: 70px;
    }
    #StartupCriteria .df {
        display: block;
        padding-left: 0;
        padding-top: 20px;
    }
    .strong {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 50px;
        line-height: 1.6;
    }
    .strong + img {
        margin-left: 10px;
    }
    .criteria-list {
        margin-right: 0;
    }
    .criteria-list li {
        width: auto;
    }
    .photo_wrap {
        text-align: center;
    }
}


/* ■■■■■■ Program ■■■■■■ */
#Program {
    padding-left: 35%;
}
#Program .title {
    display: flex;
    margin-bottom: 20px;
}
#Program .number {
    font-size: 28px;
    font-weight: 500;
    background-color: var(--Primary-600);
    border-radius: 100px;
    line-height: 1;
    margin-right: 30px;
    color: #fff;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#Program .title_text {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
}
#Program .title+p {
    max-width: 510px;
    margin-left: 90px;
}

#Program .title .icon {
    position: absolute;
    right: 40px;
    top: 20px;
}

#Program .title .line1 {
    position: absolute;
    left: 62px;
    top:106px;
    height: 129px;
}
#Program .title .line2 {
    position: absolute;
    left: 62px;
    top:106px;
    height: 150px;
}

#Program .title .line3 {
    position: absolute;
    left: 62px;
    top: 106px;
    height: 186px;
}

@media screen and (max-width: 767px) {
    #Program .title .line1 {
        display: none;
    }

    #Program .title .line2 {
        display: none;
    }

    #Program .title .line3 {
        display: none;
    }
}
.photo_program {
    position: absolute;
    left: 0;
    top: 410px;
    z-index: -1;
    width: 30%;
    max-width: 500px;
    min-width: 200px;
}
.content_box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 0;
    max-width: 920px;
    min-width: 810px;
    margin-top: 70px;
}
.content_box > div {
    padding: 20px 40px;
    position: relative;
}
.content_box .gray_line {
    border-bottom: #D1D5DC solid 1px;
    display: block;
    margin-top: 45px;
    margin-left: 90px;
}
.partner_box {
    background-color: var(--Primary-600);
    color: #fff;
    padding: 40px;
    margin-top: 60px;
    border-radius: 10px;
    max-width: 920px;
    min-width: 810px;
}
.partner_box .df {
    font-size: 28px;
    font-weight: bold;
    align-items: center;
    margin-bottom: 20px;
}
.partner_box .df p {
    margin-left: 15px;
}
@media screen and (max-width: 1060px) {
}

@media screen and (max-width: 767px) {
    #Program {
    padding-left: 20px;
    padding-top: 60px;
    padding-bottom: 380px;
}

.content_box {
    margin-top: 40px;
    min-width: auto;
    width: 90vw;
    padding-bottom: 0;
}
.content_box > div {
    padding: 8px 25px;
}
.content_box > div:last-child {
    padding-bottom: 60px;
}
.content_box > div:last-child .title_text {
    display: block !important;
}
.content_box > div:last-child .title_text span {
    font-size: 16px !important;
}
#Program .title {
    margin-bottom: 10px;
}
#Program .title_text {
    font-size: 20px;
}

#Program .number {
    font-size: 20px;
    width: 44px;
    height: 44px;
    margin-right: 15px;
}
#Program .title .line {
    display: none;
}
#Program .title+p {
    margin-left: 60px;
}
.photo_wrap img {
    content: url("../img/photo_StartupCriteria_sp.png");
    width: 70%;
    min-width: 335px;
    margin-top: 20px;
}
#Program .title .icon {
    position: absolute;
    right: 30px;
    top: auto;
    bottom: 20px;
    width: 27px;
}
.partner_box {
    min-width: auto;
    width: 90vw;
    padding: 25px
}
.photo_program {
    content: url("../img/photo_program_sp.png");
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    margin-bottom: 40px;
}
.partner_box .df {
    font-size: 20px;
    margin-bottom: 20px;
}
.partner_box .df img {
    width: 32px;
}
}


/* ■■■■■■ CaseStudies ■■■■■■ */
#CaseStudies {
    padding-bottom: 210px;
}
.case-slider-wrapper {
    padding-top: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.case-slider {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-bottom: 24px;
}
.case-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(62, 201, 167, 0.08);
    width: 507px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
}
.corporate-logo {
    height: 120px;
}
.case-logo-area {
    background: #e5e5e5;
    color: #fff;
    text-align: center;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.case-card-body {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;

}
.case-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 18px;
}
.case-desc {
    margin-bottom: 8px;
}
.case-summary {
    background: #F9F9F9;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.case-summary-title {
    font-weight: bold;
}


#CaseStudies .splide__arrow {
    background: var(--Primary-600);
    opacity: 1;
    height: 3em;
    width: 3em;
    top: 112%;
}
#CaseStudies .splide__arrow svg {
    fill: #fff;
}
#CaseStudies .splide__arrow--prev {
    left: 28%;
}
#CaseStudies .splide__arrow--next {
    right: 28%;
}
#CaseStudies .section-main .note-items .note-item figure.thumbnail img {
    height: 120px;
}
#CaseStudies .section-main .note-items .note-item {
    width: 245px;
    height: 280px;
}
#CaseStudies .splide__pagination {
    bottom: -75px;
}
#CaseStudies .splide__pagination__page {
    background: #D9D9D9;
    margin: 11px;
    height: 10px;
    width: 10px;
    opacity: 1;
}
#CaseStudies .splide__pagination__page.is-active {
    background: var(--Primary-600) !important;
}
.dummy_CS {
    text-align: center;
    font-size: 42px;
    padding-top: 50px;
    text-decoration: underline;
    font-family:  'Hind Vadodara', sans-serif;
}

@media screen and (max-width: 1060px) {

}
@media screen and (max-width: 767px) {
    #CaseStudies {
        padding-top: 70px;
    }
    .case-slider {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    .case-card {
        max-width: 335px;
    }
    .case-title {
        font-size: 16px;
    }
#CaseStudies .splide__slide {
    width: 34rem !important;
}
#CaseStudies .splide__arrow--prev {
    left: 10% !important;
}
#CaseStudies .splide__arrow--next {
    right: 20% !important;
}
#CaseStudies .splide__slide img {
    height: 120px;
}
#CaseStudies .splide__pagination {
    left: -40px;
}
.dummy_CS {
    font-size: 22px;
    padding-top: 50px;
}
}


/* ■■■■■■ Contact ■■■■■■ */
#Contact {
    background-color: var(--Primary-800);
    text-align: center;
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding-bottom: 70px;
}
#Contact h4 {
    font-size: 96px;
    font-weight: 500;
    padding-top: 80px;
    padding-bottom: 50px;
    font-family:  'Hind Vadodara', sans-serif;
}
#Contact p {
    text-align: center;
}
#Contact dl {
    display: flex;
    flex-flow: wrap;
    margin: 30px;
    align-items: center;
}
#Contact dl dt {
    text-align: left;
    width: 150px;
    font-weight: bold;
    padding-right: 20px;
    border-bottom: var(--Primary-600) solid 1px;
    padding: 10px;
}
#Contact dl dd {
    text-align: left;
    width: 70%;
    border-bottom: var(--Primary-600) solid 1px;
    padding: 10px;
}
.contact_btn_wrapper {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
}
.contact_btn_wrapper > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1100px;
    height: 153px;
    background: var(--black);
    border-radius: 100px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    position: relative;
    transition: background 0.4s, box-shadow 0.4s, color 0.4s;
    z-index: 2;
    padding: 0;
    overflow: hidden;
    gap: 16px; /* テキストとアイコンの間隔 */

}
.contact_btn_wrapper > a::after {
    content: '';
    position: absolute;
    right: 40px;
    display: inline-block;
    width: 62px;
    height: 62px;
    background: url("../img/bullet_green.png") no-repeat center/contain;
    margin-left: 12px;
}
.contact_btn_wrapper > a:hover {
    background: #fff;
    color: var(--Primary-600);
}
@media screen and (max-width: 1060px) {
    #Contact .df {
        flex-flow: wrap;
        justify-content: center;
    }
    .contact_btn_wrapper > a {
        width: 80vw;
        height: 73px;
        font-size: 14px;
    }
    .contact_btn_wrapper > a::after {
    right: 12px;
    width: 30px;
    height: 30px;
}
#Contact dl {
    margin: 0;
    margin-top: 20px;
}
#Contact dl dt {
    border-bottom: none;
    height: 30px !important;
    width: 100%;
}
#Contact dl dd {
    width: 100%;
}
}

@media screen and (max-width: 767px) {
    #Contact h4 {
        font-size: 48px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/* ■■■■■■ FAQ ■■■■■■ */
#FAQ h4 {
    font-size: 72px;
    font-weight: 500;
    font-family:  'Hind Vadodara', sans-serif;
    text-align: center;
    margin-top: 90px;
}
#FAQ .h3_wrapper{
    text-align: center;
    justify-content: center;
    padding-top: 50px;
}
#FAQ h3 {
    font-size: 20px;
    margin: 7px;
}
#FAQ .section-main .faq-items{
    display: flex;
    flex-direction: column;
    letter-spacing: 0px;
    padding: 40px 0;
}
#FAQ .section-main .faq-items .faq-item{
    padding: 25px 0;
    border-bottom: #D1D5DC solid 2px;
}
#FAQ .section-main .faq-items .faq-item:last-child {
    border-bottom: none;
}
#FAQ .section-main .faq-items .faq-item summary,
#FAQ .section-main .faq-items .faq-item .faq-answer{
    line-height: 2.6rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-right: 6.2%;
    position: relative;
    text-align: justify;
    align-items: center;
}

#FAQ .section-main .faq-items .faq-item summary{
    font-weight: bold;
}
#FAQ .section-main .faq-items .faq-item summary::before,
#FAQ .section-main .faq-items .faq-item .faq-answer::before{
    content: '';
    display: inline-block;
    width: 56px;
    height: 56px;
    background: url("../img/Q.png") no-repeat center/contain;
    vertical-align: middle;
    margin-right: 30px;
}

#FAQ .section-main .faq-items .faq-item summary::after {
    content: '';
    background: url("../img/+.svg") no-repeat center/contain;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
}
#FAQ .section-main .faq-items .faq-item details[open] summary::after {
    background: url("../img/-.svg") no-repeat center/contain;
}
#FAQ .section-main .faq-items .faq-item .faq-answer{
    font-weight: normal;
    margin-top: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in
}
#FAQ .section-main .faq-items .faq-item details[open] .faq-answer{
    max-height: 300px;
}
#FAQ .section-main .faq-items .faq-item .faq-answer::before{
    content: '';
    display: inline-block;
    width: 56px;
    height: 56px;
    background: url("../img/A.png") no-repeat center/contain;
    vertical-align: middle;
    margin-right: 30px;
}
@media screen and (max-width: 767px) {
    #FAQ .section-sub-title{
        margin: 40px 0;
    }
    .faq-1,
    .faq-2 {
        padding-top: 60px;
        margin-top: -60px;
    }
    #FAQ .section-main .faq-items .faq-item{
        padding: 20px 20px;
    }
    #FAQ .section-main .faq-items .faq-item summary{
        padding-right: 34px;
        font-size: 1.4rem;
        width: 96%;
        align-items: start;
    }
    #FAQ .section-main .faq-items .faq-item .faq-answer{
        padding-right: 0;
        font-size: 1.4rem;
    }
    #FAQ .section-main .faq-items .faq-item summary::before,
    #FAQ .section-main .faq-items .faq-item .faq-answer::before{
        font-size: 1.8rem;
        min-width: 36px;
        margin-top: 0;
    }
    #FAQ .section-main .faq-items .faq-item summary::after{
        top: 18px;
        right: -20px;
    }
}

@media screen and (max-width: 1060px) {
}

@media screen and (max-width: 767px) {
    #FAQ h4 {
    font-size: 40px;
    margin-top: 0;
}
#FAQ .h3_wrapper {
    padding-top: 25px;
    align-items: center;
}
}


/* ■■■■■■ フッター ■■■■■■ */
footer {
    background-color: var(--Primary-800);
    text-align: center;
    color: #fff;
    border-radius: 20px 20px 0 0;
}
footer .df {
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}
footer p {
    text-align: center;
    font-weight: 300;
    font-size: 0.9em;
}
.fz56 {
    font-size: 56px;
    font-family:  'Hind Vadodara', sans-serif;
    padding: 10px 0;
}
.fz20 {
    font-size: 20px;
    font-weight: bold;
    padding: 25px 0 20px;
}
.description_text {
    margin: 35px 10px;
}
.privacy+p {
    border-top: var(--Primary-600) solid 1px;
    margin-top: 35px;
    padding-top: 35px;
}
.privacy {
    position: relative;
    display: inline-block;
    padding-right: 24px;
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
}
.privacy::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 2px;
}
.copyright {
    font-size: 14px;
    font-weight: 300;
    font-family:  'Hind Vadodara', sans-serif;
}
@media screen and (max-width: 767px) {
    footer {
        padding: 60px 20px 20px;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {

}

/* style.cssに追加 */
.note-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(62,201,167,0.08);
    margin: 0 12px 24px 12px;
    padding: 16px;
    width: 320px;
    display: inline-block;
    vertical-align: top;
}
.note-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}
.note-card-desc {
    font-size: 14px;
    color: #444;
}
@media screen and (max-width: 1060px) {
    #Note-embed {
        padding: 0 0 24px 0;
    }
    .note-card {
        width: 90vw;
        margin: 0 8px 16px 8px;
        display: none;
    }
    .note-card.splide__slide {
        display: block;
        width: 100%;
        margin: 0;
    }
    .fz56 {
        font-size: 24px;
        line-height: 32.8px;
        padding: 0;
    }
    .fz20 {
        font-size: 14px;
    }
    footer .df {
        gap: 7px;
        margin: 10px 0;
    }
}

@media screen and (max-width: 767px) {
    .description_text {
        font-size: 12px;
    }
    .privacy {
        font-size: 12px;
    }
    .privacy+p {
        margin-top: 20px;
        padding-top: 20px;
    }
}

