.pickupservice {
max-width: 1000px;
margin: auto;
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
padding: 30px 0px 60px 0px;
}
.pickupservice2 {
max-width: 1000px;
	margin: auto;
}

/*----------------------
  グローバルメニュー虫眼鏡アイコン
----------------------*/
.search.icon {
  color: #000;
  position: absolute;
  margin-top: 0px;
  margin-left: 11px;
  width: 12px;
  height: 12px;
  border: solid 1px currentColor;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.search.icon:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 5px;
  height: 6px;
  width: 1px;
  background-color: currentColor;
}


/*----------------------------------------
	グリッド
----------------------------------------*/
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -40px;
}
.grid__item {
  margin-top: 40px;
}

/*PC4カラム用*/
.grid--pc4col .grid__item {
  width: calc((100% - 20px)/2);
}
@media screen and (min-width: 568px) {
  .grid--pc4col .grid__item {
    width: calc((100% - 40px)/3);
  }
  .grid--pc4col::after {
    content: "";
    display: block;
    width: calc((100% - 40px)/3);
  }
}
@media screen and (min-width: 768px),print {
  .grid--pc4col .grid__item,
  .grid--pc4col::after {
    width: calc((100% - 60px)/4);
  }
  .grid--pc4col::before {
    content: "";
    display: block;
    width: calc((100% - 60px)/4);
    order: 1;
  }
}
/*PC3カラム用*/
.grid--pc3col {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 568px) {
  .grid--pc3col {
    max-width: none;
  }
  .grid--pc3col .grid__item {
    width: calc((100% - 20px)/2);
  }
}
@media screen and (min-width: 768px),print {
  .grid--pc3col .grid__item {
    width: calc((100% - 40px)/3);
  }
  .grid--pc3col::after {
    content: "";
    display: block;
    width: calc((100% - 40px)/3);
  }
}
/*PC2カラム用*/
.grid--pc2col {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px),print {
  .grid--pc2col {
    max-width: none;
  }
  .grid--pc2col .grid__item {
    width: calc((100% - 20px)/2);
  }
}


/*----------------------------------------
	card
----------------------------------------*/
.card {
  /*ソースでサムネイルを後ろにしたので表示を逆順に変更*/
  /* display: block; */
  display: flex;
  flex-direction: column-reverse; 

  border: 1px solid #ccc;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.07);
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.3s;
}
/*hover仕様（a要素で構築された場合のみ）*/
a.card:hover,
a.card:focus {
  border: 1px solid #F7BE00;
  color: inherit;
}
a.card:hover .card__image img,
a.card:focus .card__image img {
  transform: scale(1.1);
}
a.card:hover .card__btn,
a.card:focus .card__btn {
  opacity: 0.8;
}
a.card:hover .card__btn::after,
a.card:focus .card__btn::after {
  right: 15px;
}
/*サムネイル画像（アスペクト比維持して表示）*/
.card__image {
  position: relative;
  overflow: hidden;
}
.card__image::before {
  content: "";
  display: block;
  padding-top: calc((164/256)*100%);
}
.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none; 
  object-fit: cover;
  transition: 0.5s;
}
/*カードボディ部*/
.card__body {
  padding: 20px 20px 20px 20px;
}
.card__title {
  font-size: 18px;
}
.card__text {
  margin-top: 10px;
}
.card__btn {
  position: relative;
  margin-top: 30px;
  padding: 10px;
  background: #F7BE00;
  color: #fff;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}
.card__btn::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: 0.3s;
}



/*----------------------------------------
	card-PoC
----------------------------------------*/
.card_poc {
  /*ソースでサムネイルを後ろにしたので表示を逆順に変更*/
  /* display: block; */
  display: flex;
  flex-direction: column-reverse; 

  border: 2px solid #ccc;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.07);
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.3s;
}
/*hover仕様（a要素で構築された場合のみ）*/
a.card_poc:hover,
a.card_poc:focus {
  border: 2px solid #F7BE00;
  color: inherit;
}
a.card_poc:hover .card_poc__img img,
a.card_poc:focus .card_poc__img img {
  transform: scale(1);
}
a.card_poc:hover .card_poc__btn,
a.card_poc:focus .card_poc__btn {
  opacity: 0.8;
}
a.card_poc:hover .card_poc__btn::after,
a.card_poc:focus .card_poc__btn::after {
  right: 15px;
}

/*カードボディ部*/
.card_poc__body {
  padding: 20px 20px 20px 20px;
background: #fff;
}
.card_poc__title {
  font-size: 16px;
   margin-bottom: 10px;
}
.card_poc__text2 {
  margin-top: 10px;
  position: relative;
    margin: 15px 0 10px 0;
    padding: 10px;
    background: #F2F2F2;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}
.card_poc__btn {
  position: relative;
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
  border:  solid #ddd;
}
.card_poc__btn::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: 0.3s;
}


.card_poc__btn-s {
  position: relative;
  margin-top: 5px;
  padding: 5px;
  background: #fff;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #ddd;
}
.card_poc__btn-s::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: 0.3s;
}
.card_poc__btn-s a {
display: block;
}
.card_poc__btn-s:hover  {
border: 1px solid #F7BE00;
}


/*----------------------------------------
	card-media
----------------------------------------*/
.card_media {
  /*ソースでサムネイルを後ろにしたので表示を逆順に変更*/
  /* display: block; */
  display: flex;
  flex-direction: column-reverse; 

  border: 1px solid #ccc;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.07);
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.3s;
}
/*hover仕様（a要素で構築された場合のみ）*/
a.card_media:hover,
a.card_media:focus {
  border: 1px solid #F7BE00;
  color: inherit;
}
a.card_media:hover .card_media__image img,
a.card_media:focus .card_media__image img {
  transform: scale(1.05);
}
a.card_media:hover .card__btn,
a.card_media:focus .card__btn {
  opacity: 0.9;
}
a.card_media:hover .card__btn::after,
a.card_media:focus .card__btn::after {
  right: 15px;
}
/*サムネイル画像（アスペクト比維持して表示）*/
.card_media__image {
  position: relative;
  overflow: hidden;
}
.card_media__image::before {
  content: "";
  display: block;
  padding-top: 180px;
}
.card_media__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
}
/*カードボディ部*/
.card_media__body {
  padding: 20px 20px 20px 20px;
background: #fff;
}
.card_media__title {
  font-size: 16px;
   margin-bottom: 10px;
}
.card_media__text2 {
  margin-top: 10px;
  position: relative;
    margin: 15px 0 10px 0;
    padding: 10px;
    background: #F2F2F2;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}


/*----------------------------------------
	card-top
----------------------------------------*/
.card_top {
  /*ソースでサムネイルを後ろにしたので表示を逆順に変更*/
  /* display: block; */
  display: flex;
  flex-direction: column-reverse; 

  border: 2px solid #ccc;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.07);
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.3s;
}
/*hover仕様（a要素で構築された場合のみ）*/
a.card_top:hover,
a.card_top:focus {
  border: 2px solid #F7BE00;
  color: inherit;
}
a.card_top:hover .card_top__image img,
a.card_top:focus .card_top__image img {
  transform: scale(1.05);
}

/*サムネイル画像（アスペクト比維持して表示）*/
.card_top__image {
  position: relative;
  overflow: hidden;
}
.card_top__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.card_top__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
}
/*カードボディ部*/
.card_media__body {
  padding: 20px 20px 20px 20px;
background: #fff;
}
.card_media__title {
  font-size: 16px;
   margin-bottom: 10px;
}
.card_media__text2 {
  margin-top: 10px;
  position: relative;
    margin: 15px 0 10px 0;
    padding: 10px;
    background: #F2F2F2;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}





/*----------------------------------------
	SERVICE_sub
----------------------------------------*/
.service_sub{
font-size:16px;
text-align: center;
margin-bottom: 30px;
letter-spacing: 0.3em;
}
.service_c{
font-size:13px;
text-align: center;
margin-bottom: 30px;
letter-spacing: 0.1em;
}
.service_c a:hover{
text-decoration: underline;
}

.service-sub__text {
    margin-top: 10px;
}
.tl-logo{
text-align: center;
}

h3.bottom_border {
    /* position: relative; */
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: normal;
    line-height: 26px;
	text-align: center;
    letter-spacing: 0.2em;
}
h3.bottom_border:after {
    /* position: absolute; */
    /* bottom: 0; */
    content: "";
    display: block;
    width: 56px;
    margin: 0 auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #878787;
}



/*----------------------------------------
	media
----------------------------------------*/
.media {
  margin: 20px auto;
  max-width: 640px;
}
.media__title {
  font-size: 20px;
font-weight: 500;
}
.media__title + * {
  margin-top: 20px;
}
.media__txt {
  line-height: 1.8;
}
.media__photo {
  padding: 10px 20px 10px 20px;
}

@media screen and (min-width: 768px),print {
  .media {
    display: flex;
    align-items: center;
    max-width: none;
  }
  .media__title {
    text-align: left;
  }
  .media__body {
    flex-grow: 1;
    padding-right: 20px;
  }
  .media__photo {
    flex-shrink: 0;
    margin-top: 0;
    width: 50%;
  }
  .media--reverse {
    flex-direction: row-reverse;
  }
  .media--reverse .media__body {
    padding-right: 0;
    padding-left: 20px;
  }
}

/*----------------------------------------
	txt link
----------------------------------------*/
.media__txt_link:hover {
	color: #F7BE00;
}

/*----------------------------------------
	media-txt
----------------------------------------*/
.media-title{
  font-size:20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.media-subtitle {
  font-size:20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
    padding: 50px 0 10px 0;
}
 .media-subtitle:before, .media-subtitle:after {
  border-top: 1px solid;
  content: "";
  width: 100%; /* 線の長さ */
}
.media-subtitle:before {
  margin-right: 1em; /* 文字の右隣 */
}
.media-subtitle:after {
  margin-left: 1em; /* 文字の左隣 */
}

/*----------------------------------------
   導入事例バナー
----------------------------------------*/
.banner_btn{
 width:900px;
 margin:0 auto; 
 overflow:hidden; 
}
.banner_btn img{
 transition:1s all;
}
.banner_btn img:hover{
  transform:scale(1.05);
  transition:0.3s all;
}