@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    background-color: #f6f8d9;
    box-sizing: border-box;
    color: #393641;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden!important;
    -webkit-text-size-adjust: 100%;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
}
*:focus {
    outline: none;
}

/*-----------------------------------------
    ヘッダー
-----------------------------------------*/
.ly_header{
    background-image: url("../img/img_main.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 300px;
}
.ly_header .el_logo{
    display: block;
    transition: 0.3s;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
}
.ly_header .el_logo:hover{
    opacity: 0.5;
}
.ly_header h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 1200px;
    width: 90%;
}
.ly_header h1 .pc{
    display: none;
}
@media (min-width:768px){
    .ly_header{
        height: 500px;
    }
    .ly_header .el_logo{
        top: 30px;
        left: 30px;
        width: 100px;
    }
}
@media (min-width:1200px){
    .ly_header h1 .sp{
        display: none;
    }
    .ly_header h1 .pc{
        display: block;
    }
}

/*-----------------------------------------
    コンテナ
-----------------------------------------*/
.bl_cont{
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}
p+p{
    margin-top: 15px;
}
@media (min-width:768px){
    .bl_cont{
        margin: 80px auto;
        padding: 0 30px;
    }
}
@media (min-width:1200px){
    .bl_cont{
        margin: 120px auto;
    }
}
@media (min-width:1450px){
    .bl_cont{
        padding: 0;
    }
}

/*-----------------------------------------
    共通部分
-----------------------------------------*/
/* 見出し */
h2{
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}
h2::after{
    background-color: #3b6d4a;
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    margin-top: 5px;
}

h3{
    color: #3b6d4a;
    font-size: 20px;
    margin-bottom: 10px;
}
@media (min-width:1200px){
    h3{
        font-size: 24px;
    }
}

h4{
    color: #3b6d4a;
    font-size: 18px;
    margin-bottom: 10px;
}
h4::before{
    content: '●';
    display: inline-block;
    margin-right: 5px;
}
@media (min-width:1200px){
    h4{
        font-size: 20px;
    }
}

* + h3,
* + h4{
    margin-top: 30px;
}

/* 注意文 */
.el_note{
    font-size: 16px;
    text-align: right;
    margin-top: 10px;
}

/*-----------------------------------------
    紹介文
-----------------------------------------*/
.bl_flexCont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.bl_flexCol+.bl_flexCol{
    margin-top: 40px;
}
@media (min-width:1024px){
    .bl_flexCol{
        width: 48%;
    }
    .bl_flexCol+.bl_flexCol{
        margin-top: 0;
    }
}
@media (min-width:1400px){
    .bl_flexCol{
        width: 50%;
    }
    .bl_flexCol+.bl_flexCol{
        width: 45%;
    }
}

/* テキスト */
.el_catchCopy{
    font-size: 30px;
    margin-bottom: 20px;
}
.el_catchCopy::after{
    display: none;
}
.bl_dlCont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_dlCont dl{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}
.bl_dlCont dl+dl{
    margin-top: 20px;
}
.bl_dlCont dt{
    background-color: #3b6d4a;
    border: 2px solid #3b6d4a;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    width: 20%;
}
.bl_dlCont dd{
    background-color: #fff;
    border: 2px solid #3b6d4a;
    padding: 10px;
    width: 80%;
}
@media (min-width:768px){
    .bl_dlCont dl{
        width: 48%;
    }
    .bl_dlCont dl+dl{
        margin-top: 0;
    }
}
@media (min-width:1400px){
    .el_catchCopy{
        font-size: 42px;
    }
}

/*-----------------------------------------
    出展メーカー一覧
-----------------------------------------*/
.bl_manufacturerList{
    list-style: none;
}
.bl_manufacturerList li{
    padding-left: 20px;
    position: relative;
}
.bl_manufacturerList li::before{
    color: #3b6d4a;
    content: '●';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.bl_manufacturerList li+li{
    margin-top: 15px;
}
@media (min-width:768px){
    .bl_manufacturerList{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .bl_manufacturerList::after{
        content: '';
        display: block;
        width: 30%;
    }
    .bl_manufacturerList li{
        width: 30%;
    }
    .bl_manufacturerList li+li{
        margin-top: 0;
    }
    .bl_manufacturerList li:nth-child(n+4){
        margin-top: 15px;
    }
}

/*-----------------------------------------
    展示機器紹介
-----------------------------------------*/
.bl_salesCont{
    margin-top: 40px;
    list-style: none;
    padding: 0;
}
.bl_salesCol+.bl_salesCol{
    border-top: 1px dashed #999;
    margin-top: 40px;
    padding-top: 40px;
}
.bl_salesCol figure{
    border: 1px solid #ccc;
}
.bl_salesCol img{
    width: 100%;
}
.bl_salesCol h3{
    color: #3b6d4a;
    font-weight: 500;
    text-align: center;
    margin: 20px auto;
}
.bl_salesCol h3::after{
    background-image: url("../img/icon_h3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 50px;
    height: 8px;
    margin: 10px auto 0;
}
/*
.bl_salesCol h4{
    position: relative;
}
.bl_salesCol h4::after{
    background-image: url("../img/icon_arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
}
.bl_salesCol h4.active::after{
    transform: rotate(180deg);
}
.bl_salesCol .bl_tableCont{
    display: none;
}
*/
.bl_salesCol table{
    border: 1px solid #3b6d4a;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0 auto 30px;
    width: 100%;
    word-break: break-all;
}
.bl_salesCol table th,
.bl_salesCol table td{
    text-align: center;
    padding: 10px 15px;
}
.bl_salesCol table th{
    background-color: #3b6d4a;
    color: #fff;
}
.bl_salesCol table th+th{
    border-left: 1px solid #fff;
}
.bl_salesCol table td{
    background-color: #fff;
    border: 1px solid #3b6d4a;
}
.bl_salesCol .el_btn{
    background-color: #3b6d4a;
    border-radius: 60px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin: 40px auto 0;
    width: 100%;
    padding: 15px 40px;
    position: relative;
}
.bl_salesCol .el_btn::after{
    background-image: url("../img/icon_btn.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.bl_salesCol .el_btn:hover{
    opacity: 0.5;
}
@media (min-width:768px){
    .bl_salesCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        position: relative;
    }
    .bl_salesCont::after{
        content: '';
        display: block;
        width: 45%;
        height: 100%;
    }
    .bl_salesCol{
        position: relative;
        width: 45%;
    }
    .bl_salesCol+.bl_salesCol{
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }
    .bl_salesCol:nth-child(2n)::before{
        border-left: 1px dashed #999;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -11%;
    }
    .bl_salesCol:nth-child(n+3){
        margin-top: 80px;
    }
}
@media (min-width:1200px){
    .bl_salesCont::after{
        width: 30%;
    }
    .bl_salesCol{
        width: 30%;
    }
    .bl_salesCol:nth-child(2n)::before{
        display: none;
    }
    .bl_salesCol:nth-child(3n)::before,
    .bl_salesCol:nth-child(3n-1)::before{
        border-left: 1px dashed #999;
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -8.5%;
    }
    .bl_salesCol:nth-child(n+3){
        margin-top: 0;
    }
    .bl_salesCol:nth-child(n+4){
        margin-top: 100px;
    }
}

/*-----------------------------------------
    フッター
-----------------------------------------*/
.ly_footer{
    background-color: #3b6d4a;
    color: #fff;
    text-align: center;
    margin-top: 120px;
    padding: 40px 20px;
}
.ly_footer .el_logo{
    display: block;
    transition: 0.3s;
    margin: 0 auto 20px;
    max-width: 150px;
    width: 100%;
}
.ly_footer .el_logo:hover{
    opacity: 0.5;
}
@media (min-width:1200px){
    .ly_footer{
        margin-top: 180px;
    }
}
