@charset "UTF-8";

/* =========================================
　　　　　　　　　　共通
============================================*/

:root {
    --color-gry: #f2f6f7;
    --color-red: #e11612;
    --color-blu: #019fab;
    --color-pnk: #eb5360;
    --gap_60px: clamp(20px, 5vw, 60px); 
    --gap_30px: clamp(24px, 2vw, 30px); 
    --gap_26px: clamp(18px, 4vw, 26px); 
    --gap_24px: clamp(16px, 3vw, 24px); 
    --gap_22px: clamp(16px, 3vw, 22px); 
    --gap_20px: clamp(14px, 3vw, 20px); 
    --gap_18px: clamp(14px, 3vw, 18px); 
    --gap_16px: clamp(12px, 2.5vw, 16px); 
    --gap_14px: clamp(10px, 3vw, 14px); 
}

html {
    scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

.wrap {
    font-size: 16px;
    font-family: "LINE Seed JP", sans-serif;
    font-style: normal;
    font-feature-settings: "palt" 1;
    letter-spacing: .02em;
    overflow: clip;
}

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

.wrap a {
    text-decoration: none;
}

.wrap ul,
.wrap ol {
    list-style: none;
}

.wrap img {
    max-width: 100%;
}

.wrap picture {
    display: flex;
    justify-content: center;
}

.wrap h4 {
    width: 70%;
    max-width: 350px;
    margin: 0 auto;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

.ib {
    display: inline-block;
    font-style: normal;
}

/* --中のwrap-- */
.wrap_2 {
    padding: 10% 5%;
    margin: 0 auto;
}

.wrap_2 section:not(:last-of-type) {
    margin-bottom: clamp(30px, 8vw, 70px);
}

@media screen and (min-width: 768px) {
    
    .wrap h4 {
        width: 40%;
        max-width: 400px;
        min-width: 300px;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    /* --中のwrap-- */
    .wrap_2 {
        max-width: 1800px;
        padding: clamp(70px, 5vw, 90px) 4% clamp(80px, 6vw, 100px) 4%;
    }

    .wrap_2 section:not(:last-of-type) {
        margin-bottom: clamp(70px, 6vw, 110px);
    }

}

/* =========================================
    　　　　　　　　背景
============================================*/

.wrap::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("/1okuenproject/images/bg_pc.jpg") center/cover no-repeat;
    z-index:-1;
}

/* =========================================
    　　　キービジュアル【class="kv"】
============================================*/

.kv {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

/* =========================================
    　　　イントロ【class="intro"】
============================================*/

.intro {
    text-align: center;
}

.intro_text {
    filter: drop-shadow(2px 2px 1px rgba(243, 152, 0, 1));
}

.intro_text h2 {
    margin: 0 auto 5% auto;
}

.intro_text div {
    font-weight: 700;
    font-size: var(--gap_20px);
    line-height: 1.7em;
}

.intro_text div em {
    font-style: normal;
    background-color: #fff;
    border: 1px solid #000;
    padding: .2em;
    margin: 0 .2em;
}

.intro_text .spacer {
    display: block;
    height: .8em;
}

.intro_text .spacer2 {
    height: .4em;  
}

.intro_text div p b {
    padding-left: .3%;
}

.icon_blu {
    color: var(--color-blu);
}

.icon_org {
    color: #f69802;
}

.icon_grn {
    color: #bcd500;
}

.icon_pnk {
    color: var(--color-pnk);
}

.icon_red {
    color: var(--color-red);
}


/* --comingsoon-- */
.intro .cs {
    filter: drop-shadow(5px 5px 2px rgba(243, 152, 0, 1));
    margin: 25% auto;
}

/* --本プロジェクトは～-- */
.intro_benefit {
    position: relative;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000, 5px 5px #000;
    padding: 15% 5% 5% 5%;
    margin-top: 17%;
}

.intro_benefit h3 {
    position: absolute;
    width: 65%;
    max-width: 400px;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.intro_benefit ul {
    font-size: clamp(12px, 2vw, 16px);
    text-align: left;
    line-height: 1.5em;
    margin-top: 5%;
}

.intro_benefit_box {
    position: relative;
    max-width: 450px;
    background-color: var(--color-gry);
    border-radius: 10px;
    padding: 25% 5% 7% 5%;
    margin: 25% auto 0 auto;
}

.intro_benefit_box p {
    position: absolute;
    width: 40%;
    max-width: 180px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.intro_benefit_box dl dt {
    width: 90%;
    margin: 0 auto 3% auto;
}

.intro_benefit_box dl dd {
    font-size: clamp(14px, 2vw, 16px);
    text-align: justify;
    line-height: 1.5em;
}

@media screen and (min-width: 650px) {

    /* --comingsoon-- */
    .intro .cs {
        width: 80%;
        max-width: 1000px;
        margin: 15% auto;
    }

    /* --本プロジェクトは～-- */
    .intro_benefit {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 3%;
        padding: 11% 5% 5% 5%;
    }

    .intro_benefit h3 {
        max-width: unset;
    }

    .intro_benefit_box {
        width: 48%;
        max-width: unset;
        padding: 11% 3% 3% 3%;
        margin: 14% auto 0 auto;
    }

    .intro_benefit_box dl dt {
        width: 100%;
    }

}

@media screen and (min-width: 768px) {

    .intro_text h2 {
        width: 80%;
        margin: 0 auto 3% auto;
    }

    .intro_text {
        filter: drop-shadow(3px 3px 2px rgba(243, 152, 0, 1));
    }

    .intro_text div {
        font-size: clamp(18px, 2vw, 26px);
        line-height: 2em;
    }

    /* --本プロジェクトは～-- */
    .intro_benefit {
        max-width: 1400px;
        column-gap: 2%;
        padding: 6% 2.5% 2.5% 2.5%;
        margin: clamp(60px, 7vw, 100px) auto 0 auto;
    }

    .intro_benefit ul {
        font-size: clamp(14px, 1.5vw, 18px);
        margin-top: 2.5%;
    }

    .intro_benefit_box {
        width: 32%;
        padding: 9% 2.5% 2.5% 2.5%;
        margin-top: 7%;
    }

    .intro_benefit_box p {
        width: 45%;
        max-width: unset;
    }

    .intro_benefit_box dl dd {
        font-size: clamp(14px, 1.5vw, 18px);
    }
    
}

/* =========================================
　ガイド（ジャンル・選定例・選考基準）【class="guide"】
============================================*/

/* ----------ガイド全体---------- */
.guide {
    position: relative;
    border: 1px solid #000;
    background:
    url(/1okuenproject/images/guide_bg1.png) no-repeat left 20% / 90%,
    url(/1okuenproject/images/guide_bg2.png) no-repeat right bottom 640px / 50%,
    var(--color-blu);
    padding: 10% 5%;
    margin-bottom: clamp(50px, 9vw, 80px) !important;
}

.guide_title p {
    color: #fff;
    font-weight: 700;
    font-size: var(--gap_18px);
    line-height: 1.7em;
}

/* --右影-- */
.guide::before {
    position: absolute;
    top: 5px;
    right: -12px;
    width: 10px;
    height: 100%;
    border: solid #000;
    border-width: 1px 1px 0px 0px;
    transform: skewY(45deg);
    content: '';
    background: #00808c;
}

/* --下影-- */
.guide::after {
    position: absolute;
    bottom: -12px;
    left: 5px;
    width: 100%;
    height: 10px;
    border: solid #000;
    border-width: 0px 1px 1px 1px;
    transform: skewX(45deg);
    content: '';
    background: #005a66;
}

@media screen and (min-width: 768px) {

    .guide {
        background:
        url(/1okuenproject/images/guide_bg1.png) no-repeat left   top 150px / 90%,
        url(/1okuenproject/images/guide_bg2.png) no-repeat right 80px  bottom 250px / 30%,
        var(--color-blu);
        padding: 6% 2.5%;
        margin-bottom: clamp(100px, 9vw, 130px) !important;
    }

    .guide_title p {
        font-size: clamp(14px, 2vw, 20px);
        line-height: 2em;
    }

    /* --右影-- */
    .guide::before {
        top: 12px;
        right: -27px;
        width: 25px;
        border-width: 1px 1px 1.5px 0px;
    }
    
    /* --下影-- */
    .guide::after {
        bottom: -27px;
        left: 12px;
        height: 25px;;
        border-width: 0px 1.5px 1px 1px;
    }

}

@media screen and (min-width: 1280px) {

    .guide {
        background: 
        url(/1okuenproject/images/guide_bg1.png) no-repeat left bottom 580px / 95%,
        url(/1okuenproject/images/guide_bg2.png) no-repeat right 100px bottom 300px / 25%,
        var(--color-blu);
    }

}

/* ----------求める企画ジャンル【guide_1】---------- */
.guide_1 .guide_title,
.guide_2 .guide_title {
    text-align: center;
    margin: 0 auto 4% auto;
}

.guide_1 .guide_title h4,
.guide_2 .guide_title h4 {
    margin: 0 auto 3% auto;
}

/* --------swiperコンテナ-------- */
.sw_con1 {
    position: relative;
    height: fit-content;
    margin-inline: auto;
    margin-bottom: clamp(70px, 15vw, 130px);

    width: 95%;
}

/* swiper */
.swiper1 .swiper-slide {
    height: unset !important;
}

.swiper1 .swiper-slide img {
    height: auto;
    width: 100%;
}

/* swiper左右矢印 */
.sw_btn1 {
    position: absolute;
    width: 25%;
    max-width: 110px;
    height: auto;
    left: 0;
    bottom: -10vw;
}

.sw_btn1 .swiper1-button-prev,
.sw_btn1 .swiper1-button-next {
    width: 40% !important;
    height: auto !important;
    top: unset !important;
    bottom: 0 !important;
}

.sw_btn1 .swiper1-button-prev::after,
.sw_btn1 .swiper1-button-next::after {
    font-size: 2vw !important; 
    background-repeat: no-repeat!important;
    background-size: contain !important;
    content: "" !important;
    width: 100px!important;
    aspect-ratio: 1;
    margin: auto !important;
}

/* 前への矢印カスタマイズ*/
.sw_btn1 .swiper1-button-prev::after {
    background-image: url(/1okuenproject/images/genre_prev.svg);
}

.sw_btn1 .swiper1-button-prev, .swiper-rtl .swiper-button-next {
    left: 0 !important;
    right: auto;
    justify-content: flex-start !important;
}

/* 次への矢印カスタマイズ */
.sw_btn1 .swiper1-button-next::after {
    background-image: url(/1okuenproject/images/genre_next.svg);
}

.sw_btn1 .swiper1-button-next, .swiper-rtl .swiper-button-prev {
    right: 0 !important;
    left: auto;
    justify-content: flex-end !important;
}

/* swiperスライド中身の設定 */
.guide_1_box {
    width: calc(100% - 5px);
    height: calc( 100% - 5px);
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: 1px 1px #00636f, 2px 2px #00636f, 3px 3px #00636f, 4px 4px #00636f, 5px 5px #00636f;
    padding: 7% 5%;
    margin-bottom: 2%;
}

.guide_1_box p {
    width: 70%;
    margin: 0 auto;
}

.guide_1_box img {
    width: unset !important;
    max-width: 100% !important;
}

.guide_1_box dl dt {
    width: 80%;
    font-weight: bold;
    margin: 5% auto 5% auto;
}

.guide_1_box dl dd {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.5em;
}

@media screen and (min-width: 450px) {

    .guide_1_box dl dt {
        width: 95%;
    }

}

@media screen and (min-width: 768px) {

    .guide_1 .guide_title,
    .guide_2 .guide_title {
        margin: 0 auto clamp(30px, 5vw, 40px) auto;
    }

    .guide_1 .guide_title h4,
    .guide_2 .guide_title h4 {
        margin: 0 auto clamp(20px, 5vw, 30px) auto;
    }

    /* swiperコンテナ */
    .sw_con1 {
        margin-bottom: clamp(80px, 8vw, 110px);
    }

    /* swiper */
    .guide_1_box {
        padding: 7%;
    }

    /* swiper左右矢印 */
    .sw_btn1 {
        width: 15%;
        bottom: -6vw;
    }

    .swiper1 .swiper-button-prev,
    .swiper1 .swiper-button-next {
        width: 40% !important;
        height: auto !important;
    }

}

@media screen and (min-width: 1280px) {

    .guide_1 {
        display: flex;
        column-gap: 2%;
    }

    .guide_1 .guide_title {
        width: 29%;
        margin: 5% auto 0% auto;
    }

    /* swiperコンテナ */
    .sw_con1 {
        width: 69%;
        margin-bottom: clamp(70px, 8vw, 130px);
    }

    /* swiper左右矢印 */
    .sw_btn1 {
        width: 15%;
        bottom: -4vw;
    }

}

/* ----------これまでの実施例【guide_2】---------- */
.guide_2 {
    margin-bottom: clamp(40px, 8vw, 70px);
}

.guide_2_box {
    width: calc( 100% - 5px);
    height: calc( 100% - 5px);
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: 1px 1px #00636f, 2px 2px #00636f, 3px 3px #00636f, 4px 4px #00636f, 5px 5px #00636f;
    padding: 7% 5%;
}

.guide_2_box:not(:last-of-type) {
    margin-bottom: 5%;
}

.guide_2_box ul img {
    border: 1px solid #000;
    border-radius: 10px;
}

/* ---サブ画像4枚--- */
.guide_2_item2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap : .5vw;
    column-gap : 1%;
    margin-top: 1%;
}

.guide_2_item2 li {
    width: 49%;
}

/* ---詳細--- */
.guide_2_item3 dl {
    margin: 2% 0 4% 0;
}

.guide_2_item3 dl dt {
    font-weight: 700;
    font-size: clamp(16px, 4vw, 24px);
    margin-bottom: 1%;
}
.guide_2_item3 dl dd {
    font-size: var(--gap_16px);
}

.guide_2_item3 p {
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 900;
    text-align: center;
    line-height: 1.3em;
}

.guide_2_item3 ol {
    font-size: var(--gap_16px);
    line-height: 1.5em;
    background-color: var(--color-gry);
    border-radius: 5px;
    padding: 5%;
    margin-top: 5%;
}

/* ---本ダレタイトル--- */
.swiper-slide:nth-of-type(2) .guide_2_box dl dt {
    letter-spacing: -.1em;
}


/* --------swiperコンテナ-------- */
.sw_con2 {
    position: relative;
    height: fit-content;
    margin-inline: auto;
    margin-bottom: clamp(70px, 15vw, 130px);
}

/* swiper */
.swiper2 .swiper-slide {
    height: auto !important;
}

.swiper2 .swiper-slide img {
    height: auto;
    width: 100%;
}

/* swiper左右矢印 */
.sw_btn2 {
    position: absolute;
    width: 25%;
    max-width: 110px;
    height: auto;
    left: 0;
    bottom: -10vw;
}

.sw_btn2 .swiper2-button-prev,
.sw_btn2 .swiper2-button-next {
    width: 40% !important;
    height: auto !important;
    top: unset !important;
    bottom: 0 !important;

    position: absolute;
}

.sw_btn2 .swiper2-button-prev::after,
.sw_btn2 .swiper2-button-next::after {
    font-size: 2vw !important; 
    background-repeat: no-repeat!important;
    background-size: contain !important;
    content: "" !important;
    width: 100px!important;
    aspect-ratio: 1;
    margin: auto !important;
    display: block;
}

/* 前への矢印カスタマイズ*/
.sw_btn2 .swiper2-button-prev::after {
    background-image: url(/1okuenproject/images/genre_prev.svg);
}

.sw_btn2 .swiper2-button-prev, .swiper-rtl .swiper2-button-next {
    left: 0 !important;
    right: auto;
    justify-content: flex-start !important;
}

/* 次への矢印カスタマイズ */
.sw_btn2 .swiper2-button-next::after {
    background-image: url(/1okuenproject/images/genre_next.svg);
}

.sw_btn2 .swiper2-button-next, .swiper-rtl .swiper2-button-prev {
    right: 0 !important;
    left: auto;
    justify-content: flex-end !important;
}

@media screen and (min-width: 768px) {

    .guide_2 {
        margin-bottom: 7%;
    }
    
    .guide_2_box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 2%;
        order: 1;
        padding: 3% 3%;
    }

    .guide_2_box:not(:last-of-type) {
        margin-bottom: 3%;
    }

    /* ---メイン画像--- */
    .guide_2_item1 {
        width: 45%;
    }

    /* ---サブ画像4枚--- */
    .guide_2_item2 {
        border-top: 1px dotted #000;
        padding-top: 2%;
        margin-top: 2%;
        order: 3;
    }

    .guide_2_item2 li {
        width: 24%;
    }

    /* ---詳細--- */
    .guide_2_item3 {
        width: 53%;
    }

    .guide_2_item3 dl dt {
        font-size: clamp(16px, 2.5vw, 28px);
    }

    .guide_2_item3 dl dd {
        font-size: clamp(12px, 1.5vw, 16px);
    }

    .guide_2_item3 p {
        font-size: clamp(17px, 2vw, 28px);
        text-align: left;
    }

    .guide_2_item3 ol {
        font-size: clamp(12px, 1.5vw, 16px);
        padding: 3%;
        margin-top: 3%;
        order: 2;
    }


    /* --------swiperコンテナ-------- */
    .sw_con2 {
        width: 95%;
        max-width: 1300px;
        margin-bottom: clamp(80px, 8vw, 110px);
    }

    /* swiper左右矢印 */
    .sw_btn2 {
        width: 15%;
        bottom: -6vw;
    }

    .swiper2 .swiper-button-prev,
    .swiper2 .swiper-button-next {
        width: 40% !important;
        height: auto !important;
    }

}

@media screen and (min-width: 1280px) {

    .sw_btn2 {
        width: 15%;
        bottom: -4vw;
    }

}


/* ----------選考基準【guide_3】---------- */
.guide_3 .guide_title h4 {
    margin-bottom: 6%;
}

.guide_3 ul {
    width: 75%;
    max-width: 350px;
    margin: 0 auto;
}

.guide_3 ul li:not(:last-of-type) {
    margin-bottom: 5%;
}

.guide_3 ul li {
    filter: drop-shadow(5px 5px 0px rgba(0, 99, 111, 1));
}

@media screen and (min-width: 650px) {

    .guide_3 .guide_title h4 {
        margin: 0 auto clamp(30px, 5vw, 40px) auto;
    }

    .guide_3 ul {
        width: 100%;
        max-width: unset;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1%;
        column-gap: 4%;
    }

    .guide_3 ul li { 
        width: 48%;
    }

    .guide_3 ul li:not(:last-of-type) {
        margin-bottom: 0;
    }

}

@media screen and (min-width: 768px) {

    .guide_3 ul {
        width: 95%;
        max-width: 1300px;
        display: flex;
        justify-content: center;
        column-gap: 4%;
    }

    .guide_3 ul li { 
        width: 30%;
    }

}

/* =========================================
    　　　スケジュール【class="schedule"】
============================================*/

.schedule h4 {
    text-align: center;
    margin: 0 auto var(--gap_60px) auto;
}

.schedule_box {
    display: flex;
    justify-content: center;
}

/* --内容-- */
.schedule_content {
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000;
}

/* --▼-- */
.schedule_arrow {
    font-size: var(--gap_14px);
    line-height: 1;
    margin: 3% auto 2% auto;
}

/* --日程-- */
.schedule_box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    color: #fff;
    text-align: center;
    border-radius: 10px 0 0 10px;
    padding: 5% 2.5%;
}

.schedule_box1 p {
    font-weight: 700;
    font-size: var(--gap_16px);
    letter-spacing: 0.1em;
}

.schedule_box1 p span {
    font-size: var(--gap_22px);
}

/* --詳細-- */
.schedule_box2 {
    display: flex;
    align-items: center;
    width: 75%;
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    padding: 5% 2.5%;
}

.schedule_box2 dl {
    width: 100%;
}

.schedule_box2 dl dt {
    font-size: var(--gap_22px);
    font-weight: 700;
    line-height: 1.2em;
}

.schedule_box2 dl dt i {
    font-style: normal;
    font-size: var(--gap_18px);
}

.schedule_box2 dl dt small {
    color: #000;
    font-size: var(--gap_14px);
    font-weight: 400;
    line-height: 1em;
}

.schedule_box2 dl dd {
    background-color: var(--color-gry);
    border-radius: 2px;
    font-size: var(--gap_16px);
    line-height: 1.5em;
    padding: 5%;
    margin-top: 5%;
}

/* --企画募集開始-- */
.schedule_start {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 5% auto;
}

.schedule_start .schedule_content {
    margin-bottom: 5%;
}

.schedule_start .schedule_arrow {
    margin: 0 auto 1% auto !important;
}

.schedule_start .schedule_box1 {
    width: 40%;
    background-color: var(--color-red);
}

.schedule_start .schedule_box1 p span {
    font-size: var(--gap_26px);
}

.schedule_start .schedule_box2 {
    width: 60%;
    color: var(--color-red);
}

.schedule_start .schedule_box2 dl dt {
    font-size: var(--gap_26px);
    text-align: center;
}

/* --第1弾・第2弾締め切り-- */
.schedule_title {
    position: relative;
}

.schedule_title p {
    width: fit-content;
    font-weight: 700;
    font-size: var(--gap_22px);
    color: #fff;
    border: 1px solid #000;
    border-radius: 100px;
    padding: 2% 5%;
    margin: 0 auto 7% auto;
}

.schedule_title p span {
    font-size: var(--gap_26px);
    margin: 0 0.05em;
}

.schedule_title div {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* --第1弾-- */
.schedule_1 {
    margin-bottom: 10%;
}

.schedule_1 .schedule_title p {
    background-color: var(--color-pnk);
}

.schedule_1 .schedule_box1 {
    background-color: var(--color-pnk);
}

.schedule_1 .schedule_box2 dl dt {
    color: var(--color-pnk);
}

/* --第2弾-- */
.schedule_2 .schedule_title p {
    background-color: var(--color-blu);
}

.schedule_2 .schedule_box1 {
    background-color: var(--color-blu);
}

.schedule_2 dl dt {
    color: var(--color-blu);
}

/* --期限が過ぎたもの-- */
.overdue .schedule_box1 {
    background-color: #9f9f9f !important;
}

.overdue .schedule_box2 dl dt {
    color: #9f9f9f;
}

.overdue_info {
    font-size: var(--gap_18px);
    text-align: center;
    margin-top: 4%;
}


/* --注意書き-- */
.schedule_info {
    width: 100%;
    line-height: 1.5em;
    margin-top: 5%;
}

.schedule_info li {
    font-size: var(--gap_14px);
}

@media screen and (min-width: 768px) {

    .schedule_wrap {
        width: 80%;
        margin: 0 auto;
    }

    .schedule_box1 {
        padding: 5% 2%;
    }

    .schedule_box2 dl dd {
        padding: 2.5%;
        margin-top: 2.5%;
    }

    /* --第1弾-- */
    .schedule_1 {
        margin-bottom: 13%;
    }

}

@media screen and (min-width: 1000px) {

    .schedule_wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        column-gap: 3%;
        max-width: 1500px;
    }

    /* --日程-- */
    .schedule_box1 p {
        font-size: clamp(12px, 1.5vw, 18px);
        line-height: 1.3em;
        letter-spacing: .15em;
    }

    .schedule_box1 p span {
        font-size: var(--gap_24px);
    }

    /* --詳細-- */
    .schedule_box2 dl dt {
        font-size: var(--gap_24px);
    }

    .schedule_box2 dl dt i {
        font-size: var(--gap_16px);
    }

    .schedule_box2 dl dd {
        font-size: clamp(12px, 1.5vw, 16px);
        padding: 2.5%;
        margin-top: 2.5%;
    }

    /* --企画募集開始-- */
    .schedule_start {
        width: 35%;
        min-width: 500px;
        max-width: unset;
        margin: 0 auto 2% auto;
    }

    .schedule_start .schedule_box1 p span {
        font-size: clamp(24px, 2.5vw, 30px);
    }
    
    .schedule_start .schedule_box2 {
        padding: 7% 2.5% 7% 5%;
    }

    .schedule_start .schedule_box2 dl dt {
        font-size: clamp(24px, 2.5vw, 30px);
    }

    /* --第1弾・第2弾-- */
    .schedule_1,
    .schedule_2 {
        width: 48%;
    }

    .schedule_title p span {
        font-size: clamp(18px, 3vw, 28px);
    }

    /* --第1弾-- */
    .schedule_1 {
        margin-bottom: 0;
    }

    /* --注意書き-- */
    .schedule_info {
        margin-top: 3%;
    }

}

/* =========================================
    　応募について【class="recruit"】
============================================*/

.recruit {
    position: relative;
    border: 1px solid #000;
    background: 
    url(/1okuenproject/images/guide_bg1.png) no-repeat right 50px top 50px / 89%,
    url(/1okuenproject/images/guide_bg2.png) no-repeat right bottom 200px / 50%,
    #bcd500;
    padding: 10% 5%;
    margin-bottom: clamp(50px, 9vw, 80px) !important;
}

.recruit h4 {
    margin: 0 auto var(--gap_60px) auto;
}

/* --右影-- */
.recruit::before {
    position: absolute;
    top: 5px;
    right: -12px;
    width: 10px;
    height: 100%;
    border: solid #000;
    border-width: 1px 1px 0px 0px;
    transform: skewY(45deg);
    content: '';
    background: #8fc320;
}

/* --下影-- */
.recruit::after {
    position: absolute;
    bottom: -12px;
    left: 5px;
    width: 100%;
    height: 10px;
    border: solid #000;
    border-width: 0px 1px 1px 1px;
    transform: skewX(45deg);
    content: '';
    background: #749e16;
}


/* --応募規約・募集要項-- */
.recruit_info li {
    margin-bottom: 5%;
}

.recruit_info li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--gap_20px);
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000;
    padding: 3% 5%;
}

.recruit_info li a p {
    width: 15%;
}

/* --応募はこちら-- */
.recruit_entry {
    margin-bottom: 10%;
}

.recruit_entry a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background: url(/1okuenproject/images/entry_bg.webp) no-repeat right bottom / 40%,
                var(--color-red);
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000;
    padding: 3% 5%;
}

.recruit_entry a dl {
    width: 50%;
    font-weight: 700;
}

.recruit_entry a dl dt {
    font-size: clamp(28px, 6vw, 46px);
    margin-bottom: 1%;
}

.recruit_entry a dl dd {
    font-size: var(--gap_18px);
}

.recruit_entry a p {
    width: 20%;
}

/* --注意事項-- */
.recruit_caution dl:not(:last-of-type) {
    margin-bottom: 5%;
}

.recruit_caution dl dt {
    display: flex;
    align-items: center;
    font-size: var(--gap_16px);
    margin-bottom: 1%;
}

.recruit_caution dl dt::before {
    content: "";
    width: 1.5em;
    height: .5px;
    background-color: #000;
    margin-right: 1.5%;
}

.recruit_caution dl dd {
    font-size: var(--gap_14px);
    line-height: 1.5em;
}

.recruit_caution a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #000;
}


@media screen and (min-width: 768px) {

    .recruit {
        background: url(/1okuenproject/images/recruit_bg1.png) no-repeat left top 8% / 35%,
                    url(/1okuenproject/images/recruit_bg2.png) no-repeat right 20px bottom 200px / 28%,
                    #bcd500;
        padding: 6% 5%;
        margin-bottom: clamp(100px, 9vw, 130px) !important;
    }

    .recruit_wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --右影-- */
    .recruit::before {
        top: 12px;
        right: -27px;
        width: 25px;
        border-width: 1px 1px 1.5px 0px;
    }
    
    /* --下影-- */
    .recruit::after {
        bottom: -27px;
        left: 12px;
        height: 25px;
        border-width: 0px 1.5px 1px 1px;
    }

    /* --応募規約・募集要項-- */
    .recruit_info ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .recruit_info li {
        width: 49%;
        margin-bottom: 3%;
    }

    .recruit_info li a {
        font-size: clamp(14px, 2.5vw, 22px);
        transition-duration: .2s;
    }

    .recruit_info li a:hover {
        opacity: .7;
    }

    /* --Q&A-- */
    .recruit_qa {
        width: 100% !important;
    }

    .recruit_qa a {
        font-size: clamp(16px, 3vw, 30px) !important;
        padding: 1.5% 2.5% !important;
    }

    .recruit_qa p {
        width: 7% !important;
    }


    /* --応募はこちら-- */
    .recruit_entry {
        margin-bottom: 5%;
    }

    .recruit_entry a {
        padding: 2.5% 5%;
        transition-duration: .2s;
    }

    .recruit_entry a:hover {
        opacity: .7;
    }

    .recruit_entry a dl {
        display: flex;
        align-items: center;
        column-gap: 2%;
    }

    .recruit_entry a dl dt {
        font-size: clamp(32px, 5vw, 60px);
    }

    .recruit_entry a dl dd {
        font-size: var(--gap_20px);
    }

    .recruit_entry a p {
        width: 10%;
    }

    /* --注意事項-- */
    .recruit_caution dl:not(:last-of-type) {
        margin-bottom: 3%;
    }

    .recruit_caution dl dt {
        font-size: var(--gap_18px);
    }

    .recruit_caution dl dt::before {
        margin-right: 1%;
    }

    .recruit_caution dl dd {
        font-size: var(--gap_16px);
    }

    .recruit_caution a {
        transition-duration: .1s;
    }

    .recruit_caution a:hover {
        opacity: .7;
    }

}

/* =========================================
    　　　お問い合わせ【class="contact"】
============================================*/

.contact {
    text-align: center;
}

.contact h4 {
    margin: 0 auto var(--gap_60px) auto;
}

.contact dl dt {
    font-size: var(--gap_22px);
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 3%;
}

.contact dl dd {
    font-size: var(--gap_22px);
    line-height: 1.5em;
}

.contact dl dd a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #000;
}

.contact dl dd small {
    display: block;
    font-size: var(--gap_14px);
    margin-top: 3%;
}

@media screen and (min-width: 768px) {

    .contact dl dt {
        font-size: clamp(28px, 3vw, 34px);
        margin-bottom: 2%;
    }

    .contact dl dd {
        font-size: clamp(14px, 3vw, 28px);
    }

    .contact dl dd a {
        transition-duration: .2s;
    }

    .contact dl dd a:hover {
        opacity: .7;
    }

    .contact dl dd small {
        font-size: var(--gap_16px);
        margin-top: 2%;
    }

}

/* ========================================
    　　　スライドイン【class="slideIn"】
============================================*/

.slideIn {
	opacity: 0;
	transform: translateY(50px);
	transition: 0.6s;
}

@media screen and (min-width: 768px) {
    
    .slideIn {
        transform: translateY(100px);
        transition: 0.5s;
    }

}

/* =========================================
    　　　　　　トップボタン
============================================*/

#page-top {
    position: fixed;
    bottom: 3%;
    right: 1.5%;
    width: 23%;
    aspect-ratio: 284 / 281;
    background: url(/1okuenproject/images/entry_btn.png) no-repeat center / 100%;
    z-index: 100;
}

@media screen and (min-width: 768px) {

    #page-top {
        bottom: 1.5%;
        right: 1%;
        width: 12%;
        max-width: 180px;   
        transition-duration: .1s;
    }

    #page-top:hover {
        opacity: .7;
    }

}

/* =========================================
    　　　　　　ニュースティッカー
============================================*/

.ticker {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: #ec5317;
    white-space:nowrap;
    padding: clamp(2px, 3vw, 20px) 0;
}

.ticker ul {
    display: flex;
    align-items: center;
    animation: ticker 80s linear infinite;
}

.ticker li {
    font-size: var(--gap_18px);
    margin-right: 1.5em;
}

.ticker li:nth-of-type(odd) {
    color: #ec5317;
    font-weight: 600;
    background-color: #fff;
    padding: .1em .5em;
    border-radius: 2px;
}

.ticker li i {
    padding-right: .2em;
}

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

@media screen and (min-width: 768px) {

    .ticker {
        padding: clamp(2px, 2vw, 25px) 0;
    }

    .ticker li {
        font-size: clamp(14px, 2vw, 20px);
    }

    .ticker li:nth-of-type(odd) {
        padding: .2em .5em; 
    }

}

/* =========================================
    　　　　　　番宣動画
============================================*/

.movie_wrap {
	width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}

.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* Equipmedia用 */
.jstream-eqPlayer,
.eq-h5_player {
	width: 100% !important;
	height: 100% !important;
}
/* Equipmedia用 */


/* =========================================
    　　　　　　クラブTVO記事
============================================*/

.topics h4 {
    margin: 0 auto var(--gap_60px) auto;
}

.tvo-report {
    max-width: 500px;
    margin: 0 auto 5% auto;
}

.tvo-report-link {
    width: 90%;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 1px 1px #000, 2px 2px #000, 3px 3px #000, 4px 4px #000, 5px 5px #000;
    padding: 6% 5%;
    margin: 0 auto;
}

.tvo-report-article:not(:last-of-type) {
    margin-bottom: 5%;
}

.tvo-report-link {
    text-decoration: none;
    display: block;
}

.tvo-report-thumbnail-wrapper {
    display: flex;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 3%;
    aspect-ratio: 16 / 9;
}

.tvo-report-thumbnail-wrapper img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.tvo-report-time {
    font-size: var(--gap_22px);
    font-weight: bold;
    color: #000;
}

.tvo-report-title {
    font-size: var(--gap_16px);
    color: #000;
    margin-top: 2%;
}

@media screen and (min-width: 768px) {

    .tvo-report {
        max-width: 1300px;
        display: flex;
        justify-content: center;
        column-gap: 3%;
    }

    .tvo-report-article {
        width: 32%;
    }

    .tvo-report-article:not(:last-of-type) {
        margin-bottom: 0;
    }

    .tvo-report-link {
        width: 100%;
        height: 100%;
        padding: 5% 5%;
    }

    .tvo-report-thumbnail-wrapper {
        cursor: pointer;
        max-width: 500px;
        overflow: hidden;
        width: 100%;
    }

    .tvo-report-thumbnail-wrapper img {
        height: auto;
        transition: transform .6s ease; /* ゆっくり変化させる */
    }

    .tvo-report-link:hover .tvo-report-thumbnail-wrapper img {
        transform: scale(1.1); /* 拡大 */
    }

    .tvo-report-time {
        font-size: clamp(16px, 2vw, 22px);
    }

    .tvo-report-title {
        font-size: clamp(14px, 1.5vw, 18px);
        line-height: 1.3em;
    }

}

/* ========================================
    　　　     Q&A【class="qa"】
============================================*/

.qa h4 {
    margin: 0 auto 7% auto;
}

.qa h5 {
    font-size: clamp(20px, 4vw, 28px);
    text-align: center;
    margin-bottom: 5%;
}

.qa article {
    margin-top: clamp(50px, 9vw, 80px);
    scroll-margin-top: 20px;
}

/* --ナビゲーション-- */
.qa_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2vw;
    column-gap: 2%;
}

.qa_nav li {
    width: 49%;
}

.qa_nav p {
    width: 80%;
    text-align: center;
}

.qa_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    font-size: var(--gap_16px);
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 5% 7%;
}

.qa_nav a span {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
}

.qa_nav a span::after {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    content: "";
    background: url(/1okuenproject/images/qa_arrow_nav.png) no-repeat center center / 100%;
    aspect-ratio: 224 / 135;
    width: 40%;
    max-width: 30px;
}

/* --------------アコーディオンパネル-------------- */
.accordion_container {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  margin: 0 auto;
}

.accordion_container:not(:last-of-type) {
    margin-bottom: 5%;
}

/* ---------質問--------- */
.accordion_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2%;
    padding: clamp(15px, 3vw, 25px);
    cursor: pointer;
    transition-duration: 0.2s;
    z-index: +1;
}

.accordion_title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2%;
    width: 95%;
}

/* --Q-- */
.accordion_title_box dt {
    width: 10%;
}

.accordion_title_box dt::before {
    content: "";
    display: block;
    background: url(/1okuenproject/images/qa_q.png) no-repeat center center / 100%;
    aspect-ratio: 120 / 120;
}

/* --質問内容-- */
.accordion_title_box dd {
    width: 90%;
    font-size: clamp(14px, 3vw, 22px);
    font-weight: bold;
}

/* -- ▼ボタン -- */
.icon_wrap {
    background: url(/1okuenproject/images/qa_arrow.png) no-repeat center center / 100%;
    aspect-ratio: 212 / 123;
    width: 5%;
    max-width: 30px;
    transition-duration: 0.2s;
}

.accordion_title.open 
.icon_wrap {
  transform: rotate(180deg);
}


/* ---------解答--------- */
.accordion_inner {
    display: none;
    padding: 0 clamp(15px, 3vw, 25px) clamp(15px, 3vw, 25px) clamp(15px, 3vw, 25px);
    box-sizing: border-box;
}
  
.accordion_inner_box {
    display: flex;
    column-gap: 2%;
    border-top: 1px dashed #9F9F9F;
    padding-top: clamp(15px, 3vw, 25px);
    margin: 0;
}

/* --A-- */
.accordion_inner_box dt {
    width: 10%;
}

.accordion_inner_box dt::before {
    content: "";
    display: block;
    background: url(/1okuenproject/images/qa_a.png) no-repeat center center / 100%;
    aspect-ratio: 120 / 120;
    width: 80%;
    margin: 0 auto;
}

/* --解答内容-- */
.accordion_inner_box dd {
    width: 90%;
    font-size: clamp(13px, 2.5vw, 18px);
    text-align: justify;
    line-height: 1.4em;
}

/* ---------TOPへ戻る--------- */
.qa_topbtn {
    text-align: center;
    margin-top: clamp(50px, 9vw, 80px);
}

.qa_topbtn a {
    display: inline-flex;
    align-items: center;
    column-gap: .4em;
    width: fit-content;
    font-size: var(--gap_20px);
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 1.5% 4%;
}
  
.qa_topbtn a .icon {
    width: 8vw;
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(-1);
}

.qa_topbtn a .icon img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (min-width: 768px) {

    .qa {
        max-width: 1300px;
        padding: clamp(70px, 6vw, 90px) 4% clamp(70px, 6vw, 90px) 4%;
    }

    .qa h4 {
        margin: 0 auto 6% auto;
    }

    .qa h5 {
        font-size: clamp(26px, 3.5vw, 38px);
        margin-bottom: 3%;
    }

    .qa article {
        margin-top: clamp(80px, 6vw, 100px);
        scroll-margin-top: 70px;
    }

    /* --ナビゲーション-- */
    .qa_nav {
        justify-content: center;
        column-gap: 1%;
        row-gap: 1vw;
    }

    .qa_nav a {
        font-size: clamp(16px, 1.5vw, 20px);
        transition-duration: .2s;
    }

    .qa_nav a:hover {
        opacity: .7;
    }

    .qa_nav a span {
        width: 25px;
        height: 25px;
    }

    .qa_nav a span::after {
        width: 50%;
        top: 53%;
    }

    .qa_nav li {
        width: 24%;
    }

    .qa_nav p {
        width: 85%;
    }

    /* --------------アコーディオンパネル-------------- */
    .accordion_container:not(:last-of-type) {
        margin-bottom: 3%;
    }

    /* --------------質問-------------- */
    .accordion_title {
        padding: 2% 3%;
        transition-duration: .2s;
    }

    .accordion_title:hover  {
        opacity: .7;
    }

    /* --Q-- */
    .accordion_title_box dt {
        width: 6%;
    }

    /* --質問内容-- */
    .accordion_title_box dd {
        width: 93%;
        font-size: clamp(22px, 2.5vw, 24px);
    }

    /* -- ▼ボタン -- */
    .icon_wrap {
        width: 3%;
    }

    /* --------------解答-------------- */
    .accordion_inner {
        padding: 0 2% 2% 2%;
    }

    .accordion_inner_box {
        padding-top: 2%;
    }

    /* --A-- */
    .accordion_inner_box dt {
        width: 7.5%;
    }

    .accordion_inner_box dt::before {
        width: 55%;
    }

    /* --解答内容-- */
    .accordion_inner_box dd {
        font-size: clamp(14px, 2vw, 20px);
        line-height: 1.6em;
    }

    /* --------------TOPへ戻る-------------- */

    .qa_topbtn {
        margin-top: clamp(70px, 6vw, 90px);
    }

    .qa_topbtn a {
        column-gap: .7em;
        font-size: clamp(16px, 2.5vw, 24px);
        padding: 1% 3%;
    }

    .qa_topbtn a:hover {
        opacity: .7;
    }

    .qa_topbtn a .icon {
        width: 5vw;
        height: 5vw;
        max-width: 60px;
        max-height: 60px;
    }

}
