@charset "UTF-8";

p,
ul, li, span,div  {
    font-family: ryo-display-plusn,sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
}
img {
    width: 100%;
}



    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: ryo-display-plusn,sans-serif;
            max-width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        /* Background geometric shapes */
 
        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 8px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        .logo img {
            max-height: 40px;
        }

        /*.logo::before {
            content: '';
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
            border-radius: 50%;
            display: inline-block;
        }*/



        .download-btn-header {
            background: #333;
            color: white;
            padding: 8px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 800;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 4px solid #dcdcdc;
        }

        .download-btn-header:hover {
            background: #555;
            border: 6px solid #dcdcdc;
            transform: translateY(-2px);
        }

        .download-btn-header::after {
            content: '→';
            font-weight: bold;
        }

        /* Main content */
        .hero {
            padding-top: 60px;
            background-image: url(../image/co-marketing/bg_co_market.png);
            position: relative;
            background-position: top center;
            background-size: cover;
            background-repeat: no-repeat;
            text-align: left;
        }

        .hero-content {
            max-width: 100%;
            padding: 2em 0;
        }

        .hero h1 {
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.3;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: .04em;
        }
        .hero h1 span {
            font-size: clamp(22px, 2.6vw, 36px);
        }

        h2.hero-subtitle {
            font-size: 24px;
            color: #333;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 600;
            letter-spacing: .04em;
        }

        .download-btn-main {
            background: #242422;
            color: white;
            padding: 18px 46px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 800;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            border:6px solid #dcdcdc;
            gap: 12px;
        }

        .download-btn-main:hover {
            background: #555;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .download-btn-main::after {
            content: '→';
            font-weight: bold;
            font-size: 18px;
        }

        /* Company logos section */
        .company-logos {
            padding: 10px 0;
            background: #f5f5f4;
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            width: 100%;
        }

        .logos-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .logos-row {
            display: flex;
            animation: slideLoop 30s linear infinite;
            white-space: nowrap;
            will-change: transform;
        }

        .logos-row:nth-child(2) {
            animation-direction: reverse;
            animation-duration: 35s;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: auto;
            font-weight: 600;
            opacity: 0.8;
            transition: opacity 0.3s ease;
            margin: 0 10px;
            flex-shrink: 0;
        }
        .logo-item img {
            max-height: 100%;
            width: auto;
        }

        .logo-item:hover {
            opacity: 1;
        }

        /* Specific logo styles */
        .logo-item.adebis {
            color: #e74c3c;
            border: 2px solid #3498db;
            padding: 8px 16px;
            border-radius: 4px;
        }

        .logo-item.carry-me::before {
            content: '●';
            color: #ff6b35;
            margin-right: 8px;
        }

        .logo-item.ferret {
            font-style: italic;
        }

        .logo-item.cloud-circus::before {
            content: '▲';
            color: #4CAF50;
            margin-right: 8px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .header-content {
               /* flex-direction: column;*/
                gap: 20px;
            }

            .hero {
                padding: 60px 0 10px;
            }

            .logos-row {
                animation-duration: 20s;
            }
            
            .logos-row:nth-child(2) {
                animation-duration: 25s;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .logo-item {
                min-width:1px;
                margin: 0 20px;

            }
            .logo img {
            max-height: 30px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideLoop {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-25%);
            }
        }

        .hero-content > * {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .hero h1 {
            animation-delay: 0.2s;
        }

        .hero-subtitle {
            animation-delay: 0.4s;
        }

        .download-btn-main {
            animation-delay: 0.6s;
        }

        /* Staggered animation for logos - removed as we're using continuous loop */


@media screen and (min-width:769px) {
.pc_only {
        display: block;
    }
    .sp_only {
         display: none!important;
       
    }
}
@media screen and (max-width:768px) { 
    .pc_only {
        display: none!important;
    }
    .sp_only {
         display: block;
       
    }
}


.three_compo-content,
.graphic-one-content {
    background-color: #fff;
    padding: 1em 0;
}

.three_compo-content h2 {
     font-size: clamp(24px, 2.4vw, 36px);
    letter-spacing: .04em;
    margin-bottom: 2em;

}

.graphic-one-content h2 {
    font-size: clamp(24px, 2.4vw, 36px);
    letter-spacing: .04em;
    margin-bottom: .4em;
}
.graphic-one-content h3 {
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .04em;
    margin-bottom: 1.4em;
    font-weight: 400;

}


.compo-rows {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em; 

}

.compo-item {
    background-color: #F5F4F4;
    border-radius: 8px;
    padding: 2em;
}
.compo-item h3 {
    font-size: clamp(18px, 1.8vw, 24px);
    text-align: center;
    margin-bottom: 1em;

}
.compo-item-descpri {
    background-color: #494241;
    color: #fff;
    border-radius: 8px;
    padding: 1em;
    line-height: 1.6;
    letter-spacing: .02em;
}



@media screen and (max-width:768px) { 
    h2.hero-subtitle {
        font-size: 20px;
        font-weight: 400;
    }
.compo-rows {
    display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1em; 

}
.compo-item-descpri { 
font-size: 14px;
}
.compo-item h3 {
    text-align: left;
    }
}
@media (max-width: 480px) {
    .compo-item {
        padding: 2em 1em;
    }
    .three_compo-content{
        padding: 0;
    }
    .graphic-one-content {
        padding: 2em 0;
    }
}






        /* Alternative method using pseudo-element */
        .section-alt {
            position: relative;
            background: #fff;
            margin-bottom: 4em;
        }

        .section-alt::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 55%;
            height: 100%;
            background: #f5f5f5;
            z-index: 0;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        /* Container for content */
        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            z-index: 1;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        /* Left content styling */
        .left-content {
            color: #212121;
            padding-left: 4em;
            padding-right: 6em;
        }



        .left-content h2 {
            font-size: clamp(24px, 2.4vw, 36px);
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 30px;

              position: relative;/*相対位置*/
  padding-left: 0em;
  line-height: 1.4;/*行高*/
  color: black;/*文字色*/
        }



.left-content h2:before {
    background: #000;
    width: 30px;
  height: 30px;
  border-radius: 50%;


  content: "";
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1.4em;/*サイズ*/
  left: -1.5em;/*アイコンの位置*/
  top: 0;/*アイコンの位置*/
}

@media (min-width: 1025px) {
    .left-content h2:before {
        top: 0.2em;/*アイコンの位置*/

    }

}


        .left-content h3 {
            font-size: clamp(18px, 2vw, 26px);
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 30px;
        }
        .left-content p {
            font-size: clamp(16px, 1.8vw, 22px);
            line-height: 1.8;
        }
        /* Right content styling */
        .right-content {
            background: white;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .comparison-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section-alt {
                margin-bottom: 0;

            }
            .section-alt::before {
                width: 100%;
                height: 80%;

            }
            .left-content {
                width: 100%;
                padding-right: 1em;
                padding-left: 2em;
                padding-bottom: 1em;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .container {
                padding: 30px 20px;
            }
        }


.cta {
    background-image: url(../image/co-marketing/cta_bg.png);
    position: relative;
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;

    color: #fff;
    text-align: center;
    padding: 4em 0;

}

.cta h2 {
    font-size: clamp(22px, 2.8vw, 44px);
    margin-bottom: .6em;
    letter-spacing: .03em;

}
.cta h3 {
    font-size: clamp(16px, 1.8vw, 30px);
    margin-bottom: 1em;
    letter-spacing: .03em;
    font-weight: 400;

}




/* Responsive design */
        @media (max-width: 768px) {
            .cta {
                background-image: url(../image/co-marketing/cta_bg.png);
                position: relative;
                background-position: top center;
                background-size: cover;
                background-repeat: no-repeat;
                border-radius: 20px;

                color: #fff;
                text-align: center;
                padding: 4em 1em;

                }
        }




.grey {
    background-color:#f5f5f5;
    padding-bottom: 4em;
}


.jirei-content h2,
.client_voice h2,
.qna h2 {
    font-size: clamp(24px, 2.4vw, 36px);
    letter-spacing: .04em;
    margin-bottom: .4em;
}
.jirei-content h3,
.client_voice h3 {
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: .04em;
    margin-bottom: 1.4em;
    font-weight: 400;

}


        /* Alternative method using pseudo-element */
        .bgblack {
            position: relative;
            color: #fff;
        }

        .bgblack::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 45%;
    height: 50px;
    background: #312927;
    z-index: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
        }

.jirei-content-right h3.wh {
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: .04em;
    /*margin-bottom: 1.4em;*/
    font-weight: 600;
    color: #fff;
    margin-top: -1em;

}


.container.minpad {
    padding: 30px 20px;
}


 /* Alternative method using pseudo-element */
        .section-jirei {
            position: relative;
             margin-bottom: 4em;
        }

        .section-jirei::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: #fff;
            z-index: 0;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;

        }


        .section-jirei .container {
            padding: 10px 0;
        }

        .section-jirei .right-content {
            background: none;
            padding: 0px;
            border-radius: 0px;
            box-shadow: none;
        }

         @media (max-width: 768px) {
            .grey {
                padding-bottom: 3em;
            }
            .section-jirei .container{
                padding:15px;
            }
            .section-jirei {
                margin-bottom: 0;

            }

            .section-jirei .left-content {
                padding: 1em;
            }
            .section-jirei::before {
                width: 100%;
                /*height: 60%;*/

            }
            .jirei-content-right {
                margin-top: 4em;
            }
            .jirei-content-right .container{
                padding: 10px 20px 40px;
            }
            .jirei-content-right h3.wh {
                margin-top: 0;
            }
            .narrow {
                margin-top: 0;
            }
            
        }
        @media (max-width: 425px) {
            .bgblack::before {
                width: 65%;

            }
            .jirei-content-right .container {
                padding: 10px 20px 10px;
            }
        }



.cover img {
    border-radius: 8px;
    margin-bottom: 1.4em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-jirei ul {
    list-style: disc;
    margin-left: 2em;
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 2;
}
ul.voice_box {
    list-style: none;
}

ul.voice_box li {
    background-color: #F5F4F4;
    border-radius: 8px;
    padding: 2em;
    margin-bottom: 2em;


}

ul.voice_box li h4 {
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .04em;
    margin-bottom: .4em;
}
ul.voice_box li h5 {
    font-size: clamp(14px, 1.6vw, 20px);
    letter-spacing: .04em;
    margin-bottom: 1.4em;
    font-weight: 400;
    background-color: #fff;
    padding: 1em;
    border-radius: 12px;
    margin-top: 1em;

}



        .qna h2 {
            margin-bottom: 2em;
        }

        .faq-section {

            margin-bottom: 30px;

        }


        .faq-item {
            border-radius: 8px;
            margin-bottom: 30px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .faq-item summary {
             background: #fff!important;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: clamp(20px, 2vw, 24px);
            color: #222;
            display: flex;
            letter-spacing: .03em;
            justify-content: flex-start;
            align-items: center;
            transition: background-color 0.3s ease;
            position: relative;
            -webkit-appearance: #fff;
  -webkit-tap-highlight-color: #fff; /* iOS/Chrome系の青いタップハイライト */
  -webkit-focus-ring-color: #fff;    /* Safariのフォーカスリング色 */
  transition: background-color 0s, color 0s;/* 色の遷移で“青→白”が見えないように */
        }



/* open時にも念のため */
.faq-item details[open] > summary{
  background: #fff !important;
}

/* フォーカス系は全部透明／無効化 */
.faq-item summary:focus,
.faq-item summary:active,
.faq-item summary:focus-visible{
  background: #fff!important;
  outline: none !important;
  box-shadow: none !important;
}

/* マーカー（▶︎）を消して自前で用意する場合 */
.faq-item summary::-webkit-details-marker{ display:none; }

/* 選択ハイライトが見える環境対策（保険） */
.faq-item summary::selection{ background: #fff!important; }

        .faq-item summary:focus,
        .faq-item summary:active,
        .faq-item summary:focus-visible {
            outline: none;
            background: #fff;
            box-shadow: none;
        }

        .faq-item summary::focus,
        .faq-item summary::active,
        .faq-item summary::focus-visible {
            outline: none;
            background: #fff;
            box-shadow: none;
        }


        .faq-item summary strong {
            font-size: 120%;
            
        }


        .faq-item summary:hover {
            color: #000;
        }

        .faq-item summary::marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 1.2em;
            transition: transform 0.3s ease;
            position: absolute;
            right: 30px;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item[open] summary {
            background: #fff;
        }

        .faq-content {
            padding: 3em;
            background-color: #fff;
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.6;
            letter-spacing: .03em;
            border-top: 1px solid #e0e0e0;
        }
        .faq-item summary strong {
                margin-right: .6em;
            }

        .faq-content strong {
                margin-right: .6em;
            }

        @media (max-width: 600px) {

            .faq-item summary strong {
                margin-right: .6em;
            }
            .faq-item summary,
            .js-faq-question {
                padding: 12px 45px 12px 15px;
                font-size: 16px;
            }
            
            .faq-content,
            .js-faq-answer.active {
                padding: 15px;
                font-size: 14px;
            }
        }


    .form_area {
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-radius: 12px;
        padding: 20px;
    }

    footer {
       background-color: #242422;
    padding: 1em;
    display: flex;
    justify-content: center;
    }
    .footerbox {
        width: 1220px;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 1em 0;
    }
    .footerbox ul {
        list-style: none;
        color: #fff;
        display: inline-flex;
    }
    .footerbox ul li a {
         color: #fff;
         text-decoration: none;
         padding-left: 2em;

    }
    @media (max-width: 768px) { 
        .footerbox,
        .footerbox ul {
            flex-direction: column;
            font-size: 90%;
        }
        .footerbox ul li {
            margin-bottom: .5em;
        }
        .footerbox ul li a {
            padding-left: 0;
        }
    }
