@charset "utf-8";

/**
 * シーン情報トップ
 */

/* メイン */
div.scene_top h3{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}
/* ページ上部：画像とメッセージ */
div.scene_top div.catch_frame{
    display:flex;
    gap:40px;
    margin-top: 40px;
}
div.catch_frame .c_image{
    width:560px;
    height:276px;
    object-fit: cover;
    overflow: hidden;
    background-color: #ccc;
}
div.catch_frame .c_image img{
    width:100%;
    height:auto;
}
div.catch_frame .c_message{
    width:368px;
    font-size:15px;
    font-size:1.5rem;
    line-height:1.8;
    letter-spacing: 0.06em;
    text-align: justify;
}
div.catch_frame .c_message .c_line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #008838 calc(100% - 35px), transparent calc(100% - 35px));
}
div.catch_frame .c_message .c_pencil {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  display: block;
}
/* 支援情報一覧 */
div.sp_wrapper {
    margin-top:50px;
}
/* 支援情報一覧：タイトル */
div.sp_wrapper .sp_title{
    display: flex;
    align-items: center; 
    gap: 15px; 
    padding-bottom: 6px;
    box-sizing: border-box;
    border-bottom: 2px solid #008838;
}
div.sp_wrapper .sp_title h3 {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin: 0; 
    font-size: 24px;     
    font-size: 2.4rem;     
    font-weight: bold;
    color:#000;
}
div.sp_wrapper .sp_title img.icon {
    width: 40px;       
    height: auto;
}
/* 支援情報一覧：一覧表示部分 */
div.sp_wrapper div.sp_frame{
    display:flex;
    flex-wrap: wrap;
    gap:40px 30px;
    padding:30px 0;
}
div.sp_wrapper div.sp_frame .block{
    width:312px;
    height:auto;
    box-sizing: border-box;
}
div.sp_wrapper div.sp_frame .block .image{
    max-width:310px;
    width:auto;
    height:230px;
}
div.sp_wrapper div.sp_frame .block img{
    width:100%;
    height:100%;    
    object-fit: cover;
    object-position: center center;
    display:block;
}
div.sp_wrapper div.sp_frame .block h4{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    border-left: 4px solid #008838;
    padding-left: 18px;
    box-sizing: border-box;
    margin-top:10px;
}
div.sp_wrapper div.sp_frame .block p.ex{
    margin-top:10px;
    min-height:50px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;

    /* 3点リーダー対応 */
/*
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;   
    overflow: hidden; 
*/    
}
div.sp_wrapper .btn_com_more{
    background-color: #7db900;
    font-size: 15px;
    font-size: 1.5rem;  
    letter-spacing: 0.03em;
    padding: 4px 40px;
    margin:0 auto;
    margin-top:10px; 
}

