@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    outline: none;
    border: none;
}

*::selection
{
    background: #c0c0c0;
    color: #fff;
}

body
{
    background: #f9f9f9;
}

/* 各セクションのフェードインアニメーション */
/* 最初は非表示 */
.fade-in-animation
{
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
    transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
}
/* フェードイン時 */
.is-fadein 
{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ふりがな */
rt
{
        font-size: 100%;
        zoom: 0.5;
}




/* XXXXXXXXXXX */
/* top section */
/* XXXXXXXXXXX */
.top
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('../images/kanauba/kanauba-top.png');
    background-position: center;
    background-repeat: no-repeat;
}
 
.top .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
}

/* 文字のアニメーション(文字を徐々に表示) */
@keyframes animtion2{  /* アニメーションの動き */
    0% {
            /* margin-left:30px; */
            opacity:0; /* 完全に透明 */
        } 
    100% {
            /* margin-left:0px; */
            opacity:1; /* 透明度無し、通常表示 */
        }
}

/* 「総コン専門就活コミュニティ」 */
.top .column .content h4
{
    font-size: 20px;
    font-weight: 400;
}

/* アニメーション用 */
.top .column .content h4
{
    animation-name: animtion2; 
    animation-duration: 1.5s; /* X秒間で表示 */ 
    animation-fill-mode: both;  
    animation-iteration-count: 1; /* 1回のみ実行 */
}

/* 「kanauba」 */
.top .column .content h3
{
    text-align: left;
    font-size: 60px;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 6rem;
}

/* アニメーション用 */
.top .column .content h3
{
    animation-name: animtion2; 
    animation-duration: 2.0s; /* X秒間で表示 */ 
    animation-fill-mode: both;  
    animation-iteration-count: 1; /* 1回のみ実行 */
}

/* 「kanauba」の説明 */
.top .column .content p
{
    font-size: 20px;
    font-weight: 300;
}

/* アニメーション用 */
.top .column .content p
{
    animation-name: animtion2; 
    animation-duration: 2.5s; /* X秒間で表示 */ 
    animation-fill-mode: both;  
    animation-iteration-count: 1; /* 1回のみ実行 */
}



/* XXXXXXXXXXX */
/* 特徴 section1 */
/* XXXXXXXXXXX */
.features
{   
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    flex-wrap: wrap;
    flex-direction: row;
}

/* 特徴1の画像 */
.features .column .features-img
{
    margin-right: 50px;
    width: 300px;
    height: 300px;
}

.features .column .features-img img
{
    margin-top: 60px;
    width: 300px;
}

.features .column .content
{
    text-align: left;
    width: 40%;
}

/* アニメーション用 */
.features .column .content
{
    animation-name: animtion1; 
    animation-duration: 1.5s;
    animation-fill-mode: both;  
    animation-iteration-count: 1;
}

.features .column .content h1
{
    font-size: 32px;
    font-weight: 700;
    color: #333;
    padding: 1rem 0;
}

.features .column .content ul
{
    font-size: 20px;
    line-height: 200%;
    list-style: disc;
    padding-left: 1.5em;
}

.features .column .content ul li
{
    color: #c0c0c0;
}

.features .column .content ul li span
{
    color:#333;
}



/* XXXXXXXXXXX */
/* 特徴 section2 */
/* XXXXXXXXXXX */
.features2
{   
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features2 .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    flex-wrap: wrap;
    flex-direction: row;
    width: 90%;
    flex-direction: row-reverse;
}

/* 特徴2の画像 */
.features2 .column .features-img
{
    margin-left: 50px;
    width: 300px;
}

.features2 .column .features-img img
{
    width: 300px;
}

.features2 .column .content
{
    text-align: left;
    width: 40%;
    padding-bottom: 2rem;
}

.features2 .column .content h1
{
    font-size: 32px;
    font-weight: 700;
    color: #333;
    padding: 1rem 0;
}

.features2 .column .content ul
{
    font-size: 20px;
    line-height: 200%;
    list-style: disc;
    padding-left: 1.5em;
}

.features2 .column .content ul li
{
    color: #c0c0c0;
}

.features2 .column .content ul li span
{
    color:#333;
}




/* sectionを区切るボーダー  */
.section-border
{
    height: 1px;
    border: none;
    border-top: 1px #d3d3d3 solid;
    width: 40%;
    margin:  0 auto;
    margin-top: 40px;
}




/* XXXXXXXXXXX */
/* 参加メリット section */
/* XXXXXXXXXXX */
.contents
{   
    background-size: cover;
    background-position: center;
    min-height: 40vh;
}

.contents .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    flex-wrap: wrap;
    flex-direction: row;
}

.contents .column .content
{
    margin-top: 60px;
    text-align: left;
    width: 50%;
    margin-bottom: 80px;
    color: #333;
}

/* アニメーション用 */
.contents .column .content
{
    animation-name: animtion1; 
    animation-duration: 1.5s;
    animation-fill-mode: both;  
    animation-iteration-count: 1;
}

.contents .column .content h1
{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 5rem 0;
}

.contents .column .content .merit
{
    padding: 3rem 1rem;
}

.contents .column .content .merit h2
{
    font-size: 24px;
    font-weight: 600;
}

.contents .column .content .merit p
{
    font-size: 20px;
    padding: 1rem 0;
    line-height: 200%;
}

.contents .column .features-img
{
    margin-right: 50px;
    width: 300px;
}

.contents .column .features-img img
{
    width: 300px;
}



/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
/* コミュニティ参加者の声 section */
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.voices
{
    margin-top: 20px;
}
.voices h1
{
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-top: 80px;
}

.voices .bd-container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    /* width: calc(100% - 20rem); */
    padding: 6rem 4rem;
}

.voices .bd-container .elements__content
{
    display: grid;
    background-color: #EDF0F4;
    color: #FBF9F9;
    border-radius: 1rem;
    padding: 1rem;
    text-align: left;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2));
}

.voices .bd-container .elements__content .student-image
{
      width: 80px;
      height: 80px;
      background-color: #f9f9f9;
      margin-top: 20px;
      margin-left: 20px;
}
  
.voices .bd-container .elements__content .student-image img
{
      width: 80px;
      height: 80px;
}

.voices .bd-container .elements__content .student-information
{
    margin: 15px 20px 15px 20px;
}

.voices .bd-container .elements__content .student-explanation
{
    margin: 15px 20px 15px 20px;
}

.voices .bd-container .elements__content .student-information p
{
    font-size: 14px;
    line-height: 200%;
    color: #333;
}

.voices .bd-container .elements__content .student-explanation p
{
    font-size: 14px;
    line-height: 180%;
    color: #333;
}

.swiper-pagination
{
    margin-top: 2rem;
    position: initial;
}
  
.swiper-pagination-bullet-active
{
    background-color: #3E0E12;
}





/* XXXXXXXXXXXX */
/* 流れ section */
/* XXXXXXXXXXXX */
.flows
{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120vh;
}

.flows .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
}

/* セクションタイトル */
.flows .column .content h1
{
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-top: 120px;
}

/* セクション説明欄 */
.flows .column .content h2
{
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-top: 30px;
}

.flows .column .content .box-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 120px;
}

.flows .column .content .box-container .box
{
    background-color: #EDF0F4;
    width: 100%;
    border-radius: 15px;
}

.flows .column .content .box-container .box .flow
{
    height: 200px;
    text-align: center;
    margin: 40px;
}

.flows .column .content .box-container .box .flow .flow-number
{
    width: 36px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
    line-height: 36px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    background-color: #333;
    font-weight: 600;
    margin: 20px auto;
}

.flows .column .content .box-container .box .flow .flow-icon
{
    display: flex;
    justify-content: center; /* 横方向の中央寄せ */
    align-items: center;     /* 縦方向の中央寄せ */
    margin: 10px;
}

.flows .column .content .box-container .box .flow .flow-icon img
{
    width: 80px;
}

.flows .column .content .box-container .box .flow .flow-explanation
{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
}

.flows .column .content .box-container .box hr
{
    height: 1px;
    border: none;
    border-top: 1px #d3d3d3 solid;
    width: 80%;
    margin: auto;
}




/* XXXXXXXXXXX */
/* FAQ section */
/* XXXXXXXXXXX */
.faq
{
    background-color: #EDF0F4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.faq .column
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.faq .column .content h1
{
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-top: 80px;
}

.faq .column .content .accordion
{
    background-color: #fcfcfc;
    width: 660px;
    border-radius: 15px;
    margin-top: 70px;
    margin-bottom: 120px;
}

.faq .column .content .accordion-title
{
    color: #333;
    cursor: pointer;
    padding: 45px 50px 45px 45px;
    text-align: left;
    margin: auto 0;
    font-size: 18px;
    font-weight: 600;
}

.faq .column .content .accordion-title:hover
{
    opacity: 0.7;
}

.faq .column .content .accordion-content
{
    display: none;
    background-color: #F7F7F7;
}

.faq .column .content .content-radius
{
    border-radius: 0 0 15px 15px;
}

.faq .column .content .accordion-content p
{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    padding: 20px 90px 20px 45px;
    text-align: left;
    margin: auto 0;
}

.faq .column .content .accordion-content a
{
    color: #333;
}

.faq .column .content .accordion-content a:active
{
    color: #333;
}

/* 矢印 */
.faq .column .content .accordion-title
{
    position: relative;
}

.faq .column .content .accordion-title::after
{
    border-right: solid 2px #333;
    border-top: solid 2px #333;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 75px;
    top: 42%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
}

.faq .column .content .accordion-title.open::after
{
    top: 45%;
    transform: rotate(-45deg);
}

.faq-border
{
    height: 1px;
    border: none;
    border-top: 1px #d3d3d3 solid;
    width: 100%;
    margin:  0 auto;
}





/* XXXXXXXXXXX */
/* SNS section */
/* XXXXXXXXXXX */
.SNS
{
    /* margin-top: 10vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.SNS .SNS-content
{
    text-align: center;
    padding: 30px;
}

.SNS .SNS-content h1
{
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.SNS .SNS-content p
{
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

.SNS .SNS-content .twitter
{
    display: inline-block;
    margin: 40px 12px 0px 12px;
}

.SNS .SNS-content .note
{
    display: inline-block;
    margin: 40px 12px 0px 12px;
}



@media (max-width:1200px)
{
    /* XXXXXXXXXXX */
    /* top section */
    /* XXXXXXXXXXX */

    /* 「総コン専門就活コミュニティ」 */
    .top .column .content h4
    {
        font-size: 18px;
    }

    /* 「kanauba」 */
    .top .column .content h3
    {
        font-size: 54px;
    }

    /* 「kanauba」の説明 */
    .top .column .content p
    {
        font-size: 18px;
    }

    /* ふりがな */
    rt
    {
        font-size: 0.8em; /* 文字サイズを大きく */
    }




    /* XXXXXXXXXXX */
    /* 特徴 section1 */
    /* XXXXXXXXXXX */
    .features
    {   
        background-size: cover;
        background-position: center;
        min-height: 60vh;
    }

    .features .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        flex-wrap: wrap;
        width: 70%;
    }

    /* 特徴1の画像 */
    .features .column .features-img
    {
        margin-right: 0px;
    }

    .features .column .content
    {
        width: 90%;
    }

    .features .column .content h1
    {
        font-size: 28px;
    }

    .features .column .content ul
    {
        font-size: 18px;
    }





    /* XXXXXXXXXXX */
    /* 特徴 section2 */
    /* XXXXXXXXXXX */
    .features2
    {   
        background-size: cover;
        background-position: center;
        min-height: 60vh;
    }

    .features2 .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        flex-wrap: wrap;
        width: 70%;
    }

    /* 特徴2の画像 */
    .features2 .column .features-img
    {
        margin-left: 0px;
    }

    .features2 .column .content
    {
        width: 90%;
    }

    .features2 .column .content h1
    {
        font-size: 28px;
    }

    .features2 .column .content ul
    {
        font-size: 18px;
    }




    /* XXXXXXXXXXX */
    /* 参加メリット section */
    /* XXXXXXXXXXX */
    .contents
    {   
        background-size: cover;
        background-position: center;
        min-height: 50vh;
    }

    .contents .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 10%;
        padding-right: 10%;
        flex-wrap: wrap;
    }

    .contents .column .content
    {
        width: 90%;
    }

    .contents .column .features-img
    {
        margin-right: 0px;
    }

    .contents .column .content h1
    {
        font-size: 28px;
        padding: 4rem 0;
    }

    .contents .column .content .merit h2
    {
        font-size: 22px;
    }

    .contents .column .content .merit p
    {
        font-size: 18px;
    }



    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    /* コミュニティ参加者の声 section */
    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    .voices h1
    {
        font-size: 28px;
        margin-top: 60px;
        padding-bottom: 2rem;
    }

    .voices .bd-container
    {
        padding: 4rem;
    }

    .voices .bd-container .elements__content
    {
        padding: 0rem;
    }
    
    .voices .bd-container .elements__content .student-information p
    {
      font-size: 12px;
    }

    .voices .bd-container .elements__content .student-explanation p
    {
      font-size: 12px;
    }





    /* XXXXXXXXXXXX */
    /* 流れ section */
    /* XXXXXXXXXXXX */
    .flows .column .content h1
    {
        font-size: 28px;
    }

    .flows .column .content h2
    {
        font-size: 18px;
    }

    .flows .column .content .box-container .box .flow
    {
        height: 180px;
    }

    .flows .column .content .box-container .box .flow .flow-number
    {
        width: 28px;
        height: 28px;
        font-size: 18px;
        line-height: 28px;
    }

    .flows .column .content .box-container .box .flow .flow-icon img
    {
        width: 60px;
    }





    /* XXXXXXXXXXX */
    /* FAQ section */
    /* XXXXXXXXXXX */
    .faq .column .content h1
    {
        font-size: 28px;
    }

    .faq .column .content .accordion-title
    {
        font-size: 16px;
    }

    .faq .column .content .accordion-content p
    {
        font-size: 14px;
    }

    /* XXXXXXXXXXX */
    /* SNS section */
    /* XXXXXXXXXXX */
    .SNS .SNS-content h1
    {
        font-size: 28px;
    }

    .SNS .SNS-content p
    {
        font-size: 16px;
    }


}


@media (max-width:768px)
{    
    /* XXXXXXXXXXX */
    /* top section */
    /* XXXXXXXXXXX */
    .top
    {
        flex-flow: column-reverse;
        justify-content: center;
        background-image: url('../images/kanauba/kanauba-top-sph.png');
    }



    /* XXXXXXXXXXX */
    /* 特徴 section1 */
    /* XXXXXXXXXXX */
    .features
    {
        background-position: right;
        min-height: 60vh;
    }

    .features .column
    {
        width: 80%;
    }

    .features .column .content
    {
        text-align: left;
    }





    /* XXXXXXXXXXX */
    /* 特徴 section2 */
    /* XXXXXXXXXXX */
    .features2
    {
        background-position: right;
        min-height: 60vh;
    }

    .features2 .column
    {
        width: 80%;
    }

    .features2 .column .content
    {
        text-align: left;
    }

    

    
    

    /* XXXXXXXXXXX */
    /* 参加メリット section */
    /* XXXXXXXXXXX */
    .contents
    {
        background-position: right;
        min-height: 40vh;
        /* padding-top: 15rem; */
    }

    .contents .column
    {
        padding-left: 0;
        padding-right: 0;
    }

    .contents .column .content
    {
        width: 70%;
    }

    .contents .column .content .merit
    {
        padding: 2rem 1rem;
    }



    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    /* コミュニティ参加者の声 section */
    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    .voices .bd-container
    {
        width: calc(100% - 5rem);
        padding: 2rem 1rem;
    }
    
    .voices .bd-container .elements__content
    {
        filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.2));
    }



    /* XXXXXXXXXXX */
    /* FAQ section */
    /* XXXXXXXXXXX */
    .faq .column .content .accordion
    {
        background-color: #fcfcfc;
        width: 380px;
        border-radius: 15px;
        margin-top: 70px;
        margin-bottom: 120px;
    }
    .faq .column .content .accordion-title
    {
        padding: 45px 100px 45px 45px;
        font-size: 16px;
    }



}


@media (max-width:450px)
{
    /* XXXXXXXXXXX */
    /* top section */
    /* XXXXXXXXXXX */
    .top .column
    {
        width: 90%;
    }

    /* 「総コン専門就活コミュニティ」 */
    .top .column .content h4
    {
        font-size: 16px;
    }

    /* 「kanauba」 */
    .top .column .content h3
    {
        font-size: 48px;
        margin-bottom: 4rem;
    }

    /* 「kanauba」の説明 */
    .top .column .content p
    {
        font-size: 16px;
    }






    /* XXXXXXXXXXX */
    /* 特徴 section1 */
    /* XXXXXXXXXXX */
    .features .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .features .column .content h1
    {
        font-size: 24px;
        color: #333;
        padding: 1rem 0;
    }

    .features .column .content ul
    {
        font-size: 16px;
    }




    /* XXXXXXXXXXX */
    /* 特徴 section2 */
    /* XXXXXXXXXXX */
    .features2 .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        /* margin-bottom: 50px; */
    }

    .features2 .column .content h1
    {
        font-size: 24px;
        color: #333;
        padding: 1rem 0;
    }

    .features2 .column .content ul
    {
        font-size: 16px;
    }



    /* sectionを区切るボーダー  */
    .section-border
    {
        margin-top: 40px;
        width: 50%;
    }



    /* XXXXXXXXXXX */
    /* 参加メリット section */
    /* XXXXXXXXXXX */
    .contents .column
    {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .contents .column .content {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
        text-align: left;
        width: 90%;
    }

    .contents .column .content h1
    {
        font-size: 24px;
        padding: 3rem 0;
    }

    .contents .column .content .merit {
        padding: 2rem 1rem;
    }

    .contents .column .content .merit h2 
    {
        font-size: 20px;
    }

    .contents .column .content .merit p
    {
        font-size: 16px;
    }




    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    /* コミュニティ参加者の声 section */
    /* XXXXXXXXXXXXXXXXXXXXXXXXXXXX */
    .voices h1 
    {
        font-size: 24px;
        margin-top: 40px;
    }

    .voices .bd-container
    {
        width: calc(100% - 1rem);
        padding: 1rem;
    }




    /* XXXXXXXXXXXX */
    /* 流れ section */
    /* XXXXXXXXXXXX */
    .flows .column .content h1
    {
        font-size: 24px;
        margin-top: 60px;
    }

    .flows .column .content h2
    {
        font-size: 16px;
    }

    .flows .column .content .box-container
    {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .flows .column .content .box-container .box .flow .flow-number
    {
        width: 24px;
        height: 24px;
        font-size: 16px;
        line-height: 24px;
    }

    .flows .column .content .box-container .box .flow .flow-explanation
    {
        font-size: 14px;
    }




    /* XXXXXXXXXXXX */
    /* FAQ section */
    /* XXXXXXXXXXXX */
    .faq .column .content
    {
        width: 90%;
    }

    .faq .column .content h1
    {
        font-size: 24px;
        margin-top: 60px;
    }

    .faq .column .content .accordion
    {
        width: 100%;
        margin-top: 50px;
        margin-bottom: 80px;
    }

    .faq .column .content .accordion-title
    {
        padding: 25px 50px 25px 25px;
        font-size: 14px;
    }

    .faq .column .content .accordion-content p
    {
        font-size: 12px;
        padding: 20px 30px 20px 30px;
    }
    /* 矢印 */
    .faq .column .content .accordion-title::after
    {
        right: 30px;
    }



    /* XXXXXXXXXXX */
    /* SNS section */
    /* XXXXXXXXXXX */
    .SNS .SNS-content
    {
        width: 100%;
    }

    .SNS .SNS-content h1
    {
        font-size: 24px;
    }

    .SNS .SNS-content p
    {
        font-size: 14px;
    }

}

