* {
	box-sizing: border-box;
	font-feature-settings: "palt";
}
:root {
	--color-company-blue: #0059AD;
}

.l-footer {
	margin-top: auto;
}
a:hover {
	opacity: .7;
	transition: .2s;
}

/* =================================================
	layout
  ================================================= */
.l-inner {
    display: grid;
    gap: 1.5em;
    max-width: 960px;
    width: 100%;
    margin: 3vw auto;
    padding: 20px;
}
.l-grid_rows {
    display: grid;
    gap: 2em;
    line-height: 1.5;
}
@media screen and (min-width: 768px) {
	.l-inner {
		margin: 30px auto;
    padding: initial;
    width: 90%;
	}
	.l-grid_rows {
		grid-template-columns: repeat(2, 1fr);
    align-items: end;
	}
}
.l-grid_rows > dl {
	padding: 1em;
	border: solid 1px var(--color-company-blue);
	border-radius: .5em;
  background: #fff;
}
.l-detail {
	display: grid;
    gap: .5rem;
}
.l-labels {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .85rem;
}
.l-list_btns {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
	font-size: small;
}
@media screen and (min-width: 768px) {
	.l-list_btns {
		font-size: medium;
	}
}


/* =================================================
	parts
  ================================================= */

/* common */
.title-page {
	text-align: center;
    font-size: 130%;
	font-weight: bold;
    color: #0066B5;
}
@media screen and (min-width: 768px) {
  .title-page {
    font-size: 150%;
}
}
/* ジャンルラベル */
[class*="genre-"] {
    padding: .5em;
    text-align: center;
	color:  var(--color-company-blue);
	border: solid 1px var(--color-company-blue);
}
.filter-area [class*="genre-"] {
	background-color: #ebf5ff;
	border-color: transparent;
}
.filter-area [class*="genre-"]:has(.is-active) {
	background-color: var(--color-company-blue);
	color: #FFF;
}
[data-template="result"] .genre-industry {
	background-color: var(--color-company-blue);
	color: #FFF;
}
[data-template="result"] .genre-pref {
	background-color: #FFF;
}
/* MV */
.filter-wrap {
	background-image: url(/product/images/dairing/ghp_d-airing_title_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
	padding: 5% 20px;
}
@media screen and (min-width: 768px) {
  .filter-wrap {
    padding: 5%;
  }
}

/* 検索領域 */
.filter-area {
    max-width: 960px;
    border-radius: .5rem;
    background-color: rgba(255, 255, 255, .9);
    margin: 0 auto;
    padding: 2em;
		width: 100%;
}
.filter-label {
    width: 4em;
    margin: 0 auto 1em;
	text-align: center;
    text-align-last: justify;
}
.filter-reset_btn {
	text-align: center;
	color:  var(--color-company-blue);
}
.filter-reset_btn > svg {
    width: 1.5em;
    fill:  var(--color-company-blue);
	vertical-align: middle;
}

/* ------------------
	検索結果		 */


/* 結果データ：名前 */
.result-item_name {
    font-size: 1.1em;
	font-weight: bold;
    color:  var(--color-company-blue);
}
@media screen and (min-width: 768px) {
  .result-item_name {
    font-size: 1.5em;
}
}
.result-item_name span{
  white-space: pre-line;
}
/* 結果データ：サムネイル */
.result-item_thumb {
    height: auto;
    width: 100%;
    object-fit: cover;
}
.result-item_label {
	padding: .5em 1em;
}
/* 結果データ：レイアウト */
.result-item_detail {
    display: flex;
    flex-wrap: wrap;
	gap: .25em 1em;
}
.result-item_list {
    display: grid;
    grid-template-columns: 4em 1fr;
	width: 100%;
}
.result-item_list dt {
	text-align-last: justify;
	font-weight: normal;
}
.result-item_list dd {
	display: grid;
    grid-template-columns: 1em 1fr;
}

/* ガスヒーポンキャプション */
.ghp_cup{
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  padding: 20px 20px 0 ;
}

.ghp_cup p{
	font-size: 0.9em;
	text-indent: -1em;
	padding-left: 1em;
}
.ghp_cup a{
  color: #006fbc;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .ghp_cup{
    text-align: right;
    padding: initial;
    width: 90%;
    padding: 2em 0;
  }
}