/*-------------------------------------------------------------

section -- 診療科目セクションページ

-------------------------------------------------------------*/
/*-------------------------------------------------------------
  セクション　見出し
-------------------------------------------------------------*/
.sec_head_cover{
	width: 100%;
	height: 400px;
	background-color: #ccc;
    margin-top: 80px;
    position: relative;
}
.sec_head_cover img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.sec_head_txt{
    width:70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    background:rgba(255,255,255,0.8);
}
.sec_head_txt h3.sec_h3{
    width: 100%;
    text-align: center;
    font-size: 36px;
    letter-spacing: 3px;
}
.sec_head_txt h4.sec_h4{
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
	.sec_head_cover{
		height: 200px;
		margin-top: 0;
    }
    .sec_head_txt{
        width:90%;
    }
    .sec_head_cover img {
        height: 200px;
    }
    .sec_head_txt h3.sec_h3{
        font-size: 24px;
        letter-spacing: 0px;
    }
    .sec_head_txt h4.sec_h4{
        font-size: 18px;
    }
}

/*-------------------------------------------------------------
  セクション　メイン文章
-------------------------------------------------------------*/
.section_main_txt{
    width:90%;
    margin: 30px auto;
}
@media screen and (max-width: 768px) {
    .section_main_txt{
        width:95%;
        margin: 10px auto;
    }
}

/*-------------------------------------------------------------
  セクション　サブ画像
-------------------------------------------------------------*/
.section_sub_img{
	width: 100%;
	height: 250px;
	background-color: #ccc;
    margin: 20px 0;
}
.section_sub_img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
    .section_sub_img{
        height: 150px;
        margin: 10px 0;
    }
    .section_sub_img img {
        height: 150px;
    }
}

/*-------------------------------------------------------------
  セクション　コンテンツ
-------------------------------------------------------------*/
.sec_contents_h3 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.sec_contents_area {
    width: 100%;
    margin: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.sec_contents_area .sec_con_box {
    width: 48%;
    margin: 20px 1%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 10px;
    border: solid 5px #daedea;
}
.sec_contents_area .sec_con_box .s_con_img {
    width: 50%;
    margin: 0;
}
.sec_contents_area .sec_con_box .s_con_text {
    width: 50%;
    padding: 15px;
    color: #083b10;
    font-weight: bold;
}
.sec_contents_area .sec_con_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
}
.sec_contents_area .sec_con_box:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .sec_contents_h3 {
        font-size: 24px;
        letter-spacing: 0px;
        margin-bottom: 20px;
    }
    .sec_contents_area {
        margin: 20px 0;
    }
    .sec_contents_area .sec_con_box {
        width: 100%;
        margin: 15px 0;
    }
}
/*-------------------------------------------------------------
  セクション　料金表リンクボタン
-------------------------------------------------------------*/
.sec_pricelink_area{
    width: 100%;
    text-align: center;
}
.sec_pricelink_area a.sec_pricelink{
    width: 30%;
    padding: 20px;
    display: inline-block;
    background-color: #083b10;
    color: #fff;
    border-radius: 10px;
}
.sec_pricelink_area a.sec_pricelink:hover{
    background-color: #136320;
}
@media screen and (max-width: 768px) {
    .sec_pricelink_area a.sec_pricelink{
        width: 70%;
        padding: 15px;
    }
}


/*-------------------------------------------------------------
  セクション　注意書き
-------------------------------------------------------------*/
.sec_attention_box{
    width: 100%;
    margin: 30px 0;
    padding: 30px;
    background-color: #F5F3EB;
    font-size: 14px;
}

/*-------------------------------------------------------------
  20240903 add セクション　バナー
-------------------------------------------------------------*/
.sec_banner{
    width: 100%;
    margin: 30px 0;
}
.sec_banner a img:hover{
    opacity: 0.7;
}
@media screen and (max-width: 768px) {
    .sec_banner{
        margin: 15px 0;
    }
}