@charset "UTF-8";
/* =========================================================================================================================================== */
/*
/* ホームページデザイン
/*
/* =========================================================================================================================================== */
@media all {
    .home {
        background-color: var(--color-lightblue);
    }
}


/* ------------------------------------------------------------- */
/* メインビジュアルセクション
/* ------------------------------------------------------------- */
@media all {
    .home #mainvisual {
        background-image: url('../../images/home/mainvisual_bg.jpg');
        background-size: cover;
        background-position: center;
    }
    .home #mainvisual .mainvisual-box {
        width: 100%;
        max-width: 998.87px;
        margin: 0 auto;
        position: relative;
    }
    .home #mainvisual .balloon a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 89px;
        background-size: cover;
        padding-bottom: 31px;
        padding-top: 18px;
        font-size: 17px;
        font-weight: var(--font-weight-bold);
        color: var(--color-blue3);
        transition: transform 0.2s ease;
        line-height: 25px;
        transform-origin: bottom center;
        position: absolute;
    }
    .home #mainvisual .balloon a::after {
        content: "";
        width: 21px;
        height: 21px;
        background-image: url('../../images/ico_arrow_right.svg');
        background-size: cover;
        margin-left: 8px;
        margin-top: 4px;
    }
    .home #mainvisual .balloon a:hover {
        transform: scale(1.2);
    }

    .home #mainvisual .balloon.w116 a {
        background-image: url('../../images/home/balloon116_bg.png');
        width: 152px;
    }
    .home #mainvisual .balloon.w180 a {
        background-image: url('../../images/home/balloon180_bg.png');
        width: 216px;
    }
    .home #mainvisual .balloon.w196 a {
        background-image: url('../../images/home/balloon196_bg.png');
        width: 232px;
    }
    .home #mainvisual .balloon.w235 a {
        background-image: url('../../images/home/balloon235_bg.png');
        width: 271px;
    }

    .home #mainvisual .balloon.balloon_1 a { top: 64.6%; left: 15.6%; }
    .home #mainvisual .balloon.balloon_2 a { top: 29.5%; left:  5.1%; }
    .home #mainvisual .balloon.balloon_3 a { top: 39.9%; left: 21.7%; }
    .home #mainvisual .balloon.balloon_4 a { top: 12.4%; left: 17.8%; }
    .home #mainvisual .balloon.balloon_5 a { top: 31%  ; left: 36.8%; }
    .home #mainvisual .balloon.balloon_6 a { top: 42.6%; left: 49.1%; }
    .home #mainvisual .balloon.balloon_7 a { top: 12.4%; left: 54.2%; }
    .home #mainvisual .balloon.balloon_8 a { top: 29.6%; left: 67.2%; }
}
@media (max-width: 767px) {
    .home #mainvisual .mainvisual-inner {
        padding-top: 77px;
        padding-bottom: 24px;
    }
    .home #mainvisual .balloon a {
        height: 14.16%;
        padding: 0;
        margin-top: -4%;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .home #mainvisual .balloon a::after {
        content: none;
    }
    .home #mainvisual .balloon a span {
        display: none;
    }
    .home #mainvisual .balloon.w116 a,
    .home #mainvisual .balloon.w180 a,
    .home #mainvisual .balloon.w196 a,
    .home #mainvisual .balloon.w235 a {
        background-image: url('../../images/home/balloonsp_bg.png');
        width: 8.8%;
    }
    .home #mainvisual .balloon.w116 a { margin-left: 3%; }
    .home #mainvisual .balloon.w180 a { margin-left: 6%; }
    .home #mainvisual .balloon.w196 a { margin-left: 7%; }
    .home #mainvisual .balloon.w235 a { margin-left: 10%; }
        
}

/* ------------------------------------------------------------- */
/* 受付セクション
/* ------------------------------------------------------------- */
@media all {
    .home #reception {
        background-color: var(--color-blue3);
        width: 100%;
        padding: 40px 0;
    }
    .home #reception .reception-inner {
        width: var(--width-100);
        margin: 0 auto;
        max-width: var(--content-width-1);
        background-color: var(--color-white);
        border-radius: 20px;
        box-shadow: 0 0 12px rgb(0 0 0 / 21%);
        padding: 34px 40px;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .home #reception .title {
        padding-left: 11px;
        margin-right: 74.5px;
    }
    .home #reception .title .main {
        font-size: 33px;
        font-weight: var(--font-weight-black);
        line-height: 48px;
        color: var(--color-blue);
    }
    .home #reception .title .sub {
        font-weight: var(--font-weight-bold);
        color: var(--color-blue);
        line-height: 19px;
        padding-top: 4px;
    }
    .home #reception .text {
        height: 68px;
        display: flex;
        margin-top: 9.5px;
        margin-bottom: 9.5px;
        justify-content: flex-start;
        align-items: center;
        padding-left: 50.5px;
        border-left: solid 2px rgba(0,51,153,0.72);
        font-size: 18px;
        letter-spacing: 0.0272em;
        line-height: 26px;
    }
    .home #reception .button {
        margin-left: auto;
    }
    .home #reception .button a {
        display: flex;
        width: 400px;
        height: 86px;
        justify-content: center;
        align-items: center;
        background-color: var(--color-yellow);
        border: solid 1px var(--color-yellow3);
        border-radius: 20px;
        font-size: 24px;
        font-weight: var(--font-weight-bold);
        line-height: 35px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    }
    .home #reception .button a:hover {
        background-color: var(--color-yellow2);
    }
    .home #reception .button a::after {
        content: "";
        display: block;
        margin-top: 4px;
        margin-left: 10px;
        width: 28px;
        height: 28px;
        background-image: url('../../images/ico_arrow.svg');
        background-size: cover;
    }

}
@media (max-width: 1023px) {
    .home #reception {
        padding: 26px 0;
    }
    
    .home #reception .reception-inner {
        padding: 14px 17px 25px;
        display: block;
    }
    
    .home #reception .title {
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .home #reception .title .main {
        font-size: 26px;
        line-height: 37px;
    }
    
    .home #reception .title .sub {
        padding-top: 0;
        font-size: 14px;
        line-height: 18px;
    }
    
    .home #reception .text {
        display: block;
        padding: 0;
        margin: 0;
        border: none;
        text-align: center;
        padding-top: 15px;
        padding-bottom: 17px;
        height: auto;
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.0238em;
    }
    
    .home #reception .button a {
        width: 100%;
        height: 72px;
        font-size: 18px;
    }
    
    .home #reception .button a::after {
        width: 22px;
        height: 22px;
        margin-top: 2px;
    }
}
@media (max-width: 767px) {
}


/* ------------------------------------------------------------- */
/* 出展企業セクション
/* ------------------------------------------------------------- */
@media all {
    .home #exhibitors {
        margin-top: 80px;
    }
    .home #exhibitors .h2 {
        padding-bottom: 39px;
    }
    .home #exhibitors .list > ul {
        width: calc(100% - 116px);
        max-width: var(--content-width-1);
        margin: 0 auto;
        margin-bottom: 80px;
    }
    .home #exhibitors .list ul .slick-arrow {
        width: 47px;
        height: 47px;
    }
    .home #exhibitors .list ul .slick-prev {
        left: -41px;
    }
    .home #exhibitors .list ul .slick-next {
        right: -41px;
    }
    .home #exhibitors .list ul .slick-arrow::before {
        content: "";
        display: block;
        width: 47px;
        height: 47px;
        left: 0;
        opacity: 1;
    }
    .home #exhibitors .list ul .slick-prev::before {
        background-image: url('../../images/arrow_left.svg');
    }
    .home #exhibitors .list ul .slick-next::before {
        background-image: url('../../images/arrow_right.svg');
    }
    .home #exhibitors .list .slick-dots {
        bottom: -42px;
        height: auto;
    }
    .home #exhibitors .list .slick-dots li {
        width: 10px;
        height: 10px;
    }
    .home #exhibitors .list .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 0;
    }
    .home #exhibitors .list .slick-dots li button::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--color-blue3);
        border-radius: 50%;
        position: relative;
        display: block;
        opacity: 0.5;
    }
    .home #exhibitors .list .slick-dots li.slick-active button::before {
        opacity: 1;
    }
    .home #exhibitors .list ul li a {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        height: 160px;
        background-color: var(--color-white);
        box-shadow: 0 0 10px rgba(49, 47, 85, 0.13);
        border-radius: 20px;
        display: block;
    }
    .home #exhibitors .list ul li a .thumb {
        height: calc(100% - 49px);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .home #exhibitors .list ul li a .name {
        height: 49px;
        text-align: center;
        padding-bottom: 23px;
        line-height: 26px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
        letter-spacing: 0.0272em;
    }
    .home #exhibitors .list ul li a .thumb img {
        width: auto;
    }
}
@media (max-width: 1199px) {
    .home #exhibitors .list > ul {
        max-width: 820px;
    }
    .home #exhibitors .list .slick-slide {
        margin:  0 10px;
    }
}
@media (max-width: 1023px) {
    .home #exhibitors .list > ul {
        max-width: 540px;
    }
}
@media (max-width: 767px) {
    .home #exhibitors {
        margin-top: 28px;
    }
    .home #exhibitors .h2 {
        padding-bottom: 28px;
    }
    .home #exhibitors .list > ul {
        max-width: 260px;
        margin-bottom: 56px;
    }
    .home #exhibitors .list .slick-dots {
        bottom: -32px;
    }
}


/* ------------------------------------------------------------- */
/* 最新研究結果発表コーナーセクション
/* ------------------------------------------------------------- */
@media all {
    .home #research-result {
        margin-top: 50px;
    }
    .home #research-result .research-result-inner {
        width: var(--width-100);
        max-width: var(--content-width-1);
        margin: 0 auto;
        padding-right: 170px;
        padding-top: 66.5px;
        padding-bottom: 11.5px;
        position: relative;
    }
    .home #research-result .research-result-inner::after {
        content: "";
        display: block;
        width: 316.09px;
        height: 396.5px;
        background-image: url('../../images/home/thumb_research-result.svg');
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
    }
    .home #research-result .research-result-box {
        width: 100%;
        background-color: var(--color-white);
        padding-right: 200px;
        padding-left: 67px;
        padding-top: 55px;
        padding-bottom: 50px;
        border-radius: 30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.13);
    }
    .home #research-result .blk_txt {
        margin-top: 20px;
    }
    .home #research-result .blk_link {
        margin-top: 26px;
    }
}
@media (max-width: 767px) {
    .home #research-result {
        margin-top: 18.8px;
    }
    .home #research-result .research-result-inner {
        padding-top: 36.7px;
        padding-right: 0;
    }
    .home #research-result .research-result-box {
        padding: 29.5px 30px 40px;
    }
    .home #research-result .h2 {
        padding-right: 121px;
    }
    .home #research-result .research-result-inner::after {
        width: 126.5px;
        height: 158.68px;
        background-size: cover;
    }
    .home #research-result .blk_txt {
        margin-top: 16px;
    }
    .home #research-result .blk_link {
        margin-top: 20.5px;
    }    
}

/* ------------------------------------------------------------- */
/* カタログ/ライブイベントコーナーセクション
/* ------------------------------------------------------------- */
@media all {
    .home #catalog_live-event {
        width: var(--width-100);
        max-width: var(--content-width-1);
        margin: 0 auto;
        margin-top: 49px;
    }
}
@media (max-width: 767px) {
    .home #catalog_live-event {
        margin-top: 30px;
    }    
}


/* ------------------------------------------------------------- */
/* カタログコーナーセクション
/* ------------------------------------------------------------- */
@media all {
    .home #catalog .catalog-inner {
        width: 100%;
        background-color: var(--color-white);
        border-radius: 30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.13);
        margin-bottom: 29px;
    }
    .home #catalog .h2 {
        padding-top: 32px;
        padding-bottom: 26px;
    }
    .home #catalog .blk_txt {
        padding-top: 26px;
        padding-left: 30px;
        padding-right: 34px;
    }
    .home #catalog .blk_link {
        padding-top: 33px;
        padding-bottom: 65px;
    }
}
@media (max-width: 767px) {
    .home #catalog .h2 {
        padding-top: 29.5px;
        padding-bottom: 20px;
    }
    .home #catalog .blk_txt {
        padding-top: 20px;
        padding-right: 30px;
    }
    .home #catalog .blk_link {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}


/* ------------------------------------------------------------- */
/* ライブイベントコーナーセクション
/* ------------------------------------------------------------- */
@media all {
    .home #live-event .live-event-inner {
        width: 100%;
        background-color: var(--color-white);
        border-radius: 30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.13);
    }
    .home #live-event .h2 {
        padding-top: 32px;
        padding-bottom: 26px;
    }
    .home #live-event .blk_txt {
        padding-top: 26px;
        padding-left: 30px;
        padding-right: 34px;
    }
    .home #live-event .blk_link {
        padding-top: 33px;
        padding-bottom: 65px;
    }
}
@media (max-width: 767px) {
    .home #live-event .h2 {
        padding-top: 29.5px;
        padding-bottom: 20px;
    }
    .home #live-event .blk_txt {
        padding-top: 20px;
        padding-right: 30px;
    }
    .home #live-event .blk_link {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}


/* ------------------------------------------------------------- */
/* セミナー会場セクション
/* ------------------------------------------------------------- */
@media all {
    .home #seminar {
        margin-top: 0;
    }
    .home #seminar .seminar-inner {
        width: var(--width-100);
        max-width: var(--content-width-1);
        margin: 0 auto;
        padding-left: 227px;
        padding-top: 31px;
        padding-bottom: 32px;
        position: relative;
    }
    .home #seminar .seminar-inner::after {
        content: "";
        display: block;
        width: 398.37px;
        height: 347.93px;
        background-image: url('../../images/home/thumb_seminar.svg');
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    .home #seminar .seminar-box {
        width: 100%;
        background-color: var(--color-white);
        padding-left: 226px;
        padding-right: 60px;
        padding-top: 34px;
        padding-bottom: 47px;
        border-radius: 30px;
        box-shadow: 0 0 10px rgba(0,0,0,0.13);
    }
    .home #seminar .blk_txt {
        margin-top: 20px;
    }
    .home #seminar .blk_link {
        margin-top: 26px;
    }
}
@media (max-width: 767px) {
    .home #seminar {
        margin-top: 10.2px;
    }
    .home #seminar .seminar-inner {
        padding-top: 20.3px;
        padding-left: 0;
        padding-bottom: 0;
    }
    .home #seminar .seminar-box {
        padding: 29.5px 30px 40px;
    }
    .home #seminar .h2 {
        padding-right: 134px;
    }
    .home #seminar .seminar-inner::after {
        width: 141.92px;
        height: 123.94px;
        background-size: cover;
        right: 0;
        left: auto;
    }
    .home #seminar .blk_txt {
        margin-top: 20px;
    }
    .home #seminar .blk_link {
        margin-top: 20px;
    }    
}


/* ------------------------------------------------------------- */
/* FBIA入会のご案内セクション
/* ------------------------------------------------------------- */
@media all {
    .home #entry {
        margin-top: 60px;
        margin-bottom: 120px;
    }
    .home #entry .entry-inner {
        width: var(--width-100);
        max-width: var(--content-width-2);
        margin: 0 auto;
    }
    .home #entry .blk_txt {
        margin-top: 40px;
    }
    .home #entry .blk_btn {
        margin-top: 60px;
    }
}
@media (max-width: 767px) {
    .home #entry {
        margin-top: 29.7px;
        margin-bottom: 118px;
    }
    .home #entry .blk_txt {
        margin-top: 16px;
    }
    .home #entry .blk_btn {
        margin-top: 20px;
    }
}