@charset "utf-8";

/****************/
.local_nav {
  background: #f7f7f7;
  margin-top: 1em;
  padding: 1em 5px;
}

.local_nav .btn {
  width: 48%;
}

.local_nav .btn a {
	display: block;
	color: #000;
	font-size: 13px;
	font-weight: bold;
	padding: 20px 10px 5px; 
	position: relative;
	text-align: center;
	background: #fff;
	border-radius: 5vh;
	box-shadow: 0 7px 0px rgba(58 36 3);
	transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.local_nav .btn a img {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
}

.local_nav ul{
    display: flex;
    flex-wrap: wrap;
}
.local_nav .btn a.active{
	background:#442a01;
	color: #fff;
	pointer-events: none;
}

.body-wrap{
	padding: 1em;
}
.heading {
	position: relative;
	font-size: 25px; 
	font-weight: bold;
	display: inline-block;
	padding-left: 12px; 
	z-index: 1;
}

.heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px; 
	height: 40px;
	background: #ff97a5;
	border-radius: 50%;
	z-index: -1;
}
.center_txt{
	text-align: center;
}
.center_txt span{
	display: block;
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 10px;
}
.heading_2 {
	position: relative;
	font-size: 20px; 
	font-weight: 500;
	display: inline-block;
	padding-left: 25px; 
	z-index: 1;
}

/*
.heading_2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px; 
	height: 20px;
	background: #c3d9ac;
	border-radius: 50%;
}
*/
.heading_2::before {
 content: "";
  position: absolute;
  left: 0;
  top: 1em; 
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #c3d9ac;
  border-radius: 50%;
}

.section p a{
    color: #000;
    border-bottom: 1px solid #000;
    display: inline;
}
.section p{
	margin-bottom: 0;
}

.bg_gray{
	background: #f7f7f7;
	padding: 1em;
	border-radius: 30px;
	margin: 1em auto;
}
.img_block img{
	width: 100%;
	margin: .5em auto;
}

.img_block ul li{
	padding-left: 1.25em;
	text-indent: -1.25em;
}
.img_block ul li span{
	font-weight: 500;
}
.bg_gray.jc-center ul:nth-child(2){
	margin-top: 1em;
}
.bg_gray.f-wrap-nowrap{
	flex-wrap: wrap;
}
.bg_gray.f-wrap-nowrap .note_wrap{
	width: fit-content;
	margin-left: auto;
}
.bg_gray.f-wrap-nowrap .note_wrap p{
	text-align: left;
}
.bg_gray.f-wrap-nowrap .note_wrap p:nth-child(n +2){
	margin-top: 0;
}

/*==index.html==*/
.name_block{
	font-size: 15px;
}
.name_block img{
	width: 30%;
	margin: 0 auto;
	display: block;
}
.name_block span{
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

/*==symptoms.html==*/
.table-wrap {
	width: 100%;
	overflow-x: auto; 
}
.table-wrap {
	width: 100%;
	overflow-x: auto;
}

.table-wrap table {
	min-width: 600px;
	border-collapse: collapse;
}

th, td {
	border: 1px solid #d8cbb2;
	padding: 20px;
	vertical-align: top;
}

th {
	background: #fff8e5;
	font-weight: bold;
	text-align: center;
}

.category {
	background: #faf6eb;
	width: 120px;
	text-align: center;
	font-weight: bold;
}

.cell-title {
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}

.cell-content {
	text-align: left;
	width: 40%;
}

.cell-content img {
	display: block;
	margin: 0 auto 12px!important;
	width: 80px!important;
	height: auto;
}

.cell-content ul {
	margin: 0;
	padding-left: 1.2em;
	list-style: disc;
}

.table-wrap table tr th.row-title{
	width: 20%;
}
	/* ===== 外枠を消す ===== */
.table-wrap table th:first-child,
.table-wrap table td:first-child {
	border-left: none;
}
.table-wrap table th:last-child,
.table-wrap table td:last-child {
	border-right: none;
}
.table-wrap table tr:first-child th {
	border-top: none;
}
.table-wrap table ul li{
    padding-left: 1.25em;
    text-indent: -1.25em;
}

.center_txt p.for_symptoms{
	text-align: left;
}
.center_txt p.for_symptoms span{
	text-align: center;
}
/*
p.for_symptoms a,
p.txt_left a{
	color: inherit;
	text-decoration: underline;
}
*/
.section p a:hover{
	opacity: 0.6;
	transition: 0.5s;
}

/********************************************
タブレット
*********************************************/
@media screen and (min-width:768px){
	.local_nav {
		padding: 1em 10px 0;
	}
	.local_nav .btn{
		width: 30%;
        margin-top: 1.1em;
	}
	.local_nav .btn a{	
		padding: 12px 10px 10px; 
	}
	.local_nav .btn a img{
		width: 25%;
		top: -35px;
	}
	
	.center_txt{
		font-size: 18px;
	}
	.heading_2{
		margin-top: 4em;
	}
	.bg_gray{
		display: flex;
        padding: 1em 2em;
		align-items: flex-start;
		margin-top: .5em;
	}
	.img_block img{
		width: 45%;
		margin-right: 20px;
		margin-top: 0;
	}
	.bg_gray.jc-center ul:first-child{
		margin-right: 40px;
	}
	.bg_gray.jc-center ul:nth-child(2){
		margin-top: 0;
	}
	.bg_gray.jc-center{
		justify-content:center;
	}
	
	

	/*==index.html==*/
	.name_block {
		text-align: center;
	}
	.name_block img{
		width: 20%;
	}
	
	/*==symptoms.html==*/
	.img_block.for_symptoms img{
		width: 100%;
	}
	
	.bg_gray.f-wrap-nowrap .note_wrap{
		display: flex;
        justify-content: end;
		width: 100%;
		flex-wrap: wrap;
        gap: 0px 10px;
	}
	.bg_gray.f-wrap-nowrap .note_wrap p:nth-child(n +2){
		margin-top: 10px;
	}
	
	
}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1024px) {
	.local_nav {
		padding: 2em 10px 1.5em;
	}
	.local_nav ul{
		justify-content: space-around;
	}
	.local_nav .btn{
		width: 17%;
		margin: 0 10px;
	}

	.local_nav .btn a:hover {
		/* box-shadow: 0 2px 0px rgba(0, 0, 0, 0.2); */
		transform: translateY(0px);
		background: #442a01;
		color: #fff;
        transition: 0.3s ease;
	}	
	
	.body-wrap{
		padding: 0 50px;
	}
	.heading{
		font-size: 28px;
		padding-left: 20px;
	}
	.heading::before{
		width: 45px;
		height: 45px;
	}
	.center_txt span{
		font-size: 24px;
	}
	.article{
		padding: 0 10px 40px;
	}
	.heading_2::before{
		width: 14px;
		height: 14px;
	}
	.article p{
		padding: 0 20px;
	}
	.bg_gray{
		width: 975px;
        box-sizing: border-box;
	}
	.img_block img{
		width: 350px;
	}
	.img_block ul{
		width: 475px;
        margin-top: 10px;
	}
	.img_block .bg_gray.jc-center ul li{
		margin-bottom: 5px;
	}
	.img_block .bg_gray.jc-center ul{
		width: 200px;
        text-align: left;
        margin-top: 0;
	}
    .bg_gray.jc-center ul:first-child {
        width: 185px;
    }	
	.article p.note{
		padding: 0 40px;
	}
	
	

	/*==index.html==*/
	.enkeidatsumou_index .body-wrap{
		padding-top: 25px;
		display: flex;
        gap: 0 20px;
        padding-bottom: 25px;
	}
	.enkeidatsumou_index .body-wrap .txt_block{
		width: 80%;
	}
	.enkeidatsumou_index .name_block {
		text-align: left;
		width: 40%;
	}
	.enkeidatsumou_index .name_block img{
		width: 160px;
	}
	.enkeidatsumou_index .name_block span{
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 24px;
	}
	.enkeidatsumou_index .related_btn_wrap{
		width: 1050px;
		margin: 0 auto;
	}

	/*==symptoms.html==*/
	.img_block.for_symptoms img{
		width: 80%;
	}
	th{
		font-size: 20px;
	}
	.table-wrap table tr th.row-title{
		width: 180px;
		padding: 20px 0;
		vertical-align: middle;
	}
	.cell-title{
		font-size: 20px;
	}
	.cell-content img{
		width: 150px!important;
	}
	.table-wrap.for_symptoms ul{
        width: auto;
	}
	.bg_gray.f-wrap-nowrap .note_wrap p.note{
		padding: 0;
	}
}


/********************************************
ローカルナビ　SP修正
*********************************************/
@media screen and (max-width: 767px) {
	.local_nav{
		padding: 10px 2em;
        display: flex;
        justify-content: center;
	}
	.local_nav ul{
		display: block;
        width: 80%;
	}
	.local_nav .btn{
		border: none;
		background: none;
		margin: 0 0 10px;
		text-align: left;
		width: 100%;
	}
	.local_nav .btn a{
		transition: none;
		box-shadow:none;
		background: none;
		padding: 0;
		text-align: left;
		font-size: 15px;
	}
	.local_nav .btn a img{
		position: relative;
		left: auto;
		top: auto;
        vertical-align: middle;
        width: 15%;
		transform: none;
	}
	.local_nav .btn a.active{
		padding: 10px 10px 15px 10px;
		pointer-events: none;
        display: inline;
        vertical-align: middle;
	}
	
}
	