@charset "utf-8";
/* common */
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}

body { 
    color: #3D1E17; 
    font-family: "Noto Serif", serif, 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 1.6em;
    line-height: 2.4rem;
    text-align: center;
}

section h2 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    padding-top: 15px;
}

a {
    color: #3D1E17; 
}

a:hover {
    opacity: 0.5;
}

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

.section_topic {
    background-image: url(../images/section_topic.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 220px;
    height: 65px;
    margin: 0 auto 30px;
    align-items: center;
}

.section_description {
    padding: 0 15px;
    text-align: left;
    margin-bottom: 30px;
}

/* ハンバーガーメニューの調整 */
#news::before,#about::before,#courses::before,#supporter::before,#schedule::before,#guide::before,#partner::before,#question::before {
    content: "";
    display: block;
    height: 60px; 
    margin-top: -40px;
    visibility: hidden;
}

#news::before {
    height: 70px; 
}

#about::before {
    height: 0px;
}

#courses::before {
    height: 20px;
}

#supporter::before {
    height: 70px;
}

#schedule::before {
    height: 70px;
}

/* spデザイン */
.sp__design {
    max-width: 390px;
    margin: 0 auto;
    box-shadow: 0 4px 64px rgba(25, 25, 25, .15);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* button */
.btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1300;
}

.btn_list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    cursor: pointer;
    width: 390px;
    height: 50px;
    gap: 5px;
}

.btn_list span {
    font-size: 1.2rem;
    display: block;
}


.btn_item:nth-child(1) {
    width: 160px;
    height: 80px;
    background: #95272D;
    color: #fff;
}

.btn_item:nth-child(2) {
    width: 160px;
    height: 80px;
    background: #fff;
}

.btn_item a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.btn_item:nth-child(1) a {
    color: #Fff;
}

.btn_item:nth-child(2) a {
    color: #95272D;
}

.pc__design {
    display: none;
}



/* header */
.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    max-width: 390px;
    z-index: 1200;
    background-color: #736357;
}
.header h1 {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 240px;
    height: auto;
}

.nav__topic {
    width: 240px;
    height: auto;
} 

.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

.btn_open img {
    width: 30px;
    height: 24px;
}

.btn_close img {
    width: 24px;
    height: 24px;
}
/* navigation */
/* .nav初期表示 */
.nav {
    background-color: #E2D5BA;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 80px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 5px;
    width: 390px;
}

.nav__btn {
    width: 55px;
    height: 40px;
    cursor: pointer;
}

.nav__list {
    margin-top: 100px;
}

.nav__item {
    font-size: 1.8rem;
    line-height: 1;
    margin: 0 0 20px 20px;
    text-align: left;
}

.nav__item a {
    color: #3D1E17;
    font-weight: 600;
    text-decoration: none;
}

/* @media(min-width: 1160px) */
@media(min-width: 768px) {
    .nav {
        max-width: 390px;
    }
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}
.nav.active+.btn_open {
    display:none;
} 
.nav.active+.btn_open {
    opacity:0;
} 
.header__btn {
    display: block;
    width: 55px;
    height: 40px;
    position:absolute;
    top: 17px;
    right: 20px;
    z-index: 1200;
    cursor: pointer;
}

.pc__design_deco {
    display: none;
}

/* PCデザイン */
/* @media(min-width: 1160px) */
@media(min-width: 768px) {
    .sp__design {
        max-width: 390px;
        margin: 0 auto;
        background-image: none;
    }
    .header {
        max-width: 390px;
    }
    .pc__design {
        background-image: url(../images/pc_bg.webp);
        background-size: cover;
        position: fixed;
        z-index: -100;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0.7;
    }

    .nav {
        width: 100%;
        height: 100vh;

    }
    .nav__item {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    .pc__design {
        display: block;
    }  

    /* スクロールの記述 */
    .pc__design .pc_scroll_indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 50%;               
        /* ↓ アニメーション（scroll_move）を追加：2.5秒かけて無限ループ */
        
        left: 50%;          
        margin-left: 200px;   
        z-index: 9999;    
        pointer-events: none;
    }

    /* 「SCROLL」のテキスト設定 */
    .pc_scroll_text {
        writing-mode: vertical-rl; 
        font-family: "Noto Serif", serif, "Times New Roman", Georgia;
        font-size: 14px;
        font-weight: bold;
        color: #333A11;         
        letter-spacing: 0.2em;
        margin-top: 15px;        
    }

    .pc_scroll_arrow {
        position: relative;
        width: 1px;
        height: 100px;           
        background-color: #333A11;
        animation: scroll_move 2.5s ease-in-out infinite;
    }

    /* .pc_scroll_arrow::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 1px;
        height: 15px;
        background-color: #333A11;
        transform: rotate(-30deg);
        transform-origin: bottom right;
        animation: scroll_move 2.5s ease-in-out infinite;
    } */

    .pc_scroll_arrow::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1px;
        height: 15px;
        background-color: #333A11;
        transform: rotate(30deg);
        transform-origin: bottom left;
    }

@keyframes scroll_move {
    0% {
        transform: translateY(15px); 
        opacity: 0;               
    }
    30% {
        opacity: 1;           
    }
    70% {
        opacity: 1;         
    }
    100% {
        transform: translateY(100px);
        opacity: 0;                
    }
}

    /* ── 流れる文字全体の共通設定 ── */
    .ticker_vertical {
        position: fixed;
        top: 0;
        height: 100vh;  
        width: 35px;  
        overflow: hidden;
        z-index: 9999;  
        background-color: transparent;
    }

    .ticker_vertical.left {
        left: 0;
        writing-mode: vertical-rl;
    }

    .ticker_vertical.right {
        right: 0;
        writing-mode: vertical-lr; 
    }

    .ticker_wrapper {
        display: flex;
        flex-direction: column;
        height: max-content;
    }

    .ticker_text {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3D4017; 
        white-space: nowrap;
        padding: 15px 0;
        letter-spacing: 0.1em;
    }

    .ticker_vertical.left .ticker_wrapper {
        animation: ticker_scrollDown 100s linear infinite;
    }

    @keyframes ticker_scrollDown {
        0% {
            transform: translateY(-50%);
        }
        100% {
            transform: translateY(0); 
        }
    }

    .ticker_vertical.right .ticker_wrapper {
        animation: ticker_scrollUp 100s linear infinite;
    }

    @keyframes ticker_scrollUp {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }
}


@media(min-width: 1000px) {
    .pc__design_deco {
        display: block;
        position: relative;
    }

    .pc__design_deco img {
        max-width: 322px;
        width: 15vw;
        height: auto;
        background-size: contain;
        position: absolute;
        top: 60vh;
        left: 150px;
    }
}


/* top */
.main {
    background-color: #F6E6C9;
}
.mainVis {
    margin-top: 60px;
}

.mainVis {
    position: relative;
    margin-bottom: 30px;
}

.mainVis_txt {
    position: absolute;
    top: 80px;
    left: 0;
    text-align: left;
}

.mainVis_topic {
    background-color: #95272D;
    color: #fff;
    padding: 5px 20px;
    letter-spacing: 0.1em;
    display: inline-block;

}
.mainVis_copy {
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
    font-weight: 600;
    text-align: left;
    margin: 60px 15px 0;
}

.mainVis_description {
    margin: 60px 15px 0;
    font-weight: 600;
}

.mainVis_comments {
    font-size: 1.4rem;
    margin: 35px 15px 0;
    font-weight: 600;
}


/* 文字の動き */
.mainVis_copy {
    line-height: 1.6;
    perspective: 1000px; 
}

.mainVis_copy span {
    display: inline-block;
    opacity: 0;
}

.mainVis_copy span.is-active {
    /* 
     * 0.4s: アニメーションの速度
     * cubic-bezier(0.12, 0, 0.39, 0): 最初はゆっくり、最後に急加速して着地する動き
     */
    animation: zoomInBang 0.4s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}

@keyframes zoomInBang {
    0% {
        opacity: 0;
        transform: scale(4) translateZ(200px);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        filter: blur(0);
    }
}

.mainVis_topic,
.mainVis_description,
.mainVis_comments {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transform: translateY(20px);
}

/* JSでこのクラスがついたら表示 */
.mainVis_topic.is-active,
.mainVis_description.is-active,
.mainVis_comments.is-active {
    opacity: 1;
    transform: translateY(0);
}



/* YouTube */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 の比率 (9 ÷ 16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* news */
.section_news {
    margin: 60px 0;
}

.news_list {
    margin: 0 15px 30px;
    list-style: none;
}

.news_item {
    display: flex;
    margin-bottom: 20px;
}

.news_item time {
    width: 38%;
    text-align: left;
}

.news_item p {
    width: 62%;
    text-align: left;
}

/* about */

.section_about {
    margin: 50px 0;
}

.about_topic {
    background-image: url(../images/about_topic.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 320px;
    height: 155px;
    padding-top: 95px;
}

.about_list {
    margin: 0 20px;
    list-style: none;
}

.about_item {
    background-color: #fff;
    padding: 100px 10px 30px;
    margin-bottom: 30px;
    position: relative;
}

.about_item_step {
    display: flex;
    align-items: baseline; 
    justify-content: center; /* 左右中央（必要に応じて） */
    background-image: url(../images/about_item_step_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 144px;  
    height: 45px; 
    padding: 5px 20px 0 0;
    color: #fff;
    font-weight: 300;
    position: absolute;
    top: 30px;
    left: -4px;
}

.about_item_step span {
    font-size: 1.8em;
    margin-left: 5px;
}

.about_item_topic {
    font-family: "Noto Sans JP","メイリオ";
    font-size: 2.0rem;
    line-height: 1.5;
}

.about_item_img {
    width: 100%;
    height: auto;
}

.about_item_subtopic {
    background-color: #333A11;
    padding: 5px 10px;
    color: #fff;
    font-family: "Noto Sans JP","メイリオ";
    display: inline-block;
    font-weight: 300;
    margin-bottom: 15px;
}

.about_item_txt {
    font-family: "Noto Sans JP","メイリオ";
    font-weight: 500;
}

.about_item_comments {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP',"メイリオ";
    margin-top: 10px;
}

.company_list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.company_item {
    width: 135px;
    height: auto;
    margin-bottom: 10px;

}

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

.step3_topic::before {
    display: inline-block;
    content: "";
    width: 36px;
    height: 25px;
    background-image: url(../images/step3_icon_l.png);
    background-size: contain;
}

.step3_topic::after {
    display: inline-block;
    content: "";
    width: 36px;
    height: 25px;
    background-image: url(../images/step3_icon_r.png);
    background-size: contain;
}

.step4_img {
    margin-bottom: 40px;
}

.funds_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.funds_item {
    width: 120px;
    height: 120px;
    background-color: #95272D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}

.funds_title {
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Noto Sans JP',"メイリオ";
    font-weight: 500;
    height: calc(14px * 1.4 * 2); 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding-bottom: 10px; 
}

.funds_amount {
    font-size: 4.0rem;
    font-weight: normal;
    margin: -5px 0 0 0; 
    line-height: 1;
    font-family: 'Noto Sans JP',"メイリオ";
}

.funds_amount span {
    font-size: 15px;
    margin-left: 2px;
}

.funds_plus {
    font-size: 30px;
    color: #95272D;
    font-weight: bold;
}


/* courses */

.section_courses .section_topic {
    position: relative;
}

.section_courses .section_topic::before {
    display: block;
    content: "";
    width: 390px;
    height: 127px;
    background-image: url(../images/about_deco_end.png);
    background-size: contain;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.section_courses {
    background-color: #E2D5BA;
    padding: 100px 0 10px;
    position: relative;
    z-index: 2;
}

/* 地図のbgあとで調整 */

.section_courses::after {
    display: block;
    content: "";
    background-image: url(../images/course_bg.png);
    width: 390px;
    /* height: 1600px; */
    height: 1630px;
    background-size: cover;
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 1;
}

.courses_list {
    list-style: none;
    z-index: 99;
}

.courses_item {
    background-image: url(../images/courses_item_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    /* width: 340px;
    height: 535px; */

    width: 330px;
    height: 525px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.courses_item:nth-child(2) {
    background-image: url(../images/courses_item_bg2.png);
    width: 330px;
    height: 490px;
}

.courses_item_green {
    background-image: url(../images/courses_item_topic_green.png);
}

.courses_item_red {
    background-image: url(../images/courses_item_topic_red.png);
}
.courses_item_topic {
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    width: 230px;
    height: 65px;
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 17px;
}

.handwritten-marker {
    position: relative;
    display: inline-block;
    font-weight: bold;
    z-index: 1;
}

.handwritten-marker::before {
    content: "";
    position: absolute;
    left: -5px;  
    right: -5px; 
    bottom: 0px; 
    height: 0.5em;
    background-color: #ffd48a;
    z-index: -1;
    filter: url(#wiggle);
    border-radius: 100px / 10px;
}

.courses_item_info {
    padding-top: 80px;
}

.courses_item_title {
    font-size: 2.0rem;
    margin-bottom: 20px;
}

.courses_item_img {
    width: 250px;
    height: auto;
    margin: 0 auto 20px;
}

.courses_item_txt {
    max-width: 290px;
    width: 100%;
    margin: 0 auto 30px;
    text-align: left;
}

.courses_item_link {
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 4px;
    width: 310px;
}

/* supporter */
.section_supporter {
    background-color: #E2D5BA;
    padding: 40px 0 60px;
}

.supporter_list {
    margin: 0 auto;
    list-style: none;
    max-width: 375px;
    width: 100vw;
}

.supporter_item {
    background-color: #fff;
    border: solid 1px #3D1E17;
    padding: 30px 15px;
    width: 90vw;
    height: 500px!important;
    margin: 0 20px 30px;
    position: relative;
}

.supporter_item_nameE {
    writing-mode: vertical-rl;
    letter-spacing: 0.5em;
    font-size: 1.2rem;
    font-weight: 300;
    position: absolute;
    top: 30px;
    left: 35px;
}

.supporter_item_img {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
}

.supporter_item_name {
    letter-spacing: 0.5em;
    margin: 0 auto 10px;
    font-size: 1.8rem;
}

.supporter_item_profile {
    text-align: left;
    margin: 0 auto 10px;
}

.supporter_item_txt {
    text-align: left;
}

/* 共通：矢印のボタン（円）の作成 */
.slick-prev, .slick-next {
    width: 25px !important; 
    height: 25px !important;
    border: 1px solid #3D1E17 !important;
    border-radius: 50%;
    background: #fff !important;
    z-index: 10;
}

.slick-prev:before, .slick-next:before {
    content: '' !important;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1 !important;
}

.slick-prev:before {
    border-width: 6px 10px 6px 0;
    border-color: transparent #3D1E17 transparent transparent;
    margin-left: -2px; 
}

.slick-next:before {
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #3D1E17;
    margin-left: 2px;
}

.slick-prev:hover, .slick-next:hover {
    background: #3D1E17 !important;
}
.slick-prev:hover:before {
    border-right-color: #fff;
}
.slick-next:hover:before {
    border-left-color: #fff;
}

.slick-prev {
    left: 5px!important; 
}

.slick-next {
    right: 5px!important;
}

/* schedule */
.section_schedule {
    margin: 60px auto 250px;
    position: relative;
}

.section_schedule .section_topic {
    position: relative;
}

.section_schedule .section_topic::before {
    display: block;
    content: "";
    background-image: url("../images/schedule_deco.png");
    background-size: contain;
    width: 390px;
    height: 90px;
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
}

.section_schedule::after {
    display: block;
    content: "";
    background-image: url("../images/schedule_deco_end.png");
    background-size: contain;
    width: 390px;
    height: 250px;
    position: absolute;
    bottom: -230px;
    left: 50%;
    transform: translateX(-50%);
}

.schedule_topic {
    font-size: 1.8rem;
}

.schedule_topic_green {
    color: #333A11;
}

.schedule_topic_red {
    color: #95272D;
}

.schedule_topic::after {
    display: block;
    content: "";
    width: 250px;
    border: solid 0.5px rgba(61, 30, 23, 0.5);
    /* padding-bottom: 20px; */
    margin: 10px 0 30px;
}

.schedule_list {
    position: relative;
    list-style: none;
    padding: 0 0 0 40px; 
    margin: 0 15px;
}

/* 縦線 */
.schedule_list_green::before {
    content: "";
    position: absolute;
    top: 15px;  
    bottom: 20px; 
    left: 14px; 
    width: 1px;
    background-color: #333A11; 
}

.schedule_list_red::before {
    content: "";
    position: absolute;
    top: 15px;  
    bottom: 20px; 
    left: 14px; 
    width: 1px;
    background-color: #95272D; 
}

.schedule_item {
    position: relative;
    padding-bottom: 30px;
    text-align: left;
}

.green::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: #333A11;
    border-radius: 50%;
    z-index: 1;
}

.red::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: #95272D;
    border-radius: 50%;
    z-index: 1;
}

.schedule_list_time {
    display: block;
    font-size: 2.0rem;
    font-weight: bold;
    font-family: serif;
    line-height: 1;
    margin-bottom: 8px;
}

.schedule_list_topic {
    display: inline-block;
    background-color: #fff;
    padding: 3px 10px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}

.schedule_list_txt {
    line-height: 1.5;
}

.schedule_info {
    margin: 0 15px;
    text-align: left;
}

.green:nth-child(2).green::before,.green:nth-child(3).green::before {
    display: none;
}

/* スケジュール開閉 */
.schedule_btn_area {
    text-align: center;
    margin-top: 30px;
}

.schedule_btn {
    display: inline-block;
    max-width: 300px;
    width: 80%;
    padding: 15px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: serif;
    border-radius: 50px;
    cursor: pointer;
    /* transition: background 0.3s, transform 0.2s; */
    margin-bottom: 60px;
}

.btn_green, .btn_green:hover {
    background-color: #3D4017;
    border: none;
}

.btn_red, .btn_red:hover {
    background-color: #95272D;
    border: none;
}

/* guide */
.section_guide {
    background-color: #E2D5BA;
    padding-bottom: 20px;
}

.guide_topic {
    background-image: url(../images/section_topic_guide.png);
    width: 250px;
    height: 65px;
}

.guide_list {
    list-style: none;
    /* background-image: url(../images/courses_item_bg.png); */
    background-size: contain;
    background-repeat: no-repeat;
    width: 370px;
    height: 570px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.guide_item_topic {
    width: 290px;
    font-weight: 600;
    font-size: 1.8rem;
    margin:  0 auto;
    text-align: left;
    /* border-bottom: 1px solid #333A11; */
    padding-bottom: 3px;
}

.guide_item_txt {
    max-width: 290px;
    width: 100%;
    margin: 0 auto 30px;
    text-align: left;
}

.guide_item_link {
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 4px;
    width: 340px;
}

.guide_flyer {
    margin: 40px 15px;
}

.guide_link_list {
    margin: 50px auto 30px;
}

.guide_link_item {
    margin-bottom: 20px;
}

.guide_link_item a {
    display: inline-block;
    background-color: #736357;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

/* partner */
.section_partner {
    background-color: #E2D5BA;
    padding: 50px 0 130px;
    position: relative;
}

.partner_wrap {
    background-color: #fff;
    max-width: 345px;
    width: 95%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);  
    margin: 0 auto 30px;
    padding: 30px 7px;
}

.partner_wrap_topic {
    font-size: 2.0rem;
    margin-bottom: 15px;
}

.quest_company_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.quest_company_item {
    max-width: 160px;
    width: 45%;
    height: auto;
}

.sponsor_company_list {
    list-style: none;
}

.sponsor_company_item {
    max-width: 330px;
    width: 100%;
    height: auto;
}

.sponsor_company_item:nth-child(2) {
    max-width: 160px;
    width: 45%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* question */
.section_question {
    background-color: #E2D5BA;
    padding: 50px 0 200px;
    position: relative;
}

.section_question::after {
    display: block;
    content: "";
    background-image: url(../images/question_deco_strongbox.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 105px;
    height: 128px;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.qa-6 {
    max-width: 350px;
    margin-bottom: 5px;
    border-bottom: 1px solid #333;
    margin: 0 auto;
    text-align: left;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: baseline; 
    position: relative;
    padding: 1em 1em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.qa-6 summary::-webkit-details-marker {
    display: none;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #95272D;
    content: "Q";
}

.qa-6 summary::after {
    width: 24px;  
    height: 24px; 
    background-color: #95272D;
    border-radius: 50%; 
    background-image: 
        linear-gradient(#fff, #fff), 
        linear-gradient(#fff, #fff);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 2px, 2px 12px; 
    
    content: '';
    transition: transform .3s, background-size .3s;
    flex-shrink: 0;
}

.qa-6[open] summary::after {
    background-size: 12px 2px, 0px 12px;
    transform: rotate(180deg);
}


.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #95272D;
    line-height: 1.2;
    content: "A";
}


/* footer */
.footer {
    padding: 70px 0px;
    background-color: #736357;
    color: #fff;
    margin: 0 auto;
}

.footer_topic {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.footer_sns_list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer_sns_item {
    width: 50px;
    height: 50px;
}

.youtube {
    width: 65px;
    height: 65px;
}
.footer_info_list {
    list-style: none;
    margin: 0px 15px;
    text-align: left;
}

.footer_info_item {
    margin-bottom: 20px;
    font-weight: 300;
}

.footer_info_topic {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer_txt {
    text-align: left;
    margin: 40px 15px 50px;
    text-underline-offset: 4px;
}

.footer_info_txt a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}



/*アニメーションの記述*/
/*blurTrigger(じわっと出る))*/
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}
.blurTrigger {
    opacity: 0;
}

/* ふわっとあがるjs */
/* 初期状態 */
.fadeUp {
    opacity: 0;
    transform: translateY(20px); /* 下から少し上に動く */
    transition: all 0.5s ease-out;
}

/* アニメーションが発火した後の状態 */
.fadeUp.active {
    opacity: 1;
    transform: translateY(0);
}

/* ***************************
下層ページ
*****************************/

.mainVis_lowerPage {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 60px;
}

.mainVis_lowerPage_txt {
    width: 65%;
    text-align: left;
    font-size: 2.0rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* 募集要項 */
.lowerPage_guide {
    margin: 0 auto ;
}

.lowerPage_guide_item {
    list-style: none;
    margin: 0 auto;
    width: 90%;
    overflow-wrap: break-word;
    border-bottom: 1px solid #333A11;
    padding-bottom: 50px;
}

.lowerPage_guide_item:last-child {
    border-bottom: none;
}

.lowerPage_guide_topic {
    font-size: 2.2rem;
    margin: 50px auto 20px;
    text-align: left;
}

.lowerPage_guide_txt {
    text-align: left;
}

.lowerPage_guide_txt a {
    width: 90%;
}

.lowerPage_guide_button {
    display: block;
    margin: 10px auto 20px;

}

.lowerPage_guide_button a {
    display: block;
    max-width: 300px;
    width: 90%;
    padding: 10px 20px;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.button_red a {
    background-color: #95272D;
    color: #fff;
}

.button_white a {
    background-color: #fff;
    color: #95272D;
}

/* クエスト一覧 */
.lowerPage_quest {
    margin: 60px auto 0;
}

.mainVis_lowerPage_topic {
    width: 35%;
    text-align: left;
    font-size: 2.0rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.lowerPage_company_list {
    width: 95%;
    margin: 0 auto;
}

.lowerPage_quest_line {
    display: block;
    border-bottom: 1px solid #333A11;
    width: 90%;
    margin: 60px auto 0;
}

.lowerPage_quest_list {
    list-style: none;
    width: 90%;
    margin: 0 auto;
}

.lowerPage_quest_item {
    margin: 0 auto;
    text-align: left;
    border-bottom: 1px solid #333A11;
    padding-bottom: 60px;
}

.lowerPage_quest_item:last-child {
    border: none;
}
.lowerPage_quest_topic {
    font-size: 2.2rem;
    margin: 60px 0 10px;
}

.lowerPage_quest_link {
    margin-bottom: 10px;
}

.lowerPage_quest_img {
    margin-bottom: 10px;
}

.lowerPage_quest_txt {
    text-align: center;
}



