@charset "UTF-8";

/* ========================================================= */
/* 読み込み ================================================= */

@import url("./reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* 読み込み ================================================= */
/* ========================================================= */
/* 設定 ==================================================== */

:root{

    --color-Design-Green:  #00565B;
    --color-Design-Yellow: #F9C700;

}

/* 設定 ==================================================== */
/* ========================================================= */
/* html ==================================================== */

html{
    container: ctnHtml / inline-size;

    -webkit-text-size-adjust: 100%;

    /* スクロール */
    scroll-behavior: smooth;
    scroll-padding-top: 50px;

    /* フォント */
    font-size: 62.5%;

    body{
        font-family: "Noto Sans JP", Verdana, Arial, "メイリオ", Meiryo, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.6;
        color: #1E1E1E;
    }

    @container ctnHtml (width <= 600px){

        /* スクロール */
        scroll-padding-top: 50px;

        /* フォント */
        body{
            font-size: 14px;
        }

    }

}

/* html ==================================================== */
/* ========================================================= */
/* ヘッダー ================================================= */

header{
    width: 100%;
    padding: 0 clamp(20px, 9.40439vw - 37.93103px, 50px);   /* MIN：616px ～ MAX：935px */
    background-color: #F2F2F2;

    .header{
        display: grid;
        grid-template-columns: 250px auto;
        justify-content: space-between;
        align-items: center;
        width: min(100%, 920px);
        margin: 0 auto;
        padding: 20px 5px;

        img{
            width: 100%;
        }

        p{
            font-family: "Noto Serif JP";
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--color-Design-Green);
            text-align: right;

            span{
                font-size: 12px;
            }

        }

    }

    @container ctnHtml (width <= 600px){
        padding-left: 15px;
        padding-right: 10px;

        .header{
            grid-template-columns: 150px auto;
            width: 100%;
            padding: 15px 0;

            p{
                font-size: 12px;
                font-weight: 600;
                line-height: 1.2;

                span{
                    font-size: 10px;
                }

            }

        }

    }

}

/* ヘッダー ================================================= */
/* ========================================================= */
/* コンテンツ =============================================== */

.contents{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 70px;
    background-color: #F2F2F2;

    section{
        clear: both;
        display: flow-root;
        width: 100%;
        padding: 0 clamp(20px, 9.40439vw - 37.93103px, 50px);   /* MIN：616px ～ MAX：935px */

        .boxArea{
            clear: both;
            display: flow-root;
            width: min(100%, 920px);
            margin-left: auto;
            margin-right: auto;

            /* テキスト */
            p,
            li{
                text-align: justify;
                letter-spacing: 1px;

                & + p{
                    margin-top: 30px;
                }

            }

        }

    }

    @container ctnHtml (width <= 600px){
        padding-top: 3vh;
        padding-bottom: 5vh;

        section{
            padding: 0 15px;

            .boxArea{
                width: 100%;

                /* 文章 */
                p,
                li{

                    & + p{
                        margin-top: 3vh;
                    }

                }

            }

        }

    }

}

/* コンテンツ =============================================== */
/* ========================================================= */
/* コンテンツ：共通 ========================================= */

/* タイトル ------------------------------------------------- */

/* 左 */
.titleLeft{
    clear: both;
    position: relative;
    display: flow-root;
    width: fit-content;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    /* letter-spacing: 0.1em; */
    color: var(--color-Design-Green);
    margin: 100px 0 40px 85px;

    /* 左の線 */
    &::before{
        position: absolute;
        content: "";
        top: 55%;
        left: -85px;
        width: 70px;
        height: 0;
        border-top: 1px solid var(--color-Design-Green);
    }

    @container ctnHtml (width <= 600px){
        font-size: 22px;
        /* letter-spacing: 0; */
        margin: 8vh 0 4vh 45px;

        /* 左の線 */
        &::before{
            top: 55%;
            left: -45px;
            width: 35px;
        }

    }

}

/* 左（小）*/
.titleLaftSmall{
    clear: both;
    display: flow-root;
    overflow: hidden;
    width: fit-content;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color-Design-Green);
    text-align: left;
    margin: 60px 0 20px;

    @container ctnHtml (width <= 600px){
        font-size: 16px;
        margin: 5vh 0 2vh;
    }

}

/* 中央 */
.titleCenter{
    clear: both;
    display: flow-root;
    overflow: hidden;
    width: fit-content;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: var(--color-Design-Green);
    text-align: center;
    margin: 60px auto 20px;

    @container ctnHtml (width <= 600px){
        font-size: 20px;
        letter-spacing: 0;
        margin: 5vh auto 2vh;
    }

}

/* イベント申し込みボタン ------------------------------------ */
.eventBt{
    width: 100%;

    a{
        position: relative;
        overflow: hidden;
        display: grid;
        align-items: center;
        width: 100%;
        height: 90px;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2 !important;
        color: #FFF;
        text-decoration: none;
        text-align: center;
        background-color: var(--color-Design-Yellow);
        transition: 0.5s;
        z-index: 10;

        /* アイコン */
        &::before{
            position: absolute;
            content: "";
            top: 50%;
            right: 50px;
            width: 24px;
            aspect-ratio: 1/1;
            background-image: url(../img/icon_arrow_w.svg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            transform: translateY(-50%) rotate(90deg);
            transition: 0.5s;
        }

        /* 斜め線 */
        &::after{
            position: absolute;
            content: '';
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #FFF;
            transform: skewY(-1deg) translateY(85%);
            transition: 0.5s;
            opacity: 0.3;
            z-index: -1;
        }

        @media (hover:hover){

            &:hover{

                &::after{
                    text-decoration: none;
                    background-color: #E56A6A;
                    transform: skewY(-1deg) translateY(0%) scale(1.3);
                    opacity: 1;
                }

            }

        }

    }

    @container ctnHtml (width <= 600px){
        width: 100%;

        a{
            height: 60px;
            font-size: 15px;

            /* アイコン */
            &::before{
                right: 20px;
                width: 15px;
            }

            /* 斜め線 */
            &::after{
                transform: skewY(-1.3deg) translateY(85%);
            }

            @media (hover:hover){

                &:hover{

                    &::after{
                        transform: skewY(-1.3deg) translateY(0%) scale(1.4);
                    }

                }

            }

        }

    }

}

/* リスト -------------------------------------------------- */

/* 点 */
.listDisc{
    margin: 20px 50px 0;

    li{
        list-style: disc;
        margin-top: 5px;
    }

    @container ctnHtml (width <= 600px){
        margin: 20px 0 0 30px;

        li{
            margin-top: 1.5vh;
        }

    }

}

/* 表 ------------------------------------------------------ */

/* 左部にタイトル：table版 */
.tableSideTitle{
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: var(--chart-spacing-Col-Pc) var(--chart-spacing-Row-Pc);   /* 左右 上下 */

    th{
        width: var(--chart-width-Header-Pc);
        font-weight: 400;
        color: #FFF;
        padding: var(--chart-padding-Row-Header-Pc) var(--chart-padding-Col-Header-Pc);
        background-color: var(--color-Design-Green);
    }

    td{
        padding: var(--chart-padding-Row-Data-Pc) var(--chart-padding-Col-Data-Pc);
        background-color: #FFF;
    }

    @container ctnHtml (width <= 600px){

        th{
            padding: var(--chart-padding-Row-Header-Sp) var(--chart-padding-Col-Header-Sp);
        }

        td{
            padding: var(--chart-padding-Row-Data-Sp) var(--chart-padding-Col-Data-Sp);
        }

    }

}

/* 左部にタイトル：dl版 */
.dlSideTitle{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: 30px auto 0;

    dt{
        width: min(30%, 200px);
        font-weight: 400;
        color: #FFF;
        text-align: center;
        margin-top: 5px;
        padding: 20px;
        background-color: var(--color-Design-Green);
    }

    dd{
        width: calc(100% - min(30%, 200px));
        margin-top: 5px;
        padding: 20px 30px;
        background-color: #FFF;
    }

    @container ctnHtml (width <= 600px){
        display: block;
        margin-top: 3vh;

        dt{
            width: 100%;
            text-align: left;
            margin-top: 0;
            padding: 1.3vh 15px;
        }

        dd{
            width: 100%;
            margin-top: 0;
            padding: 3vh 15px;
        }

    }

}

/* タイムテーブル ------------------------------------------- */
.timeTable{

    /* アイコンのサイズ */
    --timeTable-Icon: 30px;
    --timeTable-Icon-Sp: 24px;

    margin: 1em 0 1em 50px;

    /* 時間 */
    .timeTableTime{
        position: relative;
        padding-left: calc(var(--timeTable-Icon) + 17px);

        /* アイコン */
        &::after{
            position: absolute;
            top: 50%;
            left: 0;
            content: '';
            width: var(--timeTable-Icon);
            aspect-ratio: 1/1;
            background-image: url(../img/icon_time_g.svg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            transform: translateY(-50%);
        }

    }

    /* 内容 */
    .timeTableContent{
        margin: 1em 0 0 calc(var(--timeTable-Icon)/2 - 1px);
        padding: 5px 0 15px 30px;
        border-left: 2px dotted var(--color-Design-Green);

        .timeTableTitle{
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--color-Design-Green);
        }

        dl.timeTableCom{
            display: grid;
            gap: 0 20px;
            grid-template-columns: 50px auto;
            justify-content: flex-start;
            align-items: flex-start;
            width: 100%;
            margin: 10px auto 0;

            dt{
                display: grid;
                justify-content: center;
                align-items: center;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.2;
                color: #FFF;
                text-align: center;
                width: 100%;
                height: 100%;
                padding: 15px 0;
                background-color: var(--color-Design-Green);
            }

            dd{

                p,
                ul{
                    all: revert;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 1.4;
                    margin-top: 1em;
                    margin-bottom: 1em;
                }

                ul{
                    padding-left: 30px;
                }

            }

        }

    }

    /* 黒ver（タイトルのみ） */
    &.titleOnly{

        /* 時間 */
        .timeTableTime{

            /* アイコン */
            &::after{
                background-image: url(../img/icon_time.svg);
                opacity: 0.3;
            }

        }

        /* 内容 */
        .timeTableContent{
            border-left-color: #BBBBBB;

            .timeTableTitle{
                font-size: 16px;
                font-weight: 500;
                color: #5B5B5B;
            }

        }

    }

    /* 黄色ver */
    &.yellow{

        /* 時間 */
        .timeTableTime{

            /* アイコン */
            &::after{
                background-image: url(../img/icon_time_y.svg);
            }

        }

        /* 内容 */
        .timeTableContent{
            border-left-color: var(--color-Design-Yellow);

            .timeTableTitle{
                color: var(--color-Design-Yellow);
            }

            dl.timeTableCom{

                dt{
                    background-color: var(--color-Design-Yellow);
                }

            }

        }

    }

    @container ctnHtml (width <= 600px){
        margin-left: 20px;

        /* 時間 */
        .timeTableTime{
            font-size: 16px;
            padding-left: calc(var(--timeTable-Icon-Sp) + 10px);

            /* アイコン */
            &::after{
                width: var(--timeTable-Icon-Sp);
            }

        }

        /* 内容 */
        .timeTableContent{
            margin: 1em 0 0 calc(var(--timeTable-Icon-Sp)/2);
            padding: 5px 0 10px 20px;

            .timeTableTitle{
                font-size: 18px;
            }

            dl.timeTableCom{
                gap: 0 15px;
                grid-template-columns: 26px auto;
                margin: 7px auto 0;

                dt{
                    font-size: 14px;
                    padding: 5px 5px;
                }

                dd{

                    p,
                    ul{
                        font-size: 14px;
                    }

                    ul{
                        padding-left: 22px !important;
                    }

                }

            }

        }

    }

}

/* その他 -------------------------------------------------- */

/* 上付き文字 */
sup{
    position: relative;
    top: 0;
    font-size: 18px;
    line-height: 1;

    @container ctnHtml (width <= 600px){
        top: 0.1em;
        font-size: 14px;
        line-height: 1;
    }

}

/* 注釈 */
.annotation{
    display: block;
    margin-top: 10px;
    text-indent: -1em !important;
    padding-left: 1em !important;
}

/* PC：非表示 ＆ SP：表示 */
.pcn{
    display: none !important;

    @container ctnHtml (width <= 600px){
        display: block !important;
    }

}

/* PC：表示 ＆ SP：非表示 */
@container ctnHtml (width <= 600px){

    .spn{
        display: none !important;
    }

}

/* コンテンツ：共通 ========================================= */
/* ========================================================= */
/* コンテンツ：メイン ======================================= */

.mv{

    .boxArea{

        /* ステータス */
        .eventStatus{
            display: grid;
            gap: 0 10px;
            grid-template-columns: 1fr auto;
            justify-content: space-between;
            align-items: center;
            width: fit-content;
            margin-bottom: 10px;

            /* アイコン */
            .statusIcon{
                width: fit-content;
                font-size: clamp(16px, 0.6689vw + 9.20401px, 18px);   /* 横：MIN 1016px ～ MAX 1315px */
                font-weight: 500;
                line-height: 1.2;
                letter-spacing: 0.1em;
                color: #FFF;
                padding: 4px 20px 4px;
                background-color: #E56A6A;
                border-radius: 999px;
            }

            /* 受付期間 */
            .period{
                font-size: 16px;
                line-height: 1.2;
                letter-spacing: 0;
                margin-top: 0;
            }

            @container ctnHtml (width <= 600px){

                /* アイコン */
                .statusIcon{
                    font-size: 16px;
                    padding: 5px 18px 4px;
                }

                /* 受付期間 */
                .period{
                    font-size: 14px;

                    span{
                        font-size: 10px;
                    }

                }

            }

        }

        img{
            width: 100%;
        }

    }

}

/* コンテンツ：メイン ======================================= */
/* ========================================================= */
/* コンテンツ：概要 ========================================= */

.detail{

    .boxArea{
        padding: 100px 0 50px;

        @container ctnHtml (width <= 600px){
            padding: 5vh 0 3vh;
        }

        /* リード ------------------------------------------- */
        .lead{

            .catchcopy{
                position: relative;
                width: fit-content;
                font-size: clamp(28px, 1.88088vw + 16.41379px, 34px);   /* MIN：616px ～ MAX：935px */
                font-weight: 400;
                line-height: 1.4;
                letter-spacing: 0.1em;
                color: var(--color-Design-Green);
                text-align: center;
                margin: 0 auto 50px;
                z-index: 10;

                @container ctnHtml (width <= 600px){
                    font-size: 20px;
                    font-weight: 500;
                    margin-bottom: 3vh;
                }

            }

        }

        /* 特長 --------------------------------------------- */
        .features{

            .olDesign01{

                ol{
                    margin-top: 30px;

                    li{
                        position: relative;
                        counter-increment: flowCounter;
                        font-size: 20px;
                        font-weight: 600;
                        text-align: justify;
                        margin: 20px 0 0 20px;
                        padding-left: 45px;

                        /* 番号 */
                        &::after{
                            position: absolute;
                            top: 0;
                            left: 0;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            content: counter(flowCounter, decimal);
                            font-size: 20px;
                            font-weight: 500;
                            line-height: 1;
                            color: #FFF;
                            width: 30px;
                            aspect-ratio: 1/1;
                            background-color: #56B58C;
                            border-radius: 50%;
                        }

                    }

                    @container ctnHtml (width <= 600px){
                        margin-top: 3vh;

                        li{
                            font-size: 16px;
                            font-weight: 600;
                            margin: 20px 20px 0 10px;
                            padding-left: 35px;

                            /* 番号 */
                            &::after{
                                font-size: 18px;
                                font-weight: 500;
                                width: 26px;
                            }

                        }

                    }

                }

            }

        }

        /* 概要 --------------------------------------------- */
        .summary{

            /* 地図 */
            .googleMaps{
                position: relative;
                overflow: hidden;
                width: 100%;
                height: 0;
                margin: 20px auto 0;
                padding-bottom: 300px;

                iframe{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100% !important;
                    height: 100% !important;
                }

                @container ctnHtml (width <= 600px){
                    width: 100%;
                    padding-bottom: 300px;
                }

            }

        }

        /* 主催 --------------------------------------------- */
        .sponsor{
            /* margin-top: 100px;
            padding: 10px 10px 30px;
            background-color: #FFF; */

            /* ロゴリスト */
            .logoList{
                display: flex;
                flex-wrap: wrap;
                gap: 10px 20px;
                justify-content: center;
                align-items: center;
                margin: 0 auto;
                width: 100%;
                padding: 10px;
                background-color: #FFF;

                li{
                    display: grid;
                    justify-content: center;
                    align-items: center;
                    width: 110px;
                    padding: 5px 0;
                    background-color: #FFF;

                    img{
                        width: 100%;
                        aspect-ratio: 4/1;
                        object-fit: contain;
                        object-position: center;
                    }

                    &.nttact{
                        width: 160px;

                        img{
                            aspect-ratio: 5/1;
                        }

                    }

                    &.salesforce{
                        width: 55px;

                        img{
                            aspect-ratio: 1.5/1;
                        }

                    }

                    &.mki{
                        width: 90px;

                        img{
                            aspect-ratio: 2/1;
                        }

                    }

                }

                &.kouen{

                    li{
                        width: 150px;

                        &.jiit{
                            width: 190px;

                            img{
                                aspect-ratio: 5/1;
                            }

                        }

                    }

                }

                @container ctnHtml (width <= 600px){
                    gap: 10px 20px;

                    li{
                        width: 110px;
                    }

                    &.kouen{

                        li{
                            width: 130px;
                        }

                    }

                }

            }

        }

        /* 注意事項 ------------------------------------------ */
        .precautions{

            p,
            li{
                font-size: 16px;

                @container ctnHtml (width <= 600px){
                    font-size: 14px;
                }

            }

        }

        /* イベント申し込みボタン ----------------------------- */
        .eventBt{
            margin-top: 150px;

            @container ctnHtml (width <= 600px){
                margin-top: 10vh;
            }

        }

    }

}

/* プライバシーポリシー -------------------------------------- */
.privacypolicy{
    font-size: 16px;
    letter-spacing: 0 !important;

    h2{
        font-size: 24px;
        font-weight: 500;
        text-align: center;
    }

    p{
        letter-spacing: 0 !important;
        margin-left: 20px;
    }

    a,
    ul,
    ol{
        all: revert;

        li{
            all: revert;
            line-height: 1.2;
            letter-spacing: 0 !important;
            word-wrap: break-word;
            margin-top: 20px;
        }

    }

    @container ctnHtml (width <= 600px){
        font-size: 14px;

        h2{
            font-size: 20px;
        }

        a,
        ul,
        ol{

            li{
                margin-top: 3vh;
            }

        }

    }

}

/* コンテンツ：概要 ========================================= */
/* ========================================================= */
/* フォーム ================================================ */

.formEntry{
    width: 100%;
}

/* フォーム ================================================ */
/* ========================================================= */
/* フッター ================================================ */

footer{
    width: 100%;
    padding: 70px 0;
    background-color: var(--color-Design-Green);

    .footer{
        width: min(100%, 920px);
        color: #FFF;
        margin-left: auto;
        margin-right: auto;

        /* ロゴ */
        .footerLogo{
            display: grid;
            grid-template-columns: 90px auto;
            justify-content: space-between;
            align-items: center;
            width: min(100%, 400px);
            margin: 0 auto;

            img{
                width: 100%;
            }

            .footerCompany{

                p{
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1.2;

                    & + p{
                        margin-top: 20px;
                    }

                }

            }

        }

        .cr{
            clear: both;
            display: flow-root;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.2;
            text-align: center;
            margin-top: 100px;
        }

    }

    @container ctnHtml (width <= 600px){
        padding: 5vh 15px 2vh;

        .footer{


            /* ロゴ */
            .footerLogo{
                gap: 0 30px;
                grid-template-columns: 70px auto;
                width: fit-content;
                margin: 0 auto;

                .footerCompany{

                    p{
                        font-size: 12px;

                        & + p{
                            margin-top: 2vh;
                        }

                    }

                }

            }

            .cr{
                font-size: 12px;
                margin-top: 10vh;
            }

        }

    }

}

/* フッター ================================================ */
/* ========================================================= */