@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------*/
#sec_title .title_image{
    background: url(../images/cs/cs_title_bg.jpg) 50% 0 no-repeat;
    background-size: cover;
}

/* ---------------------------------------------------------------------------------------------------*/
#sec_overview{
    margin-top: 120px;
}
#sec_overview h2{
    margin-bottom: 60px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 28px;
    position: relative;
}
#sec_overview h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    background: #8bd140;
}
.overview_content{
    width: 70%;
    flex-shrink: 0;
}
#sec_overview .inner{
    flex-wrap: wrap;
}
#sec_overview .overview_image{
    margin-left: auto;
    padding: 0 16px 16px 0;
    width: 26%;
    height: 26%;
    position: relative;
    background: #FFF;
}
#sec_overview .overview_image::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: url(../images/bg_slash.png);
    position: absolute;
    bottom: -16px;
    right: -16px;
    z-index: -1;
}
#sec_overview .overview_image h3{
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
}
#sec_overview .overview_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#sec_overview h3{
    padding-bottom: 16px;
    font-size: 24px;
    letter-spacing: -0.02em;
}
#sec_overview p{
    margin-top: 16px;
    margin-bottom: 24px;
    text-align: justify;
}
#sec_overview ol{
    padding: 12px 24px;
    border: 2px solid #8bd140;
    counter-reset: number 0;
}
#sec_overview ol li{
    margin: 8px 0;
    padding-left: 32px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}
#sec_overview ol li::before{
    counter-increment: number 1; 
    content: counter(number) " ";
    display: block;
    width: 25px;
    line-height: 25px;
    text-align: center;
    color: #FFF;
    background: #8bd140;
    position: absolute;
    top: 0;
    left: 0;
}
#sec_overview .overview_data{
    margin: 80px auto 0;
    max-width: 800px;
}
#sec_overview .overview_data h4{
    font-size: 22px;
    text-align: center;
}
#sec_overview .overview_data img{
    margin-top: 16px;
}
#sec_overview .overview_data p.caution{
    margin-top: 16px;
    margin-bottom: 0;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
    line-height: 1.5em;
    text-align: justify;
}
#sec_overview .overview_data p.source{
    margin-top: 8px;
    margin-bottom: 0;
    text-align: right;
    font-size: 14px;
    color: #888;
    line-height: 1.5em;
}

/* ---------------------------------------------------------------------------------------------------*/
#sec_map{
    margin-top: 80px;
}
#sec_map h2{
    padding-bottom: 40px;
    text-align: center;
    font-size: 28px;
    position: relative;
}
#sec_map h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    background: #8bd140;
}
#sec_map .map_content {
    margin: 60px auto 0;
    width: 100%;
    max-width: 854px;
}
#sec_map .text_center{
    font-size: 18px;
    text-align: center;
}
#sec_map .text_center .plants_count{
    margin: 0 0.1em;
    font-size: 1.4em;
}
#sec_map .map_wrap{
    margin-top: 40px;
    position: relative;
}
#sec_map .map_heatlabel{
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #DDD;
}
#sec_map .map_heatlabel p{
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1em;
}
#sec_map .map_heatlabel li{
    display: flex;
    font-size: 13px;
    line-height: 24px;
}
#sec_map .map_heatlabel li span{
    margin-right: 8px;
    display: block;
    width: 24px;
    height: 24px;
}
#sec_map .map_heatlabel li.label0 span{
    background: #ddd;
}
#sec_map .map_heatlabel li.label1 span{
    background: #ffda3f;
}
#sec_map .map_heatlabel li.label2 span{
    background: #8cd140;
}
#sec_map .map_heatlabel li.label3 span{
    background: #00a182;
}
#sec_map .map_heatlabel li.label4 span{
    background: #008388;
}
#sec_map #jmap .jmap-infobox{
    display: none;
}
/* ---------------------------------------------------------------------------------------------------*/
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}
.modal {
    padding: 40px;
    width: 80%;
    max-width: 880px;
    height: auto;
    max-height: 80vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    overflow: auto;
    z-index: 1000;
}
.modal-close__wrap {
    position: fixed;
    background: #FFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 1001;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.4);
}
.modal-close {
    background: transparent;
    border-color: transparent;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
}
.modal-close span {
    position: relative;
    width: 100%;
    height: 1px;
    background: black;
    display: block;
}
.modal-close span:nth-child(1) {
    transform: rotate(45deg);
}
.modal-close span:nth-child(2) {
    transform: rotate(-45deg);
}
.modal-open {
    cursor: pointer;
    background: orange;
    border: orange;
    color: #fff;
    padding: 10px 12px;
}
.overlay.open {
    display: block;
}
.modal.open {
    display: block;
}
.overlay.close{
    display: none;
}
.modal.close{
    display: none;
}
.modal table{
    margin-top: 16px;
    width: 100%;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
}
.modal table th,
.modal table td{
    font-weight: 500;
    font-size: 16px;
    padding: 0.5em 1em;
    border-left: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}
.modal table th{
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    background: #f5f5f5;
}
.modal table th.th_map{
    padding: 0.5em;
    width: 10em;
}
.modal table td.td_map{
    padding: 0.5em;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.modal table td.td_map a{
    font-size: 12px;
    color: #FFF;
    border-radius: 14px;
    line-height: 28px;
    background: #8bd140;
    display: block;
    text-decoration: none;
}
.modal .info{
    margin-top: 1em;
    font-size: 14px;
    text-align: right;
}
.modal .info a[target="_blank"]::after{
    content: " \f24d";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 400;
}
/* ---------------------------------------------------------------------------------------------------*/
#sec_wanted{
    margin-top: 80px;
    padding-bottom: 120px;
}
#sec_wanted h2{
    margin-bottom: 60px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 28px;
    position: relative;
}
#sec_wanted h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    background: #8bd140;
}
#sec_wanted h2 + p{
    font-size: 18px;
    text-align: center;
}
#sec_wanted a.linkbtn_inquiry{
    margin: 40px auto 0;
    display: block;
    text-align: center;
    width: 480px;
    line-height: 76px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #8bd140;
    border-radius: 40px;
    background: #FFF;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 99;
    overflow: hidden;
}
#sec_wanted a.linkbtn_inquiry:hover,
#sec_wanted a.linkbtn_inquiry.hover{
    color: #FFF;
}
#sec_wanted a.linkbtn_inquiry::before{
    content: "";
    background: #8bd140;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}
#sec_wanted a.linkbtn_inquiry:hover::before,
#sec_wanted a.linkbtn_inquiry.hover::before{
    transform-origin: left top;
    transform: scale(1.1);
}
#sec_wanted a.linkbtn_inquiry::after{
    content: "";
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    position: absolute;
    top: calc(50% - 4px);
    right: 32px;
    transform: rotate(45deg);
    transition: all 0.3s ease-out;
}
#sec_wanted a.linkbtn_inquiry:hover::after,
#sec_wanted a.linkbtn_inquiry.hover::after{
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}
#sec_wanted .column_CS{
    margin: 64px auto 0;
    width: 860px;
    padding: 40px 320px 40px 40px;
    background: url(../images/cs/cs_column_bg.png) calc(100% - 40px) calc(100% - 40px) no-repeat,#f5f5f5;
    background-size: 240px auto;
}
#sec_wanted .column_CS h3{
    margin-bottom: 16px;
    font-size: 18px;
    padding-left: 16px;
    text-indent: -16px;
}
#sec_wanted .column_CS h3 span{
    margin-right: 4px;
    font-size: 14px;
}
#sec_wanted .column_CS p{
    text-align: justify;
}