@charset "utf-8";

/**
 * 支援情報詳細ページ
 */

div.content_frame{
    border:2px solid #008c18;
    border-radius: 10px;
    padding:20px 0;
    box-sizing: border-box;
}
div.content_frame h3.sp_title{
    font-size:37px;
    font-size:3.7rem;
    font-weight: bold;
    color:#008c18;
    text-align: center;    
    letter-spacing: 0.06em;
}
div.content_frame h4.sp_ex{
    font-size:17px;
    font-size:1.7rem;
    font-weight: bold;
    color:#000;
    text-align: center;
    letter-spacing: 0.06em;
    margin:8px 0 20px 0;
}
/* こんな方におすすめ */
div.recommend_block{
    padding:16px 0;
    box-sizing: border-box;
    border-top:2px solid #008c18;
    border-bottom:2px solid #008c18;
}
div.recommend_block .frame{
    display: flex;
    justify-content: center;    
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
div.recommend_block .title {
    display: flex;
    align-items: center;

    height: 26px;
    background-color: #008c18;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 10px 4px 10px;
    box-sizing: border-box;
    margin: 0 15px 0 0;

    position: relative;
}
div.recommend_block .title::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 12px solid #008c18;
}
/* 人のアイコン */
div.recommend_block .title::before {
    content: "";
    position: absolute;
    right: -55px;
    width: 36px;
    height: 34px;
    background-image: url("../images/ico_recommend.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* タグのリスト */
div.recommend_block ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 0 45px;
    padding: 0;
    gap: 10px;
}
div.recommend_block ul li {
/*    min-width:140px;*/
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
    background-color: #eff0e3;
    border-radius: 20px;
    padding: 4px 18px;
    box-sizing: border-box;
}

/* 「画像：メッセージ」ブロック */
div.ex_content{
    display:flex;
    justify-content: space-between;
    padding:0 60px;
    box-sizing: border-box;
    margin:30px 0;
}
div.ex_content div.image{
    width:350px;
	height:240px;
	height:auto;
/*    overflow:hidden;*/
}
div.ex_content div.image img{
	width:100%;
	height:auto;
    object-fit: cover;
    object-position:center center;
}
div.ex_content div.content{
    width:460px;
/*
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8;
*/
}
div.ex_content div.content img{
    max-width:460px;
    height:auto;
}

/* 詳細 */
div.detail{
/*
    width:auto;
    padding:0 60px;
    box-sizing: border-box;
    width:90%;
*/    
    margin:40px auto 30px auto;
    width:870px;
}
div.detail img{
    max-width:900px;
    height:auto;
}

/* ボタン：トップへ */
div.btn_com_wrapper{
    margin:60px auto 40px auto;
}

