@charset "utf-8";
/*共通設定*/
.breadcrumb {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 14px;
    margin: 40px 0;
}

.breadcrumb p {
    margin: 0 8px;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.flex-con {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.main {
    width: 75%;
    padding-left: 24px;
    border-left: solid 1px #f1f1f1;
}

.category {
    width: 25%;
    padding-right: 16px;
}

.main-flex {
    margin-bottom: 100px;
}

.main-flex h1 {
    margin-bottom: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.category h2 {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.main-flex h1::after {
  content: '';
  height: 1px;
  background-color: #999;
  flex-grow: 1;
  margin-left: 16px;
}

.category h2::after {
    content: '';
    height: 1px;
    background-color: #999;
    flex-grow: 1;
    margin-left: 16px;
}

.cate-list li {
    margin-bottom: 8px;
}

.cate-list a:hover {
    opacity: 0.8;
}
/*終わり*/ 

/*<section class="news">*/
.news-con h2 {
    border-bottom: solid 1px #999;
    padding-bottom: 4px;
    font-size: 18px;
}

.news-list li {
	margin: 10px 0;
	text-align: left;
}

.news-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list a:hover {
    opacity: 0.8;
}

.news-list .list-flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	justify-content: left;
}

.news-list time {
	width: 14%;
	font-size: 13px;
}

.news-list .list-flex p {
	width: 80%;
}

.news-list .arrow-con01::before{
	background: #435259;
}

.news-list .arrow-con01::after{
	border-top: 1px solid #435259;
	border-right: 1px solid #435259;
}
/*終わり*/ 

/*<section class="doctor">*/
.doctor-in h2 {
    border-bottom: solid 1px #999;
    padding-bottom: 4px;
    font-size: 18px;
}

.medic-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin: 24px 0 40px 0;
}

.medic-btn {
    width: 24%;
    color: #14b88d;
    border-radius: 8px;
    border: solid 2px #14b88d;
    padding: 8px;
    margin-bottom: 1%;
}

.medic-btn:hover {
    color: #fff;
    background-color: #14b88d;
}

.doctor-con {
    border-bottom: solid 1px #14b88d;
    padding: 40px 0 24px 0;
}

.doctor-con h3 {
    color: #14b88d;
    margin-bottom: 24px;
}

.doctor-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 48px 0;
    border-bottom: solid 1px #f1f1f1;
}

.doctor-flex:last-child {
    border-bottom: none;
}

.doctor-flex img {
    width: 30%;
}

.doctor-txt {
    width: 70%;
    padding-left: 24px;
}

.doctor-txt .name {
    font-weight: 600;
    margin-bottom: 16px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {
/*共通設定*/
    .flex-con {
        display: block;
    }

    .main {
        width: 100%;
        padding-left: 0px;
        border-left: none;
        margin-bottom: 80px;
    }
    
    .category {
        width: 100%;
        padding-right: 0;
    }    
/*終わり*/ 
}

/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .main-flex h1 {
        font-size: 20px;
    }
/*終わり*/ 

/*<section class="news">*/
    .news-list .list-flex {
        display: block;
    }

    .list-flex time {
        width: 100%;
        display: block;
    }

    .news-list .list-flex p {
        width: 95%;
    }
/*終わり*/ 

/*<section class="doctor">*/
    .medic-btn {
        width: 49%;
        margin-bottom: 2%;
    }

    .doctor-flex {
        display: block;
        text-align: center;
    }

    .doctor-flex img {
        width: 70%;
        margin-bottom: 8px;
    }

    .doctor-txt {
        text-align: left;
        width: 100%;
        padding-left: 0;
    }

    .doctor-txt .name {
        text-align: center;
    }
/*終わり*/ 

}    