@charset "UTF-8";

@import url("./wp.css");


.f_bnr {
	border-top: 1px solid #ede6e6;
}
.single_page .f_bnr {
	border-top: none;
}
.single_page .com_h__bg > span:not(:last-child)::after {
	content: "／";
}


/*---------------------------------------------------------
 cat_select
---------------------------------------------------------*/
.cat_select {
	max-width: 1180px;
	display: grid;
    justify-content: flex-start;
	justify-content: space-between;
	/* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
	grid-template-columns: repeat(4, min(280px, 24%));
	gap: 1em 0;
	margin: 0 auto 6%;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.cat_select {
	grid-template-columns: repeat(3, min(32%));
}

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.cat_select {
	grid-template-columns: repeat(2, min(49%));
	gap: .8em 0;
}
}


/*---------------------------------------------------------
 search_box
---------------------------------------------------------*/
.search_box {
	max-width: 1180px;
	margin: 0 auto 50px;
}
.search_box dt {
	position: relative;
	font: var(--font_min);
	font-size: min(2vw,131%);
	letter-spacing: .15em;
	line-height: 1.5;
	white-space: nowrap;
	margin-bottom: 1em;
}
.search_box dt::before {
	display: inline-block;
	content: "";
	background: url(../images/topics/icon-search.svg) no-repeat center center;
	background-size: contain;
	width: .85em;
	height: .85em;
	margin-right: .5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.search_box {
	margin-bottom: 8%;
}
.search_box dt {
	font-size: 105%;
	letter-spacing: .1em;
}
}


/*---------------------------------------------------------
case_title
---------------------------------------------------------*/
.case_title {
	position: relative;
	text-align: center;
	font: var(--font_min);
	font-size: min(2vw,125%);
	letter-spacing: .15em;
	line-height: 1.5;
	margin-bottom: 1.2em;
}

.case_list .case_title {
	padding-bottom: 1.2em;
	border-bottom: 1px solid currentColor;
}

.single_page .case_title {
	font-size: min(2.8vw,200%);
}
.single_page .case_title::after {
	display: block;
	content: "";
	background-color: currentColor;
	width: 42%;
	height: 1px;
	margin: 1.5em auto;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_title {
	font-size: 105%;
	letter-spacing: .1em;
}

.single_page .case_title {
	font-size: 110%;
}
}

/*---------------------------------------------------------
case_cat
---------------------------------------------------------*/
.case_cat {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	gap: .4em;
	font-size: 94%;
 	line-height: 1.2;
	letter-spacing: normal;
	margin-bottom: 1.5em;
}
.case_cat > li {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
	gap: .4em;
}
.case_cat > li::after {
	display: inline-block;
	content: "／";
}
.case_cat > li:last-of-type:after {
	display: none;
}
.case_cat .cat_p a {
	display: block;
	color: #FFF;
	background: var(--color_dgrn);
	padding: .4em .8em;
	border-radius: 2em;
	white-space: nowrap;
}
.case_cat .cat_p a:hover {
	background: var(--color_grn);
}
.case_cat li ul {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
	gap: .4em;
}
.case_cat li ul li::after {
	display: inline-block;
	content: "、";
}
.case_cat li ul li:last-of-type:after {
	display: none;
}
.case_cat li ul a {
	color: #857c61;
	text-decoration: underline;
}
.case_cat li ul a:hover {
	text-decoration: none;
}

.single_page .case_cat {
	margin-bottom: 5%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_cat {
	margin-top: 4%;
	justify-content: flex-start;
	font-size: 75%;
}
.case_cat li ul li {
	font-feature-settings: "halt";
}
	
.single_page .case_cat {
	margin-bottom: 8%;
}
}


/*---------------------------------------------------------
ba_photo
---------------------------------------------------------*/
.ba_photo {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 49% 49%;
	column-gap: 2%;
	margin: 0 auto 1.2em;
}
.ba_photo > div {
	position: relative;
	overflow: hidden;
	aspect-ratio: 283/180;
}
.ba_photo > div:nth-of-type(n+3) {
	margin-top: .6em;
}
.ba_photo > div::before {
	display: block;
	content: "";
	padding-top: 64%;
}
.ba_photo > div::after {
	position: absolute;
	display: block;
	content: "";
	background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
	width: 100%;
	height: 28%;
	left: 0;
	top: 0;
}
.ba_photo img {
	position: absolute;
	height: 100%;
	object-fit: cover;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
.ba_photo .ft_eng {
	position: absolute;
	color: #FFF;
	font-size: min(2vw,150%);
	letter-spacing: .06em;
	left: 1em;
	top: .5em;
	z-index: 1;
}

.single_page .ba_photo {
	width: 90%;
	max-width: 945px;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.single_page .ba_photo .ft_eng {
	font-size: min(4vw,237%);
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.ba_photo {
	width: 100%;
}
.ba_photo .ft_eng {
	font-size: 80%;
}

.single_page .ba_photo {
	width: 100%;
}
}


/*---------------------------------------------------------
case_list
---------------------------------------------------------*/
.case_list > article {
	background-color: #f4f3f0;
	padding: 30px 4.5% 0;
}
.case_list .txt {
	font-size: 94%;
	line-height: 1.5;
}
.case_list .txt_more {
	display: inline-block;
	margin-left: 1em;
}
.case_list .txt_more:hover {
	color: var(--color_dgrn);
}
.case_list .case_btn  {
	display: block;
	text-align: center;
	font-size: 94%;
	background-color: #e6e1dc;
	padding: 1em;
	margin: 1.5em -5% 0;
}
.case_list .case_btn .com_icon {
	display: inline-block;
	color: #FFF;
	background-color: var(--color_dgrn);
	vertical-align: -0.6em;
	margin-left: .8em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.case_list {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2,49.2%);
	row-gap: 1.4em;
}
.case_list > article {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	gap: 0;
}
.case_list .case_title {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_list > article {
	padding: 10% 5% 0;
	margin-bottom: 4%;
}
.case_list > article:last-of-type {
	margin-bottom: 0;
}
}



/*---------------------------------------------------------
case_detail
---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.case_detail {
	width: 94%;
	max-width: 1200px;
	margin-inline: auto;
}
}

/*tbl_detail
--------------------------------------------------------------------*/
.case_detail .tbl_detail {
	margin-top: 40px;
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid rgba(81,68,29,0.3);
}
.case_detail .tbl_detail tr {
	border-bottom: 1px solid rgba(81,68,29,0.3);
}
.case_detail .tbl_detail th,
.case_detail .tbl_detail td {
	text-align: left;
	padding: 1.5em 3%;
}
.case_detail .tbl_detail th {
	width: 25%;
	vertical-align: top;
	color: var(--color_dgrn);
	font-weight: var(--fw_bold);
	font-size: min(1.6vw,112%);
	letter-spacing: .15em;
	line-height: 1.4em;
	padding-right: 0;
	border-right: 1px solid rgba(81,68,29,0.3);
}
.case_detail .tbl_detail td {
	width: 75%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_detail .tbl_detail {
	margin-top: 6%
}
.case_detail .tbl_detail th,
.case_detail .tbl_detail td {
	display: block;
	width: 100%;
	padding: .8em 4%;
}
.case_detail .tbl_detail th {
	font-size: 105%;
	border-right: none;
}
.case_detail .tbl_detail td {
	font-size: 90%;
	line-height: 1.6;
	padding-top: 0;
}
}
/*sub_photo
--------------------------------------------------------------------*/
.case_detail .sub_photo {
	width: 90%;
	max-width: 896px;
	display: grid;
    justify-content: space-between;
	grid-template-columns: repeat(3,30%);
	column-gap: 2em 0;
	margin: 4.5% auto 0;
}
.case_detail .sub_photo.fl_center {
    justify-content: center;
}
.case_detail .sub_photo div {
	position: relative;
	overflow: hidden;
	aspect-ratio: 260/178;
	background: #f2f2f2;
}
.case_detail .sub_photo img {
	position: absolute;
	display: block;
	object-fit: cover;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
.case_detail .sub_photo p {
	font-size: 94%;
	line-height: 1.5;
	margin-top: 1em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_detail .sub_photo {
	width: 100%;
	grid-template-columns: repeat(2,48%);
	margin-top: 8%;
}
.case_detail .sub_photo p {
	font-size: 80%;
}
}

/*case_risk
---------------------------------------------------------*/
.case_risk {
    margin-top: 5%;
	background-color: #FFF;
}
.case_risk dt {
	text-align: center;
	color: #FFF;
	font: var(--font_min);
	font-size: min(2vw,125%);
	letter-spacing: .15em;
	line-height: 1.5;
	padding: .8em;
	background-color: var(--color_dgrn);
	margin-bottom: 1.2em;
}
.case_risk dd {
	padding: 0 5% 30px;
}
.case_risk ul > li {
	position: relative;
	padding-left: 1em;
}
.case_risk ul > li::before {
	position: absolute;
	content: "・";
	left: 0;
	top: 0;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.case_risk {
    margin-top: 8vw;
}
.case_risk dt {
	font-size: 105%;
	letter-spacing: .1em;
}
.case_risk dd{
	font-size: 90%;
}
}

/*
--------------------------------------------------------------------*/

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}