@charset "UTF-8";
/* CSS Document */

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

reset

-------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}
html {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
img, a {
  vertical-align: top;
}
a img {
  border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}


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

clearfix

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* --------------------------------------------------

html

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

html {
  font-size: 62.5%;
  height: 100%;
}
/* --------------------------------------------------

body

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

body {
/*  font-family: source-han-sans-japanese,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif,"Noto Sans Japanese","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo;*/
  font-family: "Noto Sans Japanese","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  color: #098126;
  box-sizing: border-box;
  background: #FFF;
  overflow-x: hidden;
}

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

link

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

a:link {
  color: #098126;
  text-decoration: none;
}
a:visited {
  color: #098126;
  text-decoration: none;
}
a:hover {
  color: #098126;
  text-decoration: none;
  opacity: 0.8;
}
a:active {
  color: #098126;
  text-decoration: none;
}
* a {
  transition-duration: 0.3s;
  transition-property: opacity, background, color, background-image, transform;
  transition-timing-function: ease-in-out;
}
/* --------------------------------------------------

inner

-------------------------------------------------- */
.inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

/* for TABLET */
@media screen and (max-width: 1200px) {
  .inner {
    width: 90%;
    padding: 0;
  }
}
/* --------------------------------------------------

共通設定 

-------------------------------------------------- */
figure img {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 800px){
  .pc-only{
    display: block;
  }
  .sp-only{
    display: none;
  }
} 


@media screen and (max-width: 800px) {
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}

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

btn

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

/* btn */
.btn a{
  background: #FFF;
  border: 2px solid #098126;
  text-align: center;
  display: block;
  font-size: 1.8rem;
  padding: 2.4rem 6.4rem 2.4rem 4.0rem;
  position: relative;
}
.btn a:after{
  content: "";
  background: url(../img/common/ico_btn_arrow.svg) no-repeat center center / contain;
  width: 16px;
  min-width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%);
  transition: 0.8s;
}
.btn a:hover:after{
  right: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .btn a{
    font-size: 1.6rem;
  }
}

/* btn-arrow */
.btn-arrow a,
.btn-arrow span{
  background: #FFF;
  border-radius: 50px;
  font-size: 1.2rem;
  text-align: center;
  display: block;
  padding: .8rem 4.0rem .8rem 3.2rem;
  position: relative;
  cursor: pointer;
}
.btn-arrow a:after,
.btn-arrow span:after{
  content: "";
  background: url(../img/common/ico_arrow.svg) no-repeat center center / contain;
  width: 6px;
  min-width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  transition: 0.8s;
}
.btn-arrow a:hover:after{
  right: 1.6rem;
}

/* btn-block */
.btn-block{
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 4.8rem;
  margin: 2.4rem auto;
}
.btn-block.center{
  display: flex;
  justify-content: center;
}
.btn-block.right{
  display: flex;
  justify-content: flex-end;
}

.btn-block.center {
  justify-content: center;
}
@media only screen and (max-width: 800px) {
  .btn-block.center {
    display: block;
  }
}
.btn-block.right {
  justify-content: flex-end;
}
@media only screen and (max-width: 800px) {
  .btn-block.right {
    display: block;
  }
}
.btn-block.to-clear {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .btn-block.to-clear p,
  .btn-block.to-clear button {
    margin: 0.5em auto;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .btn-block.to-clear button {
    order: 1;
  }
  .btn-block.to-clear button.back, .btn-block.to-clear button.edit, .btn-block.to-clear button.clear {
    order: 2;
  }
  .btn-block.to-clear p {
    order: 2;
  }
}
/* --------------------------------------------------

header

-------------------------------------------------- */
#header{
  background: #FAF8F4;
  padding-bottom: 5vw;
  position: relative;
  overflow: hidden;
}

#header:before{
  content: "";
  display: block;
  position: absolute;
  width: 55vw;
  height: 35vw;
  background: url(../img/common/pht_head.jpg)no-repeat center top / contain;
  left: 50vw;
  top: 0;
}

#header .head-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

#header .logo {
  max-width: 430px;
  padding: 6.4rem 0;
}
#header h1 img {
  max-width: 430px;
  width: 100%;
  height: auto;
}
#header .nav {
  position: relative;
  z-index: 10;
}
#header .nav ul{
  display: flex;
}

#header .nav ul li{
  margin-right: 2.4rem;
}

#header .nav ul li a{
  font-size: 1.8rem;
  padding-left: 2rem;
  position: relative;
}

#header .nav ul li a:before{
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/ico_nav_arrow.svg)no-repeat center center / contain;
  width: 14px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}


#header .btn-menu {
  display: none;
}

#header .btn-menu .btn-s {
  display: block;
  text-align: center;
}
#header .btn-menu .btn-s div {
  position: relative;
  width: 28px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
}
#header .btn-menu .btn-s div span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #197D3B;
  border-radius: 3px;
}
#header .btn-menu .btn-s div span:first-of-type {
  top: 0;
}
#header .btn-menu .btn-s div span:nth-of-type(2) {
  top: 9px;
}
#header .btn-menu .btn-s div span:nth-of-type(3) {
  bottom: 0;
}
#header .btn-menu .btn-s div span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #197D3B;
  transition: all 0.4s;
}
#header .btn-menu .btn-s.open span:first-of-type {
  transform: translateY(20px) scale(0);
}
#header .btn-menu .btn-s.open span:nth-of-type(2) {
  transform: rotate(-45deg);
}
#header .btn-menu .btn-s.open span:nth-of-type(2):after {
  transform: rotate(90deg);
}
#header .btn-menu .btn-s.open span:nth-of-type(3) {
  transform: translateY(-20px) scale(0);
}
#header .btn-menu .btn-s p {
  min-width: 3.5em;
  display: block;
  font-size: 70%;
  width: 100%;
  margin-top: 0.2em;
  padding: 0 0.3em;
  background: none;
  border: none;
  display: block;
}

@media screen and (max-width: 1080px) {
  #header{
    padding-bottom: 4rem;
  }
  #header .head-inner{
    width: 94%;
  }
  #header .logo {
    max-width: 260px;
    padding: 1.6rem 0;
  }
  #header .nav{
    display: none;
  }
  #header .btn-menu {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 1.4em;
    right: 3%;
    z-index: 25;
  }

  /* fixed-body */
  body.fixed-body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body.fixed-body #header {
    overflow-y: scroll;
    height: 100vh;
    position: fixed;
    top: 0;
    background: #FAF8F4;
    width: 100%;
    z-index: 1000;
  }
  body.fixed-body #header .head-inner {
    width: 94%;
    background: none;
  }
  body.fixed-body #header .nav {
    display: block;
    position: relative;
    background: none;
    width: 100%;
    height: 100%;
    grid-row: auto;
    grid-column: auto;
    order: 1;
  }
  body.fixed-body #header .nav ul{
    display: block;
    margin: 4rem auto;
    max-width: 320px;
  }
  body.fixed-body #header .nav ul li{
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  #header h1 {
    width: 95%;
    max-width: 400px;
  }
  #header h2 {
    width: 50%;
    max-width: 300px;
  }
  .head-hitohana{
    right: 10px;
    bottom: 30px;
    max-width: 70px;
  }
}
@media screen and (max-width: 400px) {
  body.fixed-body #header .nav ul{
    max-width: none;
    width: 100%;
  }
  body.fixed-body #header .nav ul li {
    margin-right: 0;
  }
}


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

footer

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

#footer {
  position: relative;
  font-size: 1.6rem;
  background: #FAF8F4;
  padding: 4.8rem 0 5.6rem 0;
  margin-top: 16.0rem;
}

#footer:before{
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/bg_wave_b.png)no-repeat center center / contain;
  width: 100%;
  height: 6vw;
  left: 0;
  top: -5vw;
}

#footer .footer-list{
  display: flex;
  justify-content: space-between;
  margin: 0 auto 4rem auto;
}
#footer .footer-list > li{
  width: 48%;
  padding: 1.6rem;
}
#footer .footer-list .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #098126;
}
#footer .copy{
  width: 92%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 1.6rem 0;
  text-align: center;
}

/* for TABLET */
@media screen and (max-width: 800px) {
  
  #footer {
    margin-top: 8.0rem;
  }
  #footer .footer-list{
    display: block;
  }
  #footer .footer-list > li{
    width: 100%;
  }
  #footer .footer-list .ttl {
    font-size: 1.8rem;
  }
  #footer p {
    font-size: 1.4rem;
  }
  #footer .copy{
    font-size: 1.2rem;
  }
}

#pageTop{
  position: fixed;
  z-index: 50;
  right: 5%;
  bottom: 5%;
}
#pageTop a{
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #098126;
  width: 94px;
  height: 94px;
  position: relative;
  padding-top: 18px;
}
#pageTop a::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 34px;
  background: url(../img/common/ico_pagetop.svg)no-repeat center center / contain;
  transform: translateY(25%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* for TABLET */
@media screen and (max-width: 800px) {
  #pageTop{
    bottom: 3%;
  }
  #pageTop a{
    font-size: 1rem;
    width: 65px;
    height: 65px;
    padding-top: 15px;
  }
  #pageTop a::before{
    vertical-align: middle;
    width: 14px;
    height: 16px;
    top: 10px;
  }
}


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

ページタイトル

-------------------------------------------------- */
.page-ttl{
  font-size: 3.2rem;
  text-align: center;
  position: relative;
  margin-bottom: 5.6rem;
}
.page-ttl:before{
  content: "";
  display: block;
  text-align: center;
  margin: 0 auto 1.6rem;
}

.page-ttl:after{
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/bg_wave.png)no-repeat center center / contain;
  width: 100%;
  height: 8vw;
  top: -6.5vw;
}

.page-ttl.casestudy{
  padding: 7.2rem 0 1.6rem 0;
}
.page-ttl.casestudy:before{
  width: 93px;
  height: 66px;
  background: url(../img/common/ico_ttl_casestudy.png)no-repeat center center / contain;
}

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

サムネイルリスト

-------------------------------------------------- */
/* list-thumb */
.list-thumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.list-thumb a {
  display: block;
  width: 100%;
  position: relative;
}
.list-thumb > li{
  width: 31%;
  margin: 0 3.5% 2em 0;
  position: relative;
}
.list-thumb > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .list-thumb > li {
    width: 100% !important;
    margin-right: 0;
  }
}
.list-thumb li .ph-part,
.list-thumb li .txt-part {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}
.list-thumb li .ph-part {
  background: #e2e5ec;
  aspect-ratio: 4/3;
  object-fit: contain;
  margin-bottom: 1.6rem;
}
.list-thumb li .ph-part > img {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.7s;
  object-fit: contain;
}
@media all and (-ms-high-contrast: none) {
  .list-thumb li .ph-part > img {
    width: auto;
    height: auto;
    max-width: 130%;
    max-height: 130%;
  }
}
.list-thumb li:hover .ph-part > img {
  transform: translate(-50%, -50%) scale(1.1);
}
.list-thumb li .txt-part {
  padding: 0 0.2rem;
}
.list-thumb li .txt-part .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}

/* info */
.list-thumb li .info p {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.list-thumb li .info p span {
  color: #098126;
  background: #FFF;
  border: 1px solid #098126;
  padding: 2px 8px;
  margin-right: .8rem;
  display: inline-block;
}
.list-thumb li .info p.txt-border {
  text-decoration: underline;
}
.list-thumb li .info p a{
  color: #000;
  display: inline-block;
  text-decoration: underline;
  width: fit-content;
  vertical-align: middle;
  margin-right: .8rem;
}
.list-thumb li .info p a:hover{
  color: #098126;
}

/* list-thumb about */
.list-thumb.about > li {
  width: 23%;
  margin: 2em 2.6666666667% 2em 0;
}
.list-thumb.about > li:nth-child(4n) {
  margin-right: 0;
}
.list-thumb.about li .badge{
  background: #FFF;
  border: 1px solid #098126;
  display: inline-block;
  padding: .8rem 1.6rem;
  position: absolute;
  top: -1em;
  left: 0;
  z-index: 2;
}
.list-thumb.about li .ph-part {
  aspect-ratio: 1.1 / 1;
}
.list-thumb.about li .txt-part .ttl {
  font-size: 1.8rem;
  text-align: center;
}
.list-thumb.about li .txt-part .btn {
  background: #FFF;
  border: 1px solid #098126;
  border-radius: 50px;
  font-size: 1.2rem;
  text-align: center;
  display: block;
  padding: 1rem 4.0rem 1rem 3.2rem;
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}
.list-thumb.about li .txt-part .btn::after {
  content: "";
  background: url(../img/common/ico_arrow.svg) no-repeat center center / contain;
  width: 6px;
  min-width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  transition: 0.8s;
}
.list-thumb.about li:hover .txt-part .btn::after {
  right: 1.6rem;
}

@media screen and (max-width: 800px) {
  .list-thumb.about > li {
    width: 47% !important;
    margin: 0 6% 2em 0 !important;
  }
  .list-thumb.about > li:nth-child(2n) {
    margin-right: 0 !important;
  }
  .list-thumb.about li .txt-part .ttl {
    font-size: 1.4rem;
  }
}


.category{
  font-size: 1rem;
  background: #fff;
  border: 1px solid #098126;
  display: inline-block;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin: 0 0.8rem 0.8rem 0;
}


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

ページング、検索結果

-------------------------------------------------- */
.count-disp {
  display: block;
  margin-bottom: 1.6rem;
}
.count-disp.count-col {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .count-disp.count-col {
    display: block;
  }
}

/* ページング */
.paging{
  margin: 4.0rem auto;
}
.paging .count {
  margin-bottom: 1.6rem;
}
.paging .count span {
  /* margin: 0 0.8rem; */
}
.paging .pagingIn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.paging .pagingIn.center {
  justify-content: center;
}
.paging .pagingIn > span {
  margin-bottom: 0.8rem;
}
.paging span a {
  background: #FAF8F4;
  border-radius: 100px;
  display: inline-block;
  padding: 0.8rem 1.4rem;
  margin: 0 0.8rem;
}
.paging span a:hover {
  color: #fff;
  background: #098126;
  opacity: 1;
}
.paging span a:hover:before {
  background: url(../img/common/ico_arrow_square_w.svg) no-repeat center center/contain;
}
.paging .current {
  color: #fff;
  background: #098126;
  display: inline-block;
  border-radius: 100px;
  padding: 0.8rem 1.4rem;
  margin: 0 0.8rem;
}
.paging .prev a,
.paging .next a {
  padding: 0.8rem 2.4rem;
  border-radius: 0;
  position: relative;
}
.paging .prev a:before,
.paging .next a:before {
  content: "";
  background: url(../img/common/ico_arrow_square.svg) no-repeat center center/contain;
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.paging .prev a {
  padding-left: 4rem;
}
.paging .prev a:before {
  left: 1.6rem;
  transform: translateY(-50%) rotateZ(180deg);
}
.paging .next a {
  padding-right: 4rem;
}
.paging .next a:before {
  right: 1.6rem;
}

@media only screen and (max-width: 800px) {

  .paging{
    display: block;
  }
  
  .paging .pagingIn {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .paging span a {
    display: none;
  }
  .paging .current {
    display: none;
  }
  .paging .prev a,
  .paging .next a {
    display: block;
  }
}

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

リスト

-------------------------------------------------- */
.list-flow{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.list-flow::after {
  content: "";
  background: #098126;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.list-flow > li{
  background: #FFF;
  border: 2px solid #098126;
  min-width: 250px;
  padding: 6rem 1rem 4rem;
  counter-increment: cnt;
  position: relative;
  z-index: 1;
}
.list-flow > li::before {
  content: counter(cnt);
  color: #FFF;
  background: #098126;
  width: 58px;
  height: 58px;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.list-flow > li .ttl{
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.4rem;
}
.list-flow > li p{
  font-size: 1.8rem;
  text-align: center;
}
.list-flow > li figure{
  text-align: center;
  margin: 0 auto 2.4rem;
}
.list-flow > li figure > img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 1080px) {
  .list-flow {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .list-flow::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .list-flow > li{
    width: 50%;
  }
  .list-flow > li::before {
    top: -.5em;
    left: -.5em;
    transform: none;
  }
}

@media only screen and (max-width: 800px) {
  .list-flow > li{
    width: 70%;
  }
  .list-flow > li::before {
    font-size: 2.4rem;
  }
  .list-flow > li .ttl{
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .list-flow > li p{
    font-size: 1.6rem;
  }
  .list-flow > li figure{
    max-width: 150px;
  }
}

@media only screen and (max-width: 400px) {
  .list-flow > li{
    width: 100%;
  }
}

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

検索条件（大枠）

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

.search-conditions {
  background: #FAF8F4;
  border-radius: 25px;
  padding: 4rem;
  margin-bottom: 8rem;
}
.search-conditions .ttl-search {
  color: #098126;
  font-size: 2.2rem;
  text-align: center;
  margin: 1.6rem auto 8.0rem;
}
.search-conditions .ttl-search::after {
  content: "";
  display: block;
  background: #098126;
  width: 40px;
  height: 2px;
  margin: 1.6rem auto 0;
}
.search-conditions .search-conditions-inner {
  margin-top: 2em;
  display: grid;
  gap: 2.4rem 2.4rem;
}
.search-conditions .search-conditions-inner > dl {
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: flex-start;
  gap: 3.2rem;
}
.search-conditions .search-conditions-inner > dl > dt {
  color: #098126;
  background: #FFF;
  text-align: center;
  padding: 1.6rem;
}
.search-conditions .search-conditions-inner > dl > dd {
  margin-top: 1rem;
}

@media only screen and (max-width: 800px) {
  .search-conditions {
    padding: 4.0rem 2.4rem 2.4rem;
  }
  .search-conditions .ttl-search {
    margin: 1.6rem auto;
  }
  .search-conditions .search-conditions-inner > dl {
    display: block;
  }
  .search-conditions .search-conditions-inner > dl > dt {
    margin-bottom: 1.6rem;
  }
}

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

検索条件（パーツ）

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

/* form-list */
.search-conditions fieldset legend {
  display: none;
}
.search-conditions fieldset.form-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search-conditions fieldset.form-list.btn-check span,
.search-conditions fieldset.form-list.btn-check div {
  position: relative;
  margin: 0 1.2rem 1.2rem 0;
}
.search-conditions fieldset.form-list.btn-check span > input,
.search-conditions fieldset.form-list.btn-check div > input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.search-conditions fieldset.form-list.btn-check span > input:checked + label,
.search-conditions fieldset.form-list.btn-check div > input:checked + label {
  color: #FFF;
  background: #098126;
}
.search-conditions fieldset.form-list.btn-check span > label,
.search-conditions fieldset.form-list.btn-check div > label {
  color: #098126;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.3em 1em;
  margin-right: 0;
  background: #FFF;
  border: 1px solid #098126;
  border-radius: 100px;
  display: block;
  min-width: 85px;
  cursor: pointer;
}
@media only screen and (max-width: 400px) {
  .search-conditions fieldset.form-list.btn-check span,
  .search-conditions fieldset.form-list.btn-check div{
    width: calc(100% / 2 - .6rem);
  }
  .search-conditions fieldset.form-list.btn-check span:nth-child(odd),
  .search-conditions fieldset.form-list.btn-check div:nth-child(odd){
    margin-right: 0;
  }
  .search-conditions fieldset.form-list.btn-check span > label,
  .search-conditions fieldset.form-list.btn-check div > label {
    min-width: auto;
    width: 100%;
    font-size: 1.4rem;
  }
}

/* select-search */
.select-search select {
  font-size: 1.6rem;
  width: 100%;
  color: #098126;
  border: 1px solid #098126;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 1.6rem;
  width: 30%;
}
.select-search select option[selected],
.select-search select option[active] {
  color: #FFF;
  background: #000;
}
@media only screen and (max-width: 800px) {
  .select-search select {
    width: 100%;
  }
}

/* input-search */
.search-conditions .input-search fieldset {
  margin: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #098126;
  width: 60%;
}
.search-conditions .input-search fieldset legend {
  display: none;
}
.search-conditions .input-search fieldset input {
  font-size: 1.6rem;
  padding: 1.6rem;
  border: none;
  border-radius: 0;
  color: #098126;
  background: #FFF;
  flex: 1;
}
.search-conditions .input-search fieldset input::placeholder {
  color: #707070;
}
@media only screen and (max-width: 800px) {
  .search-conditions .input-search fieldset {
    width: 100%;
  }
}

/* ボタン */
.search-conditions .btn-base{
  color: #098126;
  background: #fff;
  font-size: 1.6rem;
  text-align: center;
  border: none;
  box-sizing: border-box;
  display: block;
  padding: 2.4rem 4.0rem;
  position: relative;
  min-width: 290px;
  cursor: pointer;
}

.search-conditions .btn-base.search{
  color: #FFF;
  background: #098126;
  position: relative;
}

.search-conditions .btn-base.search:before {
  content: "";
  width: 1.2em;
  min-width: 1.2em;
  height: 1.2em;
  display: inline-block;
  background: url(../img/common/ico_search_w.svg) no-repeat center center/contain;
  margin-right: 1.6rem;
  vertical-align: middle;
}

/* --------------------------------------------------
絞り込み
-------------------------------------------------- */
.conditions {
  display: flex;
  margin-bottom: 4rem;
}
.conditions .paging-result {
  float: right;
  font-weight: bold;
}
.conditions dl {
  display: flex;
}
.conditions dl dt {
  white-space: nowrap;
  padding: 0.4rem 0;
}
.conditions dl dt:after {
  content: ":";
  display: inline-block;
  margin: 0 0.8rem;
}
.conditions dl dd .list-conditions {
  display: flex;
  flex-wrap: wrap;
}
.conditions dl dd .list-conditions li {
  margin: 0 0.8rem 0.8rem 0;
}
.conditions dl dd .list-conditions li a,
.conditions dl dd .list-conditions li span {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #0A0A0A;
  background: #FFF;
  border: 1px solid#9A9A9A;
  border-radius: 100px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.conditions dl dd .list-conditions li span {
  padding: 0.8rem 1.6rem;
}
.conditions dl dd .list-conditions li a {
  padding: 0.8rem 3.2rem 0.8rem 1.6rem;
}
.conditions dl dd .list-conditions li a:before {
  content: "";
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/ico_clear.svg);
  background: #000;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}
.conditions .btn-delete a {
  color: #fff;
  background: #333; 
  border-radius: 100px;
  font-size: 1.2rem;
  white-space: nowrap;
  padding: 0.8rem 3.2rem 0.8rem 1.6rem;
  margin: 0;
  display: block;
  position: relative;
}
.conditions .btn-delete a:before {
  content: "";
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/ico_clear.svg);
  background: #fff;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  z-index: 2;
}

@media only screen and (max-width: 800px) {
  .conditions {
    display: block;
  }
  .conditions dl {
    width: 100%;
    display: block;
  }
  .conditions dl dt {
    margin: 0 0 1.6rem 0;
  }
  .conditions .btn-delete {
    text-align: right;
  }
  .conditions .btn-delete a {
    margin: 0.8rem 0;
    display: inline-block;
  }
}
