@charset "UTF-8";
/*============================================

　床矯正地区フォーラムページ CSS

=============================================*/
.forPC {
    display: block;
}
.forSP {
    display: none;
}

/* メイン
------------------------------------*/
#area-forum-main {
    width: 100%;
    height: auto;
    background: url(../../images/area-forum/main-bg.png) no-repeat center;
    background-size: cover;
    position: relative; 
}
#area-forum-main .inner {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    position: relative; 
}
#area-forum-main .flexbox {
    padding: 64px 0;
    margin: 0;
    /* align-items: start; */
    align-self: center;
}
#area-forum-main .flex_l {
    width: 47%;
}
#area-forum-main .flex_r {
    width: 53%;
}
/* タイトル */
#area-forum-main h2 {
    font-size: 72px;
    font-weight: bold;
    line-height: 120%;
    text-align: left;
    margin-bottom: 100px;
}
#area-forum-main .schedule-list h3 {
    font-size: 20px;
    color: #4d4d4d;
    text-align: center;
    border-bottom: 2px solid #b1b1b1;
    line-height: 200%;
    margin-bottom: 20px;
}
#area-forum-main .schedule-list {
    position: relative;
    max-width: 366px;
    width: 100%;
}
#area-forum-main .schedule-list .list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: space-between;
    row-gap: 16px;
}
#area-forum-main .schedule-list .list .box {
    /* max-width: 112px; */
    width: calc((100% - 16px) / 2);
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    /* gap: 16px; */
}
#area-forum-main .schedule-list .list .box p.date {
    background: #4d4d4d;
    color: #fff;
    font-size: 20px;
    margin: 0;
}
#area-forum-main .schedule-list .list .box.active p.date {
    background: #dc0707;
}
#area-forum-main .schedule-list .list .box.waiting p.date {
    background: #fdbcbc;
}
#area-forum-main .schedule-list .list .box.active:hover {
    opacity: 0.7;
}

#area-forum-main .schedule-list .list .box p.area {
    font-size: 28px;
    color: #4d4d4d;
    background: #fff;
    font-weight: bold;
    padding: 15px 0;
    margin: 0;
}

/* コンテンツ
------------------------------------*/
article#area-forum-content {
    width: 100%;
    height: auto;
    background: #ffffff;
    overflow: hidden;
}
article#area-forum-content .section {
    width: 100%;
    position: relative;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* background: #fff; */
}
article#area-forum-content .section .inner {
    max-width: 980px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

/* セクション共通
------------------------------------*/
article#area-forum-content .section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 40px;
    color: #333333;
}
article#area-forum-content .section h2.type-01 {
    width: max-content;
    font-size: 48px;
    font-weight: 700;
    line-height: 160%;
    text-align: left;
    letter-spacing: 1px;
    color: #fff;
}
article#area-forum-content .section h2.type-01 span {
    display: inline-block;
    background: #DC0707;
    padding: 16px;
}
article#area-forum-content .section h2.type-02 {
    width: max-content;
    font-size: 40px;
    font-weight: 700;
    line-height: 160%;
    text-align: left;
    letter-spacing: 1px;
    color: #5D3C33;
}
article#area-forum-content .section h2.type-02 span {
    display: inline-block;
    background: #ffffff;
    padding: 16px;
}

article#area-forum-content .section p {
    font-size: 16px;
    line-height: 180%;
    color: #333333;
}

/* CTAボタン
------------------------------------*/
article#area-forum-content .cta a.btn_main {
    margin: 0 auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    max-width: 400px;
    width: 100%;
    height: 80px;
    padding: 26px 16px;
}

/* スライダー
------------------------------------*/
article#area-forum-content .section.slider {
    padding: 80px 0;
}


/* みんなで話そう、みんなで悩もう― 仲間とつくる勉強会
------------------------------------*/
article#area-forum-content .approach {
    padding: 40px 0 80px 0;
}
article#area-forum-content .approach .content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}
article#area-forum-content .approach .content .lead {
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    color: #DC0707;
}

/* 写真 */
article#area-forum-content .approach .photo {
    max-width: 600px;
    gap: 40px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
}
article#area-forum-content .approach .photo .item {
    text-align: center;
    width: 280px;
    height: auto;
}
article#area-forum-content .approach .photo .item img {
    width: 100%;
    padding-bottom: 8px;
}
article#area-forum-content .approach .photo .item p {
    font-size: 14px;
    line-height: 120%;
    color: #333333;
}



/* フォーラムの魅力は“リアルでしか味わえない学び“！
------------------------------------*/
article#area-forum-content .section.points {
    padding: 104px 0 64px 0;
    background: #5D3C33;
}

article#area-forum-content .section.points .title-wrapper {
    position: relative;
    width: 608px;
    height: 168px;
    margin: 0 auto;
    background-image: url("../../images/area-forum/points-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 48px;
}
article#area-forum-content .section.points .title-wrapper h2 {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    color: #fff;
    line-height: 160%;
    margin: 0;
}
article#area-forum-content .section.points .title-wrapper h2:before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 44px;
    background-image: url("../../images/area-forum/icon-header-points.png");
    background-size: cover;
}

article#area-forum-content .section.points .points-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 16px;
    background: #fff;
    padding: 40px;
}
article#area-forum-content .section.points .points-content .photo {
    display: flex;
    justify-content: space-between;
    gap:30px;
    margin: 0;
}
article#area-forum-content .section.points dl.points-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
article#area-forum-content .section.points dl.points-list .item {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
    margin: 0 auto;
}
article#area-forum-content .section.points dl.points-list .item:not(:last-child) {
    border-bottom: 1px solid #383838;
}
article#area-forum-content .section.points dl.points-list .item dt {
    position: relative;
    padding-left: 90px;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    color: #DC0707;
}
article#area-forum-content .section.points dl.points-list .item dt:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 62px;
    height: 68px;
    background-image: url("../../images/area-forum/icon-points.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
article#area-forum-content .section.points dl.points-list .item dd {
    padding-left: 90px;
    color: #575757;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
}
article#area-forum-content .section.points .cta {
    max-width: 768px;
    width: 100%;
    padding-top: 48px;
    margin: 0 auto;
}
article#area-forum-content .section.points .cta p.lead {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 48px;
}



/* お申し込みはこちら！
------------------------------------*/
article#area-forum-content .section.area-forum-list {
    padding: 80px 0;
    background: #F1F1F1;
}
article#area-forum-content .section.area-forum-list h2 {
    text-align: left;
    color: #DC0707;
}
article#area-forum-content .section.area-forum-list .flex_l {
    width: 40%;
}
article#area-forum-content .section.area-forum-list .flex_r {
    width: 55%;
}

/* フォーラム一覧
------------------------------------*/
article#area-forum-content .section .forum-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
article#area-forum-content .section .forum-list a {
    display: inline-block;
}
article#area-forum-content .section .forum-list .box { 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 10px 38px 10px 24px;
    background: #ffffff;
    border-left: 2px solid #4d4d4d;
}
article#area-forum-content .section .forum-list .box::after { 
    content: "";
    position: absolute;
    background: url("../../images/area-forum/arrow.png") no-repeat center;
    background-size: contain;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    margin-left: auto;
    display: block;
}
article#area-forum-content .section .forum-list .box p.date {
    font-size: 12px;
    line-height: 100%;
    margin: 0;
}
article#area-forum-content .section .forum-list .box p.title {
    width: 175px;
    font-size: 16px;
    line-height: 100%;
    margin: 0;
}
article#area-forum-content .section .forum-list .box p.status {   
    width: 80px;
    font-size: 12px;
    text-align: center;
    line-height: 100%;
    margin: 0;
    padding: 4px;
    background: #4d4d4d;
    color: #fff;
}
/* 募集中 */
article#area-forum-content .section .forum-list a:hover .box.active {
    background: #ffebeb;
}
article#area-forum-content .section .forum-list .box.active { 
    background: #FFE0E0;
    border-left: 2px solid #dc0707;
}
article#area-forum-content .section .forum-list .box.active p.status { 
    background: #dc0707;
}
/* 募集前 */
article#area-forum-content .section .forum-list .box.waiting { 
    background: #fcfcfc;
    border-left: 2px solid #fdbcbc;
}
article#area-forum-content .section .forum-list .box.waiting p.status { 
    background: #fdbcbc;
}

/* 参加者の声
------------------------------------*/
article#area-forum-content .section.video {
    padding: 96px 0 56px 0;
}
article#area-forum-content .section.video h2 {
    text-align: center;
    color: #DC0707;
}
article#area-forum-content .section.video .video-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0 auto;
}
article#area-forum-content .section.video .video-container iframe {
    width: 100%;
    height: 100%;
}


/*============================================

　SP

=============================================*/

@media screen and (max-width: 768px) {
    .forPC {
        display: none;
    }
    .forSP {
        display: block;
    }
    
    /* メイン
    ------------------------------------*/
    #area-forum-main .flexbox {
        flex-direction: column-reverse;
        padding: 20px 0;
    }
    #area-forum-main .flex_l {
        width: 100%;
    }
    #area-forum-main .flex_r {
        position: relative;
        width: 100%;
    }
    #area-forum-main .schedule-list {
        margin: 0 auto;
        column-gap: 16px;
    }
    #area-forum-main .schedule-list .list .box {
        /* width: calc((100% - (16px * 2)) / 3); */
    }
    #area-forum-main h2 {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 8.5vw;
    }
    /* コンテンツ
    ------------------------------------*/
    article#area-forum-content {
        /* padding: 0 16px; */
    }

    /* セクション共通
    ------------------------------------*/
    article#area-forum-content .section h2 {
        font-size: 20px;
    }
    article#area-forum-content .section h2.type-01 {
        font-size: 20px;
    }
    article#area-forum-content .section h2.type-01 span {
        padding: 8px;
    }
    article#area-forum-content .section h2.type-02 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    article#area-forum-content .section h2.type-02 span {
        padding: 8px;
    }
    article#area-forum-content .section p {
        font-size: 14px;
    }

    /* CTAボタン
    ------------------------------------*/
    article#area-forum-content .cta a.btn_main {
        font-size: 16px;
    }

    /* スライダー
    ------------------------------------*/
    article#area-forum-content .section.slider {
        padding: 40px 0;
    }
    article#area-forum-content .section.slider img.swiper-slide {
        width: 166px;
        height: auto;
    }

    /* みんなで話そう、みんなで悩もう― 仲間とつくる勉強会
    ------------------------------------*/
    article#area-forum-content .approach {
        padding: 40px 0;
    }
    article#area-forum-content .approach .content {
        gap: 16px;
        margin-bottom: 40px;
    }
    article#area-forum-content .approach .content .lead {
        font-size: 16px;
    }
    article#area-forum-content .approach .content p {
        font-size: 14px;
    }
    /* 写真 */
    article#area-forum-content .approach .photo {
        gap:8px;
    }


    /* お申し込みはこちら！
    ------------------------------------*/
    article#area-forum-content .section.area-forum-list {
        padding: 48px 0;
    }
    article#area-forum-content .section.area-forum-list h2 {
        text-align: center;
        font-size: 32px;
    }
    article#area-forum-content .section.area-forum-list .flex_l {
        width: 100%;
    }
    article#area-forum-content .section.area-forum-list .flex_r {
        width: 100%;
    }
    article#area-forum-content .section .forum-list {
        width: 100%;
    }

    /* フォーラムの魅力は“リアルでしか味わえない学び“！
    ------------------------------------*/
    article#area-forum-content .section.points {
        padding: 64px 0;
    }
    article#area-forum-content .section.points .title-wrapper {
        width: 316px;
        height: 132px;
        background-image: url("../../images/area-forum/points-bg-sp.png");
    }
    article#area-forum-content .section.points .title-wrapper h2 {
        font-size: 20px;
    }
    article#area-forum-content .section.points .points-content {
        padding: 40px 16px;
    }
    article#area-forum-content .section.points .points-content .photo {
        flex-direction: unset;
        flex-wrap: wrap;
        gap: 8px;
    }
    article#area-forum-content .section.points .points-content .photo .item {
        width: calc((100% - 8px) / 2);
    }
    article#area-forum-content .section.points .points-content .photo .item img {
        width: 100%;
        height: auto;
    }
    article#area-forum-content .section.points dl.points-list {
        gap: 24px;
    }
    article#area-forum-content .section.points dl.points-list .item dt {
        padding-left: 40px;
        font-size: 16px;
    }
    article#area-forum-content .section.points dl.points-list .item dt:before {
        width: 24px;
        height: 26px;
    }
    article#area-forum-content .section.points dl.points-list .item dd {
        padding-left: 40px;
        font-size: 14px;
    }
    article#area-forum-content .section.points dl.points-list .item {
        gap: 8px;
        padding-bottom: 24px;
    }
    article#area-forum-content .section.points .cta p.lead {
        font-size: 24px;
    }

    /* 参加者の声
    ------------------------------------*/
    article#area-forum-content .section.video {
        padding: 40px 0;
    }

}

@media screen and (max-width: 480px) {
    article#area-forum-content .section .forum-list .box {
        gap: 8px;
        padding: 10px 18px 10px 10px;
    }
    article#area-forum-content .section .forum-list .box p.date {
        font-size: 10px;
    }
    article#area-forum-content .section .forum-list .box p.title {
        width: 108px;
        font-size: 10px;
    }
    article#area-forum-content .section .forum-list .box p.status {
        font-size: 10px;
        width: 56px;
        padding: 6px;
    }
    article#area-forum-content .section .forum-list .box::after {
        right: 5px;
    }
}

@media screen and (max-width: 400px) {
    #area-forum-main .schedule-list .list .box p.date {
        font-size: 16px;
    }
    #area-forum-main .schedule-list .list .box p.area {
        font-size: 20px;
    }
}